@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/CormorantGaramond-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Imprima";
  src: url("../assets/fonts/Imprima-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../assets/fonts/Nunito-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 1000;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --plum: #7a5490;
  --plum-mid: #8870a0;
  --plum-light: #9e7ab1;
  --mauve: #c688a8;
  --lilac: #c4a8d4;
  --blush-bg: #fce8f5;
  --lavender-bg: #f5eefa;
  --soft-purple: #e8ddef;
  --white: #ffffff;
  --text-dark: #2e1a3a;
  --text-body: #4a3558;
  --text-muted: #8a7499;
  --line: rgba(196, 168, 212, 0.24);
  --shadow: 0 18px 46px rgba(122, 84, 144, 0.12);
  --radius: 18px;
  --max-width: 1140px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text-body);
  background: var(--lavender-bg);
  font-family: "Imprima", system-ui, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  clip: auto;
  color: var(--white);
  background: var(--plum);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(245, 238, 250, 0.94);
  border-bottom: 1px solid rgba(196, 168, 212, 0.2);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(122, 84, 144, 0.1);
}

.nav {
  width: min(100%, 1280px);
  min-height: 78px;
  margin: 0 auto;
  padding: 12px clamp(1.25rem, 4vw, 3.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo span {
  color: var(--plum);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.9rem);
}

.nav-links a {
  padding: 0.35rem 0;
  color: var(--text-body);
  font-family: "Imprima", system-ui, sans-serif;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--plum);
}

.nav-links .nav-shop {
  padding: 0.72rem 1.3rem;
  color: var(--white);
  background: var(--plum);
  border-radius: 999px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(122, 84, 144, 0.24);
}

.nav-links .nav-shop:hover {
  color: var(--white);
  background: var(--plum-mid);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--lilac);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--plum);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px clamp(1.25rem, 5vw, 4rem) 80px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--white) 0%, var(--lavender-bg) 42%, var(--blush-bg) 100%);
}

.page-hero {
  min-height: 62vh;
  padding: 130px clamp(1.25rem, 5vw, 4rem) 70px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(160deg, var(--white) 0%, var(--lavender-bg) 100%);
}

.page-hero > * {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 5.6vw, 5.3rem);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.45;
}

