:root {
  --navy: #061c50;
  --navy-dark: #041640;
  --ink: #111827;
  --muted: #5b667a;
  --line: #dfe5ef;
  --soft: #f5f7fb;
  --white: #ffffff;
  --accent: #1463ff;
  --accent-dark: #0a47c8;
  --warning: #fff2cc;
  --shadow: 0 18px 45px rgba(12, 28, 65, .12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.ad-top {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.ad-top__inner {
  width: min(860px, calc(100% - 40px));
  margin-inline: auto;
  padding: 18px 0 16px;
  text-align: center;
  font-size: 12px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #030712;
  text-transform: uppercase;
}

.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 5px 24px rgba(4, 22, 64, .18);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.04em;
  text-decoration: none;
}
.brand-dot { color: #9fb8ff; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.main-nav a {
  color: rgba(255,255,255,.84);
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: #fff; }
.header-ad-label {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  background: rgba(255,255,255,.08);
}

main { overflow: hidden; }
.hero {
  background:
    radial-gradient(circle at 75% 20%, rgba(20, 99, 255, .22), transparent 28%),
    linear-gradient(180deg, #f6f8fc 0%, #fff 100%);
  padding: 72px 0 46px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: -.04em; }
h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 72px);
  max-width: 850px;
}
.hero-lead {
  margin: 0 0 28px;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.48;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 16px 30px rgba(20, 99, 255, .28);
}
.btn--primary:hover { background: var(--accent-dark); }
.btn--secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}
.btn--light {
  color: var(--navy);
  background: #fff;
}
.btn.is-loading { opacity: .78; pointer-events: none; }
.micro-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.hero-card__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  color: #0f5132;
  background: #dff7ea;
  font-size: 12px;
  font-weight: 900;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}
.check-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.section { padding: 64px 0; }
.section--soft { background: var(--soft); }
.section-header {
  max-width: 770px;
  margin-bottom: 28px;
}
.section-label {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.section h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
}
.section-intro {
  color: var(--muted);
  margin: 0;
  font-size: 18px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 22px rgba(12, 28, 65, .06);
}
.info-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}
.info-card p { margin: 0; color: var(--muted); }
.number-badge {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 15px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}
.editorial-box {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.editorial-box h2 { color: #fff; }
.editorial-box p { color: rgba(255,255,255,.76); }
.editorial-box__panel {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 22px;
}
.editorial-box__panel ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255,255,255,.84);
}
.editorial-box__panel li + li { margin-top: 10px; }

.bottom-store-cta {
  padding: 70px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.18), transparent 25%),
    linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  text-align: center;
}
.bottom-store-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 54px);
}
.bottom-store-cta p {
  width: min(720px, 100%);
  margin: 0 auto 22px;
  color: rgba(255,255,255,.76);
  font-size: 18px;
}

.mobile-sticky-cta {
  display: none;
}

.disclosure-strip {
  background: #fff;
  border-top: 1px solid var(--line);
}
.disclosure-strip__inner {
  width: min(860px, calc(100% - 40px));
  margin-inline: auto;
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.22;
  font-weight: 800;
  color: #030712;
}
.site-footer {
  background: var(--navy);
  color: #fff;
}
.footer-inner {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
}
.footer-brand {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
}
.footer-links span { color: rgba(255,255,255,.38); }
.copyright { color: rgba(255,255,255,.42); }

.page-hero {
  background: linear-gradient(180deg, #f6f8fc 0%, #fff 100%);
  padding: 58px 0 30px;
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.breadcrumbs a { color: var(--navy); text-decoration: none; }
.page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
}
.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}
.legal-content,
.contact-card,
.side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(12, 28, 65, .06);
}
.legal-content { padding: 30px; }
.legal-content h2 {
  margin: 28px 0 12px;
  font-size: 28px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--accent-dark); font-weight: 800; }
