:root {
  --bg: #fcfaf7;
  --bg-soft: #f5efe7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-dark: #18181b;
  --text: #161418;
  --muted: #5f5964;
  --line: rgba(24, 24, 27, 0.08);
  --line-strong: rgba(24, 24, 27, 0.14);
  --accent: #ec4899;
  --accent-deep: #be185d;
  --accent-soft: rgba(236, 72, 153, 0.12);
  --gold: #e7b66a;
  --shadow-lg: 0 30px 90px rgba(41, 24, 24, 0.12);
  --shadow-md: 0 18px 50px rgba(41, 24, 24, 0.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(236, 72, 153, 0.12), transparent 28%),
    radial-gradient(circle at 100% 10%, rgba(231, 182, 106, 0.22), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(96, 165, 250, 0.08), transparent 32%),
    linear-gradient(180deg, #fffdfa 0%, #f7f1ea 56%, #fdf9f4 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 82%);
}

a,
button,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.28);
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 64px;
}

.locale-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.locale-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  position: sticky;
  top: 16px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px) saturate(150%);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 35% 35%, #fff7f0, transparent 45%),
    linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow:
    9px 9px 0 rgba(24, 24, 27, 0.92),
    0 10px 25px rgba(236, 72, 153, 0.22);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong,
.eyebrow,
.hero h1,
.section-heading h2,
.story-panel h2,
.contact-copy h2,
.product-summary h1,
.detail-card h2,
.policy-page h1,
.order-summary h2 {
  font-family: "Varela Round", sans-serif;
}

.brand-text strong {
  font-size: 1.03rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.locale-switcher {
  display: inline-grid;
  gap: 4px;
  min-width: 110px;
  font-size: 0.78rem;
  color: var(--muted);
}

.locale-switcher select {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(24, 24, 27, 0.1);
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  color: var(--text);
}

.cart-button,
.cart-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(24, 24, 27, 0.08);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.cart-button:hover,
.cart-close:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #fff;
  font-size: 0.82rem;
}

.site-nav a,
.footer-nav a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.site-nav a:hover,
.footer-nav a:hover {
  background: rgba(24, 24, 27, 0.06);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 6px auto;
}

main {
  display: grid;
  gap: 28px;
  margin-top: 30px;
}

section {
  border-radius: var(--radius-xl);
}

.hero,
.trust-bar,
.insight-strip,
.editorial-showcase,
.products,
.routine,
.bundle-compare,
.proof,
.story,
.comparison,
.faq,
.testimonials,
.email-capture,
.contact,
.product-hero,
.product-highlights,
.detail-sections,
.specs,
.usage-grid,
.cart-page,
.checkout-layout,
.checkout-benefits,
.policy-page {
  position: relative;
  overflow: hidden;
  padding: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px) saturate(160%);
}

.hero::before,
.products::before,
.product-hero::before,
.email-capture::before {
  content: "";
  position: absolute;
  inset: auto -8% -42% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.14), transparent 66%);
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  min-height: 620px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.hero h1,
.section-heading h2,
.story-panel h2,
.contact-copy h2,
.product-summary h1,
.detail-card h2,
.policy-page h1 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  max-width: 11ch;
}

.section-heading h2,
.story-panel h2,
.contact-copy h2,
.product-summary h1,
.detail-card h2,
.policy-page h1,
.order-summary h2 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.hero-text,
.section-heading p,
.story-panel p,
.contact-copy p,
.faq-list p,
.product-body p,
.story-list p,
.proof-grid p,
.detail-card p,
.summary-text,
.policy-page p,
.checkout-form p,
.order-summary,
.safe-note,
.comparison-table,
.routine-grid p,
.testimonial-grid p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.01rem;
}

.hero-actions,
.product-meta,
.safe-note,
.price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button,
.inline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    opacity 0.22s ease;
}

.button:hover,
.inline-button:hover {
  transform: translateY(-2px);
}

.button.primary,
.inline-button {
  color: #fff;
  background: linear-gradient(135deg, var(--surface-dark), #2c2432);
  box-shadow: 0 16px 36px rgba(24, 24, 27, 0.18);
}

.button.primary:hover,
.inline-button:hover {
  box-shadow: 0 22px 44px rgba(24, 24, 27, 0.24);
}

.button.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(24, 24, 27, 0.08);
}