.hero-blob-1 {
  width: 520px;
  height: 520px;
  top: -130px;
  right: -130px;
  background: radial-gradient(circle, #c4a8d4 0%, transparent 65%);
}

.hero-blob-2 {
  width: 360px;
  height: 360px;
  bottom: 0;
  left: -80px;
  background: radial-gradient(circle, #fce8f5 0%, transparent 65%);
}

.hero-blob-3 {
  width: 260px;
  height: 260px;
  top: 42%;
  right: 4%;
  background: radial-gradient(circle, #c688a8 0%, transparent 65%);
  opacity: 0.22;
}

.hero-eyebrow,
.section-eyebrow {
  position: relative;
  z-index: 1;
  color: var(--plum-light);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.7rem;
  padding: 0.45rem 1.05rem;
  background: rgba(158, 122, 177, 0.1);
  border: 1px solid rgba(158, 122, 177, 0.25);
  border-radius: 999px;
}

.eyebrow-dot {
  color: var(--mauve);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
.section-title {
  margin: 0;
  color: var(--plum);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.3rem, 6.6vw, 6.2rem);
}

.section-title {
  font-size: clamp(2.35rem, 4vw, 3.55rem);
  line-height: 1.15;
}

.section-title em,
.hero h1 em {
  color: var(--mauve);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
}

.shimmer-text {
  display: inline;
  background: linear-gradient(90deg, var(--plum) 0%, var(--mauve) 30%, var(--plum-light) 50%, var(--plum) 70%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 250% center;
  }
}

.hero-sub {
  position: relative;
  z-index: 1;
  max-width: 590px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 3.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0.82rem 1.9rem;
  border-radius: 999px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-plum {
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 8px 26px rgba(122, 84, 144, 0.28);
}

.btn-plum:hover {
  background: var(--plum-mid);
}

.btn-outline-plum {
  color: var(--plum);
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--plum-light);
}

.btn-outline-plum:hover {
  color: var(--white);
  background: var(--plum);
  border-color: var(--plum);
}

.btn-white {
  color: var(--plum);
  background: var(--white);
}

.hero-trust {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.trust-icon {
  width: 22px;
  height: 22px;
  color: var(--plum-light);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.trust-divider {
  width: 1px;
  height: 18px;
  background: var(--lilac);
  opacity: 0.5;
}

.marquee-section {
  padding: 1.1rem 0;
  overflow: hidden;
  background: var(--plum);
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 1.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--mauve);
  border-radius: 50%;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.categories-section,
.products-section,
.newsletter-section,
.social-section,
.faq-section,
.terms-section,
.policy-section,
.affiliate-section {
  padding: clamp(4rem, 7vw, 5.7rem) clamp(1.25rem, 5vw, 4rem);
}

.categories-section,
.newsletter-section,
.faq-section {
  background: var(--white);
}

.categories-header,
.testimonials-header {
  max-width: 580px;
  margin: 0 auto 3.1rem;
  text-align: center;
}

.section-eyebrow {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--mauve);
}

.categories-grid,
.products-grid,
.platforms-grid,
.social-grid,
.terms-grid {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
}

.categories-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.category-card {
  display: block;
  padding: 2.3rem 1.65rem;
  text-align: center;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(122, 84, 144, 0.14);
}

.cat-notion {
  background: linear-gradient(140deg, #f5eefa, #e8ddef);
}

.cat-carrd {
  background: linear-gradient(140deg, #fce8f5, #f0d0e8);
}

.cat-bundle {
  background: linear-gradient(140deg, #f8e8ff, #eccff0);
}

.cat-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  color: var(--plum);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(122, 84, 144, 0.1);
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
}

.cat-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card h3,
.why-card h3,
.terms-grid h3 {
  margin: 0 0 0.55rem;
  color: var(--plum);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.category-card p,
.why-card p,
.terms-grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.cat-count {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.24rem 0.8rem;
  color: var(--plum-light);
  background: rgba(122, 84, 144, 0.1);
  border-radius: 999px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
}

.products-section {
  background: var(--lavender-bg);
}

.products-header {
  width: min(var(--max-width), 100%);
  margin: 0 auto 3.1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--plum);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  transition: gap 0.2s ease;
}

.view-all:hover,
.view-all:focus-visible {
  gap: 0.75rem;
}

.products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(196, 168, 212, 0.18);
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(122, 84, 144, 0.12);
}

.product-thumb {
  position: relative;
  height: 250px;
  overflow: hidden;
  display: block;
  background: var(--soft-purple);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0.28rem 0.7rem;
  color: var(--plum);
  background: var(--white);
  border-radius: 999px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-new {
  color: var(--white);
  background: var(--mauve);
}

.badge-best,
.badge-bundle {
  color: var(--white);
  background: var(--plum);
}

.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.6rem;
}

.product-cat {
  margin-bottom: 0.5rem;
  color: var(--plum-light);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-name {
  margin: 0 0 0.65rem;
  color: var(--plum);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.15;
}

.product-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  margin: -0.15rem 0 0.65rem;
  color: var(--plum);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.product-card-rating-star {
  color: var(--mauve);
  font-size: 0.9rem;
}

.product-desc {
  flex: 1;
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--soft-purple);
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  color: var(--plum);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.product-price .card-regular-price.is-discounted {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.product-price .card-sale-price {
  color: var(--plum);
  font-weight: 900;
}

.product-price .product-card-sale-badge {
  padding: 0.25rem 0.48rem;
  font-size: 0.58rem;
  white-space: nowrap;
}

.product-price small {
  display: block;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.products-view-all {
  display: flex;
  justify-content: center;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

.products-view-all-button {
  min-width: min(320px, 100%);
  min-height: 58px;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(122, 84, 144, 0.28);
  font-size: 1rem;
}

.products-view-all-button span {
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.products-view-all-button:hover span,
.products-view-all-button:focus-visible span {
  transform: translateX(4px);
}

.btn-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.5rem 1rem;
  color: var(--plum);
  background: var(--lavender-bg);
  border: 1.5px solid var(--lilac);
  border-radius: 999px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-add:hover,
.btn-add:focus-visible {
  color: var(--white);
  background: var(--plum);
  border-color: var(--plum);
}

.platforms-panel {
  width: min(var(--max-width), 100%);
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--white);
  border: 1px solid rgba(196, 168, 212, 0.22);
  border-radius: 28px;
  box-shadow: 0 8px 40px rgba(122, 84, 144, 0.07);
}

.platforms-panel h3 {
  max-width: 660px;
  margin: 0 0 1.5rem;
  color: var(--plum);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.1;
}

.platforms-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.platform-card {
  display: grid;
  gap: 0.55rem;
  min-height: 180px;
  padding: 1.25rem;
  background: var(--lavender-bg);
  border: 1px solid rgba(196, 168, 212, 0.28);
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-card:hover,
.platform-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(122, 84, 144, 0.1);
}

.platform-logo-img {
  width: auto;
  max-width: 168px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  padding: 0.45rem 0.8rem;
  background: var(--white);
  border-radius: 999px;
}

.platform-card:nth-child(3) .platform-logo-img {
  max-width: 190px;
}

.platform-card strong {
  color: var(--plum);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1rem;
}

.platform-card small {
  color: var(--text-muted);
  line-height: 1.6;
}

.shop-section,
.product-info-section,
.reviews-section,
.related-section {
  padding: clamp(4rem, 7vw, 5.7rem) clamp(1.25rem, 5vw, 4rem);
}

.shop-section,
.reviews-section {
  background: var(--white);
}

.shop-inner,
.reviews-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.shop-hero h1 em {
  color: var(--mauve);
  font-style: italic;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}

.product-tab {
  min-height: 44px;
  padding: 0.72rem 1.1rem;
  color: var(--plum);
  background: var(--lavender-bg);
  border: 1.5px solid rgba(196, 168, 212, 0.7);
  border-radius: 999px;
  cursor: pointer;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.product-tab.is-active,
.product-tab:hover,
.product-tab:focus-visible {
  color: var(--white);
  background: var(--plum);
  border-color: var(--plum);
}

.shop-products-grid {
  align-items: stretch;
}

.products-empty {
  margin: 2rem 0 0;
  text-align: center;
  color: var(--text-muted);
}

.product-detail-hero {
  min-height: 100vh;
  padding: 130px clamp(1.25rem, 5vw, 4rem) clamp(4rem, 7vw, 5.7rem);
  display: grid;
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: start;
  background: linear-gradient(160deg, var(--white) 0%, var(--lavender-bg) 48%, var(--blush-bg) 100%);
}

.product-gallery,
.product-detail-copy,
.product-info-grid,
.reviews-layout {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.product-gallery,
.product-detail-copy {
  min-width: 0;
}

.gallery-frame {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(252, 232, 245, 0.72)),
    var(--white);
  border: 1px solid rgba(196, 168, 212, 0.28);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.gallery-frame img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  padding: clamp(0.5rem, 1.6vw, 1.4rem);
}

.gallery-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(196, 168, 212, 0.42);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  transform: translateY(-50%);
}

.gallery-control[data-gallery-prev] {
  left: 1rem;
}

.gallery-control[data-gallery-next] {
  right: 1rem;
}

.gallery-thumbs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.gallery-thumb {
  width: 90px;
  height: 64px;
  overflow: hidden;
  padding: 0;
  background: var(--white);
  border: 2px solid var(--lilac);
  border-radius: 12px;
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-thumb.is-active {
  border-color: var(--plum);
  box-shadow: 0 8px 20px rgba(122, 84, 144, 0.16);
}

.product-detail-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(196, 168, 212, 0.24);
  border-radius: 26px;
  box-shadow: 0 14px 42px rgba(122, 84, 144, 0.08);
  backdrop-filter: blur(10px);
}

.product-detail-copy h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 4.8vw, 4.15rem);
}

.product-detail-copy p {
  max-width: 760px;
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.purchase-panel {
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid rgba(196, 168, 212, 0.3);
  border-radius: 22px;
}

.product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.product-detail-meta strong {
  color: var(--plum);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.product-detail-pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
}

.product-detail-pricing [data-regular-price] {
  transition: color 0.2s ease;
}

.product-detail-pricing [data-regular-price].is-discounted {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.product-detail-pricing .product-sale-price {
  color: var(--plum);
}

.product-sale-badge {
  padding: 0.32rem 0.65rem;
  color: var(--white);
  background: var(--plum);
  border-radius: 999px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.convertkit-button,
.product-buy-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.9rem 1.65rem;
  color: var(--white) !important;
  background: var(--plum) !important;
  border: 2px solid var(--plum);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(122, 84, 144, 0.32);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  isolation: isolate;
}

.product-buy-button[data-checkout-loading] {
  cursor: progress;
  opacity: 0.72;
}

.convertkit-button::before,
.product-buy-button::before {
  content: none;
}

.button-arrow {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.convertkit-button:hover,
.convertkit-button:focus-visible {
  background: var(--plum-mid) !important;
  border-color: var(--plum-mid);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(122, 84, 144, 0.38);
}

.convertkit-button:hover .button-arrow,
.convertkit-button:focus-visible .button-arrow {
  transform: translateX(3px);
}

.product-info-section,
.related-section {
  background: var(--lavender-bg);
}

.purchase-reminder-section {
  padding: 0 clamp(1.25rem, 5vw, 4rem) clamp(4rem, 7vw, 5.7rem);
  background: var(--lavender-bg);
}

.purchase-reminder {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 4vw, 2.5rem);
  align-items: center;
  padding: clamp(1.35rem, 4vw, 2.1rem);
  color: var(--white);
  background: var(--plum);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(122, 84, 144, 0.22);
}

.purchase-reminder .section-eyebrow,
.purchase-reminder h2 {
  color: var(--white);
}

.purchase-reminder h2 {
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 2.8rem);
  line-height: 1.12;
}

.purchase-reminder p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.purchase-reminder .product-buy-button {
  color: var(--white) !important;
  background: var(--mauve) !important;
  border-color: var(--mauve);
  box-shadow: 0 12px 28px rgba(46, 26, 58, 0.18);
}

.purchase-reminder .button-arrow {
  color: var(--white);
}

.purchase-reminder .product-buy-button:hover,
.purchase-reminder .product-buy-button:focus-visible {
  color: var(--white) !important;
  background: var(--lilac) !important;
  border-color: var(--lilac);
}

.sales-story-section {
  padding: clamp(3.5rem, 6vw, 4.8rem) clamp(1.25rem, 5vw, 4rem);
  background: var(--white);
}

.sales-story-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.5rem);
}

.sales-intro-band {
  position: relative;
  overflow: hidden;
  padding: clamp(1.7rem, 4vw, 2.7rem);
  background: linear-gradient(135deg, var(--plum), var(--plum-light));
  border-radius: 28px;
}

.sales-intro-band::after {
  content: "✦";
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: -1.2rem;
  color: rgba(255, 255, 255, 0.14);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
}

.sales-intro-band .section-eyebrow,
.sales-intro-band h2 {
  color: var(--white);
}

.sales-intro-band h2 {
  max-width: 760px;
  margin: 0 0 0.9rem;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2.05rem);
  line-height: 1.25;
}

.sales-intro-band p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sales-story-lane {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sales-story-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  background: var(--lavender-bg);
  border: 1px solid rgba(196, 168, 212, 0.28);
  border-radius: 22px;
}

.sales-story-card[data-sales-card="solution"] {
  background: var(--blush-bg);
}

.sales-icon,
.feature-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--plum);
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 900;
}

.sales-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(122, 84, 144, 0.16);
}

.sales-story-card[data-sales-card="solution"] .sales-icon {
  background: var(--mauve);
}

.sales-story-card h2,
.sales-benefits-copy h2,
.life-area-panel h2,
.feature-group-panel h2 {
  margin: 0 0 1rem;
  color: var(--plum);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
}

.sales-story-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.55rem);
}