.side-card { padding: 22px; position: sticky; top: 100px; }
.side-card h2 { font-size: 22px; margin: 0 0 12px; }
.side-card p { color: var(--muted); margin: 0 0 16px; }
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 22px;
}
.contact-card { padding: 24px; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.contact-list strong { display: block; color: var(--ink); }
.contact-list span, .contact-list a { color: var(--muted); }
.form-grid { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 800; font-size: 14px; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(20,99,255,.12);
}
.form-status {
  min-height: 20px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.notice-box {
  padding: 16px;
  border-radius: 18px;
  background: var(--warning);
  color: #4b3a00;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-grid,
  .editorial-box,
  .page-layout,
  .contact-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .main-nav { gap: 12px; font-size: 11px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .ad-top__inner,
  .disclosure-strip__inner { width: min(100% - 28px, 860px); font-size: 10px; }
  .header-inner { min-height: 64px; }
  .brand { font-size: 24px; }
  .main-nav a:not(.nav-priority) { display: none; }
  .header-ad-label { font-size: 10px; padding: 6px 8px; }
  .hero { padding: 44px 0 34px; }
  .section { padding: 46px 0; }
  .hero-card, .editorial-box, .legal-content, .contact-card { padding: 20px; border-radius: 20px; }
  .footer-inner { min-height: 170px; gap: 28px; }
  .footer-brand { font-size: 30px; }
  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: flex;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    background: rgba(4, 22, 64, .58);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 18px 44px rgba(4, 22, 64, .28);
    transition: opacity .2s ease, transform .2s ease;
  }
  .mobile-sticky-cta .btn {
    width: 100%;
    min-height: 48px;
  }
  .mobile-sticky-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
  }
  body { padding-bottom: 88px; }
}
/*  */
.disclosure-strip {
  background: #ffffff;
  border-top: 1px solid rgba(7, 26, 70, .08);
  border-bottom: 1px solid rgba(7, 26, 70, .08);
}

.disclosure-strip__inner {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  color: #050505;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.site-footer {
  background: #061b55;
  color: #ffffff;
}

.footer-compliance {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
  line-height: 1.55;
}

.footer-compliance p {
  margin: 0 0 12px;
}

.footer-compliance strong {
  color: #ffffff;
  font-weight: 900;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 44px 0 42px;
}

.footer-brand {
  color: #ffffff;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand-dot {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  color: rgba(255, 255, 255, .42);
}

@media (max-width: 720px) {
  .disclosure-strip__inner {
    padding: 14px 0;
    font-size: 10px;
    line-height: 1.35;
  }

  .footer-compliance {
    padding-top: 22px;
    font-size: 10px;
    line-height: 1.5;
  }

  .footer-inner {
    padding: 34px 0 36px;
    gap: 22px;
  }

  .footer-links {
    gap: 7px;
    font-size: 10px;
  }
}
/*  */
.article-main {
  background: #f4f5f7;
  color: #111827;
  padding: 24px 0 0;
}

.advertorial-article {
  width: min(1000px, calc(100% - 28px));
  margin: 0 auto;
  padding: 0 0 42px;
  background: #ffffff;
}

.article-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 10px;
  padding: 0 0 6px;
  color: #667085;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.article-kicker span {
  display: inline-flex;
  align-items: center;
}

.article-kicker span + span::before {
  content: "/";
  margin-right: 8px;
  color: #98a2b3;
}

.advertorial-article h1 {
  margin: 0 0 10px;
  color: #050505;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: #667085;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.article-meta span + span::before {
  content: "/";
  margin-right: 8px;
  color: #c0c7d1;
}

.share-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin: 12px 0 14px;
}

.share-btn {
  min-height: 30px;
  border: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.share-btn--facebook {
  background: #3157a4;
}

.share-btn--x {
  background: #13a8df;
}

.share-btn--copy {
  background: #e84b36;
}

.article-hero {
  margin: 0 0 14px;
  overflow: hidden;
  background: #e5e7eb;
}

.article-hero img,
.image-grid img,
.review-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.article-hero--small {
  margin-top: 10px;
}

.summary-box {
  margin: 0 0 22px;
  padding: 16px 18px;
  background: #fff3cf;
  border: 1px solid #f4d07a;
  color: #374151;
  font-size: 15px;
  line-height: 1.65;
}

.summary-box p {
  margin: 0;
}

.summary-box p + p {
  margin-top: 10px;
}

.summary-box strong {
  color: #111827;
}

.advertorial-article > p,
.advertorial-article > ol,
.advertorial-article > ul {
  margin-left: 0;
  margin-right: 0;
}

.advertorial-article p {
  margin: 0 0 16px;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.72;
}

.advertorial-article h2 {
  margin: 28px 0 12px;
  color: #050505;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.advertorial-article h3 {
  margin: 0 0 10px;
  color: #050505;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.image-grid {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px;
}

.image-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-grid figure {
  margin: 0;
  overflow: hidden;
  background: #e5e7eb;
  border: 1px solid #e5e7eb;
}

.image-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.65;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #00a832;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.review-figure {
  margin: 18px 0 22px;
  background: #f8fafc;
}