.hero-points,
.bullet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.hero-points li,
.bullet-list li,
.safe-note span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(24, 24, 27, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.hero-panel,
.product-gallery,
.product-summary,
.order-summary {
  display: grid;
  gap: 18px;
}

.hero-card,
.story-panel,
.story-list article,
.faq-list details,
.contact-card,
.product-card,
.proof-grid article,
.routine-grid article,
.testimonial-grid article,
.detail-card,
.checkout-form,
.order-summary,
.policy-page {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px) saturate(160%);
}

.hero-card {
  padding: 26px;
  border-radius: 30px;
}

.hero-card span,
.product-visual span,
.gallery-main span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.hero-card strong {
  display: block;
  margin-top: 12px;
  font-size: 2.7rem;
  line-height: 1;
  font-family: "Varela Round", sans-serif;
}

.hero-card-primary {
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #17141b, #342538 74%, #5f4256);
}

.hero-card-primary span,
.hero-card-primary p {
  color: rgba(255, 255, 255, 0.78);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-strip article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(24, 24, 27, 0.06);
}

.metric-strip strong {
  display: block;
  font-size: 1.65rem;
  font-family: "Varela Round", sans-serif;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.announcement-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.announcement-bar p {
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.insight-strip article {
  padding: 24px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.editorial-showcase,
.product-highlights,
.checkout-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.editorial-copy {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.editorial-stack,
.faq-intro {
  display: grid;
  gap: 14px;
}

.editorial-stack article,
.faq-intro article,
.product-highlights article,
.checkout-benefits article {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.editorial-stack span {
  display: inline-flex;
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--accent-deep);
}

.editorial-stack strong,
.faq-intro strong,
.product-highlights strong,
.checkout-benefits strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.insight-strip strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Varela Round", sans-serif;
  font-size: 1.7rem;
}

.trust-bar p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(24, 24, 27, 0.06);
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.product-grid,
.proof-grid,
.gallery-grid,
.routine-grid,
.testimonial-grid,
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bundle-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.bundle-card.featured {
  background:
    radial-gradient(circle at top left, rgba(236, 72, 153, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.88);
  border-color: rgba(236, 72, 153, 0.18);
}

.bundle-card small {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.bundle-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.bundle-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-family: "Varela Round", sans-serif;
}

.bundle-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.product-card {
  overflow: hidden;
  border-radius: 30px;
}

.product-visual,
.gallery-main,
.gallery-thumb {
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.product-visual::after,
.gallery-main::after,
.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

.amber {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.32), transparent 24%),
    linear-gradient(135deg, #f4b678, #ec4899 55%, #8f1d57);
}

.cobalt {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, #8ac5d7, #4a74b9 50%, #283b63);
}

.moss {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, #d1d9a6, #72916d 55%, #465f52);
}

.product-body {
  padding: 24px;
}

.product-body h3,
.routine-grid h3 {
  margin: 0 0 10px;
  font-size: 1.36rem;
  line-height: 1.15;
}

.product-meta {
  justify-content: space-between;
  margin-top: 22px;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-button {
  min-height: 44px;
  padding: 10px 16px;
}

.product-meta strong,
.price-row strong {
  font-size: 1.5rem;
  font-family: "Varela Round", sans-serif;
}

.proof-grid article,
.routine-grid article,
.testimonial-grid article,
.story-panel,
.story-list article,
.faq-list details,
.contact-card,
.detail-card,
.checkout-form,
.order-summary,
.policy-page {
  padding: 26px;
  border-radius: 28px;
}

.story,
.contact,
.product-hero,
.checkout-layout {
  display: grid;
  gap: 22px;
}

.story {
  grid-template-columns: 1.05fr 0.95fr;
}

.story-list {
  display: grid;
  gap: 18px;
}

.story-list strong,
.proof-grid strong,
.routine-grid strong,
.testimonial-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.02rem;
  color: var(--accent-deep);
}

.comparison-table {
  display: grid;
  gap: 10px;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1.8fr 0.8fr;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 24, 27, 0.06);
}

.table-head {
  font-weight: 800;
  color: var(--text);
  background: rgba(236, 72, 153, 0.08);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-intro {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  margin-bottom: 12px;
}

.contact {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-card,
.checkout-form,
.capture-form {
  display: grid;
  gap: 16px;
}

.contact-card label,
.checkout-form label,
.capture-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-card input,
.contact-card textarea,
.checkout-form input,
.checkout-form textarea,
.capture-form input {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(24, 24, 27, 0.1);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-card input:hover,
.contact-card textarea:hover,
.checkout-form input:hover,
.checkout-form textarea:hover,
.capture-form input:hover {
  border-color: rgba(24, 24, 27, 0.18);
}

.contact-card input:focus,
.contact-card textarea:focus,
.checkout-form input:focus,
.checkout-form textarea:focus,
.capture-form input:focus {
  outline: 0;
  border-color: rgba(236, 72, 153, 0.42);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.14);
}

.contact-card textarea,
.checkout-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--surface-dark));
  box-shadow: 0 24px 44px rgba(24, 24, 27, 0.24);
}

.floating-cta span {
  opacity: 0.82;
  font-size: 0.82rem;
}

.floating-cta strong {
  font-size: 0.95rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  padding: 18px;
  background: rgba(12, 10, 14, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  z-index: 40;
}

.cart-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer__panel {
  width: min(420px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px) saturate(160%);
  transform: translateX(20px);
  transition: transform 0.24s ease;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header,
.cart-total,
.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
}

.cart-line {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 24, 27, 0.07);
}

.cart-line strong {
  display: block;
}

.cart-line small,
.cart-empty {
  color: var(--muted);
}

.cart-drawer__footer {
  display: grid;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid rgba(24, 24, 27, 0.08);
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
  max-width: 440px;
}

.product-hero,
.checkout-layout,
.cart-page {
  grid-template-columns: 1.08fr 0.92fr;
}

.gallery-main {
  min-height: 420px;
}

.strike {
  color: var(--muted);
  text-decoration: line-through;
}

.detail-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(24, 24, 27, 0.08);
}

.summary-line.total {
  color: var(--text);
  font-size: 1.1rem;
}

.checkout-note {
  padding: 18px;
  border-radius: 22px;
  background: rgba(236, 72, 153, 0.08);
  border: 1px solid rgba(236, 72, 153, 0.12);
}

.checkout-note strong {
  display: block;
  margin-bottom: 8px;
}

.paypal-panel {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 24, 27, 0.08);
}