.sales-story-card p,
.sales-benefit p,
.feature-group-panel p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.sales-benefits-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.4rem);
  align-items: start;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: linear-gradient(135deg, rgba(245, 238, 250, 0.72), rgba(252, 232, 245, 0.46));
  border: 1px solid rgba(196, 168, 212, 0.24);
  border-radius: 26px;
}

.sales-benefit-list {
  display: grid;
  gap: 0.85rem;
}

.sales-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(196, 168, 212, 0.28);
}

.sales-benefit span {
  color: var(--mauve);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.life-area-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 2.4rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: linear-gradient(135deg, var(--lavender-bg), var(--blush-bg));
  border: 1px solid rgba(196, 168, 212, 0.28);
  border-radius: 28px;
}

.life-area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.life-area-grid span {
  padding: 0.55rem 0.84rem;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(196, 168, 212, 0.32);
  border-radius: 999px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.feature-group-panel {
  padding: clamp(1.5rem, 4vw, 2.45rem);
  background: var(--plum);
  border-radius: 28px;
}

.feature-group-panel .section-eyebrow,
.feature-group-panel h2 {
  color: var(--white);
}

.feature-group-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.feature-group-grid article {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.feature-group-grid article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.feature-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 0.9rem;
  color: var(--plum);
  background: var(--white);
  border-radius: 12px;
}

.feature-group-grid h3 {
  margin: 0 0 0.45rem;
  color: var(--white);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.96rem;
}

.feature-group-grid p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

.product-info-grid,
.reviews-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-info-card {
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background: var(--white);
  border: 1px solid rgba(196, 168, 212, 0.25);
  border-radius: 22px;
  box-shadow: 0 8px 34px rgba(122, 84, 144, 0.06);
}

.product-info-card h2 {
  margin: 0 0 1rem;
  color: var(--plum);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.product-info-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-info-card li,
.product-info-card p {
  color: var(--text-muted);
  line-height: 1.75;
}

.product-info-card li {
  position: relative;
  padding-left: 1.5rem;
}

.product-info-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--mauve);
}

