.mobile-store-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  pointer-events: none;
  background: rgba(255, 255, 255, .92);
  border-top: 1px solid rgba(17, 24, 39, .10);
  box-shadow: 0 -12px 28px rgba(15, 23, 42, .12);
}

@supports (backdrop-filter: blur(1px)) {
  .mobile-store-cta {
    background: rgba(255, 255, 255, .78);
    backdrop-filter: saturate(1.12) blur(14px);
  }
}

.mobile-store-cta__button {
  width: min(100%, 520px);
  min-height: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: #1d4ed8;
  font: 800 16px/1.1 Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-decoration: none;
  pointer-events: auto;
  box-shadow: 0 10px 24px rgba(29, 78, 216, .24);
}

.mobile-store-cta__button:hover {
  color: #fff;
  text-decoration: none;
  background: #1e40af;
}

.mobile-store-cta__button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, .28), 0 10px 24px rgba(29, 78, 216, .24);
}

body.has-mobile-store-cta {
  padding-bottom: calc(78px + env(safe-area-inset-bottom));
}

.guide-footer .footer-social {
  gap: 8px;
  margin-bottom: 8px;
}

.guide-footer .icon-btn {
  width: 34px;
  height: 34px;
}

.guide-footer .inline-icon {
  width: 15px;
  height: 15px;
  vertical-align: 0;
}

@media (prefers-color-scheme: dark) {
  .mobile-store-cta {
    background: rgba(7, 12, 24, .90);
    border-top-color: rgba(255, 255, 255, .14);
    box-shadow: 0 -14px 30px rgba(0, 0, 0, .34);
  }

  @supports (backdrop-filter: blur(1px)) {
    .mobile-store-cta {
      background: rgba(7, 12, 24, .76);
    }
  }
}

@media print {
  .mobile-store-cta {
    display: none;
  }

  body.has-mobile-store-cta {
    padding-bottom: 0;
  }
}