.review-figure img {
  background: #e5e7eb;
}

.review-figure figcaption {
  position: relative;
  margin: 0;
  padding: 14px 16px 14px 42px;
  border-left: 4px solid #d0d5dd;
  color: #667085;
  background: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
}

.review-figure figcaption::before {
  content: "“";
  position: absolute;
  left: 16px;
  top: 6px;
  color: #d0d5dd;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.inline-shop-link {
  color: #0073d8;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pros-cons {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
}

.pros-box,
.cons-box {
  padding: 14px 16px;
  border: 1px solid #b7c0cb;
  background: #ffffff;
}

.pros-box {
  border-top: 28px solid #08a11f;
}

.cons-box {
  border-top: 28px solid #d0d5dd;
}

.pros-box h3,
.cons-box h3 {
  margin-top: -38px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 15px;
}

.cons-box h3 {
  color: #111827;
}

.pros-box ul,
.cons-box ul {
  margin: 0;
  padding-left: 19px;
}

.pros-box li,
.cons-box li {
  margin: 6px 0;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.55;
}

.steps-list {
  margin: 14px 0 22px;
  padding-left: 22px;
}

.steps-list li {
  margin: 8px 0;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.65;
}

.final-cta {
  margin: 24px 0 0;
  padding: 18px;
  border: 1px solid #d0d5dd;
  background: #f8fafc;
  text-align: center;
}

.final-cta__note {
  margin: 0 0 12px !important;
  color: #667085 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.final-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  width: 100%;
  padding: 12px 18px;
  background: #008f16;
  color: #ffffff;
  border-radius: 0;
  font-size: clamp(17px, 4vw, 22px);
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 143, 22, .24);
}

.final-cta__button:hover {
  background: #007713;
}

.mobile-shop-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px;
  background: rgba(8, 21, 58, .58);
  box-shadow: 0 18px 45px rgba(2, 8, 23, .35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(130%);
  opacity: 0;
  transition: transform .24s ease, opacity .24s ease;
}

.mobile-shop-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.mobile-shop-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 14px;
  background: #008f16;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

@media (min-width: 921px) {
  .advertorial-article {
    padding: 22px 26px 46px;
  }
}

@media (max-width: 920px) {
  .article-main {
    padding-top: 14px;
  }

  .advertorial-article {
    width: min(760px, calc(100% - 18px));
    padding: 16px 14px 36px;
  }
}

@media (max-width: 720px) {
  .advertorial-article h1 {
    font-size: 27px;
  }

  .share-row {
    gap: 4px;
  }

  .summary-box {
    padding: 14px;
    font-size: 14px;
  }

  .image-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advertorial-article p,
  .check-list li,
  .steps-list li {
    font-size: 15px;
  }

  .mobile-shop-bar {
    display: block;
  }

  body.has-sticky-shop {
    padding-bottom: 88px;
  }
}

@media (max-width: 420px) {
  .advertorial-article {
    width: calc(100% - 12px);
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-grid {
    gap: 6px;
  }

  .final-cta {
    padding: 12px;
  }
}
/*  */
.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  padding: 8px;
  border-radius: 18px;
  background: rgba(8, 21, 58, .58);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 18px 45px rgba(2, 8, 23, .35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
  transition: transform .24s ease, opacity .24s ease;
}

.mobile-sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-sticky-cta .btn,
.mobile-sticky-cta button {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  background: #008f16;
  color: #ffffff;
  border: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 720px) {
  .mobile-sticky-cta {
    display: block;
  }

  body.has-sticky-shop {
    padding-bottom: 88px;
  }
}

@media (min-width: 721px) {
  .mobile-sticky-cta {
    display: none !important;
  }

  body.has-sticky-shop {
    padding-bottom: 0 !important;
  }
}