.reviews-header {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.review-form,
.review-list {
  padding: clamp(1.3rem, 4vw, 2rem);
  background: var(--lavender-bg);
  border: 1px solid rgba(196, 168, 212, 0.28);
  border-radius: 22px;
}

.review-form {
  display: grid;
  gap: 0.75rem;
}

.review-form label {
  color: var(--plum);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 0.78rem 0.9rem;
  color: var(--text-body);
  background: var(--white);
  border: 1.5px solid var(--soft-purple);
  border-radius: 14px;
  font-family: "Imprima", system-ui, sans-serif;
  font-size: 0.96rem;
  line-height: 1.45;
  letter-spacing: 0;
  outline: none;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: var(--text-muted);
  font-family: "Imprima", system-ui, sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0;
  opacity: 0.82;
}

.review-form textarea {
  resize: vertical;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: var(--plum-light);
}

.review-helper {
  margin: -0.35rem 0 0.15rem;
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.review-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.review-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.review-note,
.review-empty {
  margin: 0.4rem 0 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.review-note[data-state="success"] {
  color: var(--plum);
  font-weight: 800;
}

.review-note[data-state="error"] {
  color: #8f3560;
  font-weight: 800;
}

.review-list {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.review-card {
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(196, 168, 212, 0.25);
  border-radius: 16px;
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
  color: var(--plum);
  font-family: "Nunito", system-ui, sans-serif;
}

.review-card-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.verified-buyer {
  padding: 0.18rem 0.45rem;
  color: var(--plum);
  background: rgba(252, 232, 245, 0.85);
  border: 1px solid rgba(198, 136, 168, 0.32);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

.review-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.why-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 5.7rem) clamp(1.25rem, 5vw, 4rem);
  background: var(--plum);
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(198, 136, 168, 0.18) 0%, transparent 60%);
}

.why-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.why-left .section-title {
  color: var(--white);
}

.why-left .section-eyebrow {
  color: var(--mauve);
}

.why-left .section-title em {
  color: var(--lilac);
}

.why-left p {
  margin: 1.1rem 0 2.1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
  line-height: 1.85;
}

.why-right {
  display: grid;
  gap: 1rem;
}

.why-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.45rem 1.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.why-card h3 {
  color: var(--white);
}

.why-card p {
  color: rgba(255, 255, 255, 0.56);
}

.why-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(198, 136, 168, 0.18);
  border-radius: 12px;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
}

.why-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.affiliate-section {
  background: var(--white);
}

.affiliate-card {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--lavender-bg), var(--blush-bg));
  border: 1px solid rgba(196, 168, 212, 0.28);
  border-radius: 28px;
}