.paypal-panel h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.paypal-status {
  margin: 0 0 16px;
}

.paypal-button-shell {
  min-height: 46px;
}

.email-capture {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
}

.cart-page__main,
.cart-page__summary {
  display: grid;
  gap: 18px;
}

.cart-page-items {
  min-height: 320px;
  align-content: start;
}

.cart-page__summary {
  padding: 26px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
}

.cart-page__actions {
  display: grid;
  gap: 12px;
}

.capture-form {
  min-width: min(100%, 360px);
}

.policy-page {
  max-width: 860px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .story,
  .contact,
  .product-grid,
  .trust-bar,
  .insight-strip,
  .locale-banner,
  .announcement-bar,
  .editorial-showcase,
  .proof-grid,
  .routine-grid,
  .testimonial-grid,
  .bundle-grid,
  .faq-intro,
  .product-highlights,
  .detail-sections,
  .product-hero,
  .checkout-layout,
  .checkout-benefits,
  .cart-page,
  .email-capture {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .cart-button {
    display: none;
  }

  .locale-switcher {
    width: 100%;
  }

  .site-footer,
  .table-row {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .site-header,
  .hero,
  .trust-bar,
  .insight-strip,
  .locale-banner,
  .products,
  .routine,
  .proof,
  .story,
  .comparison,
  .faq,
  .testimonials,
  .email-capture,
  .contact,
  .product-hero,
  .detail-sections,
  .specs,
  .checkout-layout,
  .policy-page {
    padding: 22px;
    border-radius: 26px;
  }

  .site-header {
    border-radius: 24px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .section-heading h2,
  .story-panel h2,
  .contact-copy h2,
  .product-summary h1,
  .detail-card h2,
  .policy-page h1,
  .order-summary h2 {
    font-size: 2.15rem;
  }

  .metric-strip,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .inline-button {
    width: 100%;
  }

  .floating-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    justify-content: space-between;
  }

  .cart-drawer {
    padding: 10px;
  }

  .cart-drawer__panel {
    width: 100%;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