.affiliate-card p {
  max-width: 660px;
  margin: 1rem 0 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.affiliate-card .section-title {
  max-width: 680px;
  font-size: clamp(2.15rem, 3.25vw, 3.05rem);
}

.affiliate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.newsletter-section {
  text-align: center;
  background: var(--lavender-bg);
}

.newsletter-inner {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.25rem);
  background: var(--white);
  border: 1px solid rgba(196, 168, 212, 0.22);
  border-radius: 28px;
  box-shadow: 0 8px 40px rgba(122, 84, 144, 0.07);
}

.newsletter-inner h2 {
  margin: 0.4rem 0 0.75rem;
  color: var(--plum);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.newsletter-inner p {
  margin: 0 0 1.6rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.newsletter-form .btn {
  border: 0;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
}

.newsletter-input {
  flex: 1;
  min-width: 220px;
  min-height: 47px;
  padding: 0.75rem 1.2rem;
  color: var(--text-body);
  background: var(--lavender-bg);
  border: 1.5px solid var(--soft-purple);
  border-radius: 999px;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--plum-light);
}

.newsletter-note {
  flex-basis: 100%;
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.74rem;
}

.social-section {
  /* background: var(--white); */
  background: var(--lavender-bg);
}

.social-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.social-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.social-card {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem;
  /* background: var(--lavender-bg); */
  background: var(--white);
  border: 1px solid rgba(196, 168, 212, 0.28);
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(122, 84, 144, 0.1);
}

.social-logo {
  width: 40px;
  height: 40px;
}

.social-logo {
  object-fit: contain;
  object-position: center;
}

.social-card strong {
  color: var(--plum);
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
}

.social-card small {
  color: var(--text-muted);
}

.faq-inner,
.terms-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: var(--lavender-bg);
  border: 1px solid rgba(196, 168, 212, 0.28);
  border-radius: 16px;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  color: var(--plum);
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item a {
  color: var(--plum);
  font-weight: 800;
}

.faq-aside {
  position: sticky;
  top: 105px;
  padding: 1.5rem;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(196, 168, 212, 0.28);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.faq-aside img {
  width: 86px;
  height: 86px;
  margin: 0 auto 1rem;
}

.faq-aside h2 {
  margin: 0 0 0.6rem;
  color: var(--plum);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.faq-aside p {
  margin: 0 0 1.2rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.terms-section {
  background: var(--lavender-bg);
}

.terms-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.terms-grid article {
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid rgba(196, 168, 212, 0.28);
  border-radius: 18px;
}

.policy-hero {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.policy-effective {
  margin: 1.2rem 0 0;
  color: var(--plum);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-section {
  background: var(--white);
}

.policy-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: start;
}

.policy-content {
  min-width: 0;
  display: grid;
  gap: 1rem;
}

.policy-content section {
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--lavender-bg);
  border: 1px solid rgba(196, 168, 212, 0.28);
  border-radius: 18px;
}

.policy-content section[id] {
  scroll-margin-top: 110px;
}

.policy-content h2 {
  margin: 0 0 0.75rem;
  color: var(--plum);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.15;
}

.policy-content p,
.policy-content li {
  color: var(--text-muted);
  line-height: 1.78;
}

.policy-content p {
  margin: 0.7rem 0 0;
}

.policy-content p:first-of-type {
  margin-top: 0;
}

.policy-content ul {
  margin: 0.8rem 0 0;
  padding-left: 1.25rem;
}

.policy-content li + li {
  margin-top: 0.45rem;
}

.policy-content a {
  color: var(--plum);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.policy-aside {
  position: sticky;
  top: 105px;
  padding: 1.5rem;
  background: linear-gradient(145deg, #f5eefa, #fce8f5);
  border: 1px solid rgba(196, 168, 212, 0.35);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.policy-aside h2 {
  margin: 0 0 0.65rem;
  color: var(--plum);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.1;
}

.policy-aside p {
  margin: 0 0 1.2rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.policy-toc {
  display: grid;
  gap: 0.55rem;
}

.policy-toc a,
.policy-nav a {
  color: var(--plum);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.policy-toc a {
  padding: 0.16rem 0;
  line-height: 1.35;
}

.policy-toc a:hover,
.policy-toc a:focus-visible,
.policy-nav a:hover,
.policy-nav a:focus-visible {
  color: var(--mauve);
}

.policy-related {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(122, 84, 144, 0.16);
}

.policy-related h3 {
  margin: 0;
  color: var(--plum);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.policy-nav {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  display: grid;
  gap: 0.7rem;
  border-top: 1px solid rgba(122, 84, 144, 0.16);
}

.policy-related .policy-nav {
  margin-top: 0.75rem;
  padding-top: 0;
  border-top: 0;
}

.site-footer {
  padding: clamp(3rem, 6vw, 4rem) clamp(1.25rem, 5vw, 4rem) 2rem;
  background: #1c0e26;
}

.footer-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.25rem);
  padding-bottom: 2.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(196, 168, 212, 0.1);
}

.footer-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: 0.8;
}

.footer-brand p {
  max-width: 310px;
  margin: 1rem 0 1.35rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.84rem;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.54);
  background: rgba(196, 168, 212, 0.1);
  border: 1px solid rgba(196, 168, 212, 0.15);
  border-radius: 50%;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
}

.social-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-btn:hover,
.social-btn:focus-visible {
  color: var(--white);
  background: var(--plum);
  border-color: var(--plum);
}

.footer-col h4 {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.34);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--lilac);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.78rem;
}

.footer-tagline {
  margin: 0;
  color: rgba(196, 168, 212, 0.38);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
}

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

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

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

@media (max-width: 980px) {
  .nav {
    min-height: 72px;
    padding-inline: 1.25rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 120;
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 1.5rem;
    background: rgba(245, 238, 250, 0.97);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .categories-grid-three,
  .products-grid,
  .platforms-grid,
  .product-detail-copy,
  .product-info-grid,
  .purchase-reminder,
  .reviews-layout,
  .sales-story-lane,
  .sales-benefits-section,
  .life-area-panel,
  .feature-group-grid,
  .why-inner,
  .affiliate-card,
  .social-inner,
  .faq-inner,
  .terms-grid,
  .policy-inner,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .products-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-detail-hero {
    min-height: auto;
    padding-top: 125px;
  }

  .product-detail-copy {
    align-items: start;
  }

  .faq-aside {
    position: static;
  }

  .policy-aside {
    position: static;
  }

  .terms-page .policy-aside {
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero {
    padding-top: 115px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .hero-sub {
    margin-bottom: 2rem;
  }

  .hero-actions,
  .btn,
  .convertkit-button,
  .affiliate-actions,
  .newsletter-form,
  .newsletter-input {
    width: 100%;
  }

  .products-view-all {
    width: 100%;
  }

	  .product-tabs {
	    justify-content: stretch;
	  }

	  .product-tab {
	    flex: 1 1 100%;
	  }

	  .product-detail-actions,
	  .product-detail-actions .btn,
	  .product-detail-actions .convertkit-button {
	    width: 100%;
	  }

	  .gallery-frame {
	    border-radius: 20px;
	  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .trust-divider {
    display: none;
  }

  .product-thumb {
    height: 230px;
  }

  .product-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .btn-add {
    width: 100%;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .shimmer-text {
    -webkit-text-fill-color: var(--plum);
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Branded terminal state used by Cloudflare Pages for unknown routes. */
.not-found-main {
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(207, 134, 170, 0.2), transparent 32%),
    radial-gradient(circle at 80% 70%, rgba(132, 83, 157, 0.18), transparent 36%),
    var(--lavender-bg);
  display: flex;
  min-height: calc(100vh - 90px);
  padding: 9rem 1.5rem 5rem;
}

.not-found-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--lilac);
  border-radius: 36px;
  box-shadow: 0 24px 70px rgba(87, 55, 105, 0.12);
  margin: 0 auto;
  max-width: 760px;
  padding: clamp(2.25rem, 6vw, 5rem);
  text-align: center;
}

.not-found-code {
  color: var(--mauve);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 16vw, 9rem);
  font-weight: 600;
  line-height: 0.8;
  margin: 1.5rem 0;
}

.not-found-card h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  margin-bottom: 1rem;
}

.not-found-card > p:not(.not-found-code) {
  margin: 0 auto 2rem;
  max-width: 580px;
}

.not-found-card .hero-actions {
  justify-content: center;
}

.not-found-footer {
  margin-top: 0;
}
