/* ============================================================
   Softer Within Main Stylesheet
   ============================================================ */

/* Google Fonts are loaded via header.php */

/* ============================================================
   1. CSS Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   2. CSS Custom Properties
   ============================================================ */
:root {
  --color-bg:         #FDFAF7;
  --color-cream:      #F9F5F0;
  --color-mauve:      #C9A9C0;
  --color-sage:       #A8B5A2;
  --color-rose:       #E8B4B8;
  --color-text:       #2C2420;
  --color-text-light: #7A6E6B;
  --color-border:     #EDE8E3;
  --color-white:      #FFFFFF;

  --font-headline: 'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', sans-serif;
  --font-accent:   'Cormorant Garamond', Georgia, serif;

  --shadow-sm:  0 2px 8px rgba(44,36,32,0.06);
  --shadow-md:  0 4px 20px rgba(44,36,32,0.10);
  --shadow-lg:  0 8px 40px rgba(44,36,32,0.14);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-pill: 50px;

  --transition: all 0.3s ease;

  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 32px;
  --spacing-lg: 64px;
  --spacing-xl: 96px;

  --max-width: 1200px;
}

/* ============================================================
   3. Layout Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--spacing-xl) 0;
}

.section--sm {
  padding: var(--spacing-lg) 0;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-2x2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.honeypot { position: absolute; left: -9999px; opacity: 0; width: 0; height: 0; }

/* ============================================================
   4. Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-weight: 500;
}

.accent-text {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-text-light);
}

.lead {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

/* ============================================================
   5. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
  text-decoration: none;
  border: none;
}

.btn--primary {
  background: var(--color-rose);
  color: var(--color-text);
}
.btn--primary:hover {
  background: var(--color-mauve);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  border: 1.5px solid var(--color-mauve);
  color: var(--color-text);
}
.btn--secondary:hover {
  background: var(--color-mauve);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-light);
  padding: 10px 20px;
  font-size: 0.875rem;
}
.btn--ghost:hover { color: var(--color-text); }

.btn--sage {
  background: var(--color-sage);
  color: var(--color-white);
}
.btn--sage:hover { background: #8fa389; transform: translateY(-2px); }

.btn--full { width: 100%; }

.btn--lg { padding: 18px 44px; font-size: 1.0625rem; }

.btn[disabled], .btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
   6. Forms
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 6px; color: var(--color-text); }

.form-input {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--color-mauve);
  box-shadow: 0 0 0 3px rgba(201,169,192,0.2);
}
.form-input::placeholder { color: #B5ABA7; }

textarea.form-input { resize: vertical; min-height: 120px; }

select.form-input { cursor: pointer; }

.form-error { color: #c0392b; font-size: 0.8125rem; margin-top: 6px; }
.form-success { color: #27ae60; font-size: 0.8125rem; margin-top: 6px; }

/* ============================================================
   7. Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(253,250,247,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
}

.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar__logo {
  flex-shrink: 0;
  text-decoration: none;
}
.logo-text {
  font-family: var(--font-headline);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.navbar__nav {
  flex: 1;
}
.navbar__nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar__nav a {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  transition: color 0.2s ease;
  font-weight: 400;
}
.navbar__nav a:hover { color: var(--color-text); }

.navbar__cta { flex-shrink: 0; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  background: var(--color-bg);
  padding: 24px;
  border-top: 1px solid var(--color-border);
}
.navbar__mobile ul { flex-direction: column; gap: 0; }
.navbar__mobile li a {
  display: block;
  padding: 14px 0;
  font-size: 1.0625rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.navbar__mobile .btn { margin-top: 24px; width: 100%; text-align: center; }

/* Spacer so content doesn't hide behind fixed nav */
.nav-spacer { height: 72px; }

/* ============================================================
   8. Hero Section
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #FDFAF7 0%, #F5EEE9 50%, #EFE6E1 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero__content { }
.hero__label {
  display: inline-block;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mauve);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero__headline {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--color-text);
}

.hero__headline em {
  font-style: italic;
  color: var(--color-mauve);
}

.hero__sub {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__illustration svg {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 60px rgba(201,169,192,0.2));
}

/* ============================================================
   9. Trust Bar
   ============================================================ */
.trust-bar {
  background: #F0EAE8;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 400;
}
.trust-item span.icon { font-size: 1rem; }

/* ============================================================
   10. Section Headers
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { color: var(--color-text-light); max-width: 540px; margin: 0 auto; }

/* ============================================================
   11. Brand Story
   ============================================================ */
.brand-story {
  background: var(--color-white);
}
.brand-story__text h2 { margin-bottom: 24px; }
.brand-story__text p { color: var(--color-text-light); margin-bottom: 20px; line-height: 1.8; }
.brand-story__divider {
  width: 60px;
  height: 2px;
  background: var(--color-rose);
  margin: 32px 0;
  border-radius: 2px;
}
.brand-story__image {
  background: linear-gradient(135deg, #F9F5F0, #F0EAE8);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-story__image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }

/* ============================================================
   12. Collections
   ============================================================ */
.collections {
  background: var(--color-cream);
}
.collection-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--color-border);
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.collection-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.collection-card h3 { margin-bottom: 10px; font-size: 1.125rem; }
.collection-card p  { font-size: 0.875rem; color: var(--color-text-light); line-height: 1.6; margin: 0 0 16px; }
.collection-card .explore-link {
  font-size: 0.875rem;
  color: var(--color-mauve);
  font-weight: 500;
  transition: color 0.2s ease;
}
.collection-card:hover .explore-link { color: var(--color-text); }

/* ============================================================
   13. Featured Product
   ============================================================ */
.featured-product {
  background: var(--color-white);
}
.featured-product__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.featured-product__mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-cover {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #E8D5E4, #C9A9C0);
  border-radius: var(--radius-md);
  transform: rotate(-3deg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.product-cover img { width: 100%; height: 100%; object-fit: cover; transform: rotate(3deg); }
.product-cover-placeholder {
  text-align: center;
  padding: 40px;
  color: var(--color-white);
  transform: rotate(3deg);
}
.product-cover-placeholder h3 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.badge--boundaries   { background: rgba(168,181,162,0.2); color: #5a7054; }
.badge--relationship { background: rgba(232,180,184,0.2); color: #a85860; }
.badge--self-love    { background: rgba(201,169,192,0.2); color: #8a5c82; }
.badge--inner-child  { background: rgba(249,245,240,0.8); color: #7a6e6b; border: 1px solid var(--color-border); }

.featured-product__info h2 { margin-bottom: 16px; }
.featured-product__info .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  font-family: var(--font-headline);
}
.featured-product__info .desc {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* ============================================================
   14. Testimonials
   ============================================================ */
.testimonials { background: var(--color-cream); }
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-accent);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-rose);
  opacity: 0.4;
  position: absolute;
  top: 16px;
  left: 24px;
}
.testimonial-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-top: 32px;
  font-style: italic;
}
.testimonial-card__author { font-weight: 500; color: var(--color-text); font-size: 0.875rem; }
.testimonial-card__location { font-size: 0.8125rem; color: var(--color-text-light); }

/* ============================================================
   15. Free Gift Banner
   ============================================================ */
.free-gift-banner {
  background: var(--color-sage);
  padding: var(--spacing-lg) 0;
  text-align: center;
}
.free-gift-banner h2 { color: var(--color-white); margin-bottom: 12px; }
.free-gift-banner p  { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.0625rem; }
.free-gift-banner .btn--primary { background: var(--color-white); color: var(--color-text); }
.free-gift-banner .btn--primary:hover { background: var(--color-cream); }

/* ============================================================
   Freebie Submit Spinner & Success Animation
   ============================================================ */
.freebie-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: freebie-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes freebie-spin {
  to { transform: rotate(360deg); }
}

.freebie-success {
  text-align: center;
  padding: 36px 28px;
  background: linear-gradient(180deg, rgba(168,181,162,0.12) 0%, rgba(168,181,162,0.05) 100%);
  border: 1px solid rgba(168,181,162,0.4);
  border-radius: 20px;
  margin-top: 12px;
  animation: freebie-fade-up 0.6s ease-out;
}
@keyframes freebie-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.freebie-success__check {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}
.freebie-success__check svg { width: 100%; height: 100%; }
.freebie-success__circle {
  stroke: #A8B5A2;
  stroke-width: 3;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: freebie-circle-draw 0.6s 0.2s ease-out forwards;
}
.freebie-success__tick {
  stroke: #A8B5A2;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: freebie-tick-draw 0.4s 0.7s ease-out forwards;
}
@keyframes freebie-circle-draw { to { stroke-dashoffset: 0; } }
@keyframes freebie-tick-draw   { to { stroke-dashoffset: 0; } }

.freebie-success__title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}
.freebie-success__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}
.freebie-success__hint {
  display: inline-block;
  background: rgba(255,255,255,0.7);
  border: 1px dashed rgba(168,181,162,0.5);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.8125rem;
  color: var(--color-text);
  line-height: 1.5;
}

.freebie-error {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.9375rem;
  color: #991b1b;
  text-align: center;
  animation: freebie-shake 0.4s ease-out, freebie-fade-up 0.3s ease-out;
}
@keyframes freebie-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* Full-screen success overlay */
.freebie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.freebie-overlay.open {
  display: flex;
  animation: freebie-overlay-in 0.3s ease-out;
}
@keyframes freebie-overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.freebie-overlay__card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: freebie-fade-up 0.5s 0.1s ease-out backwards;
}
.freebie-overlay__title {
  font-family: var(--font-headline);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 14px;
}
.freebie-overlay__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============================================================
   16. Stats Row
   ============================================================ */
.stats-row { background: var(--color-white); }
/* Stats break — block di mobile, hilang di desktop */
.stats-break { display: block; }
@media (min-width: 768px) {
  .stats-break { display: none; }
}

/* ============================================================
   17. Shop Page
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, #FDFAF7, #F5EEE9);
  padding: 80px 0 60px;
  text-align: center;
}
.page-header h1 { margin-bottom: 12px; }
.page-header p  { color: var(--color-text-light); max-width: 500px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--color-mauve); }
.breadcrumb span { color: var(--color-text-light); }

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-text-light);
  background: var(--color-white);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--color-rose);
  background: var(--color-rose);
  color: var(--color-text);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.product-card.hidden { display: none; }

.product-card__image {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #F0E8ED, #E8D5E4);
  overflow: hidden;
  position: relative;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  loading: lazy;
}
.product-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.product-card__image-placeholder span {
  font-family: var(--font-headline);
  font-size: 1rem;
  color: rgba(44,36,32,0.5);
  font-style: italic;
}

.product-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card__badge { margin-bottom: 10px; }
.product-card__name {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.product-card__price {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
}

/* ============================================================
   18. Product Detail Page
   ============================================================ */
.product-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-detail__gallery { position: sticky; top: 96px; }
.product-detail__main-image {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #E8D5E4, #C9A9C0);
  border-radius: var(--radius-lg);
  transform: rotate(-2deg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 20px;
  cursor: zoom-in;
}
.product-detail__main-image img { width: 100%; height: 100%; object-fit: cover; transform: rotate(2deg); }
.product-detail__thumbs { display: flex; gap: 12px; flex-wrap: wrap; }
.product-detail__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  background: var(--color-cream);
}
.product-detail__thumb:hover, .product-detail__thumb.active { border-color: var(--color-mauve); }
.product-detail__thumb img { width: 100%; height: 100%; object-fit: cover; }

.secure-checkout-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 16px;
}

.product-detail__info {}
.product-detail__info .badge { margin-bottom: 16px; }
.product-detail__info h1 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 12px; }

.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars span { color: #F5C518; font-size: 1.125rem; }

.product-price {
  font-family: var(--font-headline);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
}

.product-short-desc {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.whats-inside { margin-bottom: 28px; }
.whats-inside h3 { font-size: 1rem; margin-bottom: 14px; }
.whats-inside ul li {
  display: flex;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
  line-height: 1.5;
}
.whats-inside ul li::before { content: '✦'; color: var(--color-mauve); flex-shrink: 0; }

.buy-btn {
  width: 100%;
  font-size: 1rem;
  padding: 18px 32px;
  margin-bottom: 16px;
}

/* Accordion */
.accordion { margin-bottom: 24px; }
.accordion__item { border-bottom: 1px solid var(--color-border); }
.accordion__trigger {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  background: none;
  border: none;
}
.accordion__trigger::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-mauve);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion__trigger.open::after { transform: rotate(45deg); }
.accordion__body {
  display: none;
  padding-bottom: 16px;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.75;
}
.accordion__body.open { display: block; }

/* Is this for you */
.is-for-you { background: var(--color-cream); border-radius: var(--radius-lg); padding: 48px; margin: 64px 0; }
.is-for-you h2 { margin-bottom: 32px; text-align: center; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checklist-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.checklist-item span.check { color: var(--color-sage); font-size: 1.125rem; flex-shrink: 0; }

/* Guarantee */
.guarantee {
  background: linear-gradient(135deg, #F9F5F0, #F0E8ED);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin: 48px 0;
}
.guarantee__icon { font-size: 3rem; margin-bottom: 16px; }
.guarantee h3 { margin-bottom: 12px; }
.guarantee p  { color: var(--color-text-light); max-width: 480px; margin: 0 auto; line-height: 1.8; }

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--color-white);
  padding: 14px 20px;
  box-shadow: 0 -4px 20px rgba(44,36,32,0.12);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--color-border);
}
.sticky-cta__price { font-family: var(--font-headline); font-size: 1.375rem; font-weight: 700; }
.sticky-cta .btn { flex: 1; }

/* ============================================================
   19. Freebie Page
   ============================================================ */
.freebie-page { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(145deg, #FDFAF7, #F5EEE9); }
.freebie-page__inner { max-width: 1000px; margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; width: 100%; }
.freebie-page .label { margin-bottom: 16px; }
.freebie-page h1 { margin-bottom: 24px; }
.freebie-page .lead { margin-bottom: 28px; }
.freebie-list { list-style: none; margin-bottom: 28px; }
.freebie-list li { display: flex; gap: 10px; font-size: 0.9375rem; color: var(--color-text-light); margin-bottom: 12px; }
.freebie-list li::before { content: '✦'; color: var(--color-mauve); flex-shrink: 0; }
.freebie-privacy { font-size: 0.8125rem; color: var(--color-text-light); margin-top: 12px; }
.freebie-cover { background: linear-gradient(145deg, #E8D5E4, #C9A9C0); border-radius: var(--radius-lg); aspect-ratio: 3/4; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; padding: 40px; transform: rotate(2deg); }
.freebie-cover-inner { transform: rotate(-2deg); text-align: center; color: var(--color-white); }

/* ============================================================
   20. Thank You Page
   ============================================================ */
.thank-you { text-align: center; padding: var(--spacing-xl) 0; }
.checkmark-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: checkPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes checkPop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.checkmark-circle svg { color: var(--color-white); width: 40px; height: 40px; }

.order-summary {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 32px;
  max-width: 480px;
  margin: 32px auto;
  text-align: left;
}
.order-summary h3 { margin-bottom: 16px; font-size: 1rem; }
.order-summary__row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--color-border); font-size: 0.9375rem; color: var(--color-text-light); }
.order-summary__row:last-child { border-bottom: none; font-weight: 600; color: var(--color-text); }

.download-section { margin: 40px auto; max-width: 480px; }
.download-note { font-size: 0.875rem; color: var(--color-text-light); margin-top: 12px; }
.downloads-remaining { display: inline-block; background: var(--color-cream); border-radius: var(--radius-sm); padding: 4px 12px; font-size: 0.8125rem; color: var(--color-text-light); margin-top: 8px; }

.share-section { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--color-border); max-width: 480px; margin-left: auto; margin-right: auto; }
.share-url { display: flex; gap: 12px; margin-top: 16px; }
.share-url input { flex: 1; font-size: 0.875rem; background: var(--color-cream); border: 1px solid var(--color-border); }

/* ============================================================
   21. About Page
   ============================================================ */
.about-hero { background: linear-gradient(145deg, #FDFAF7, #F5EEE9); padding: 120px 0 80px; text-align: center; }
.about-hero h1 { margin-bottom: 20px; }
.about-hero .lead { max-width: 600px; margin: 0 auto; }
.about-content { background: var(--color-white); }
.about-content__inner { max-width: 740px; margin: 0 auto; padding: var(--spacing-xl) 24px; }
.about-content h2 { margin-bottom: 20px; margin-top: 48px; }
.about-content h2:first-child { margin-top: 0; }
.about-content p { color: var(--color-text-light); line-height: 1.85; margin-bottom: 20px; }

/* ============================================================
   22. 404 Page
   ============================================================ */
.not-found { text-align: center; padding: 120px 24px; min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.not-found h1 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 20px; }
.not-found p  { color: var(--color-text-light); max-width: 440px; margin: 0 auto 36px; }
.not-found__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   23. Legal Pages
   ============================================================ */
.legal-page { background: var(--color-white); }
.legal-page__inner { max-width: 740px; margin: 0 auto; padding: var(--spacing-xl) 24px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-page .last-updated { font-size: 0.875rem; color: var(--color-text-light); margin-bottom: 48px; }
.legal-page h2 { font-size: 1.25rem; margin-top: 40px; margin-bottom: 14px; }
.legal-page p  { color: var(--color-text-light); line-height: 1.8; margin-bottom: 16px; }
.legal-page ul { margin: 0 0 16px 24px; list-style: disc; }
.legal-page li { color: var(--color-text-light); line-height: 1.8; margin-bottom: 8px; }
.legal-page a  { color: var(--color-mauve); text-decoration: underline; }

/* ============================================================
   24. Cookie Consent Banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 540px;
  background: var(--color-text);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  z-index: 9000;
  box-shadow: var(--shadow-lg);
  display: none;
  animation: slideUp 0.4s ease;
}
.cookie-banner.visible { display: block; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner__inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-banner p  { margin: 0; font-size: 0.875rem; line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-banner a  { color: var(--color-rose); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 8px 20px; border-radius: var(--radius-pill); background: var(--color-rose);
  color: var(--color-text); font-size: 0.875rem; font-weight: 500; cursor: pointer;
  font-family: var(--font-body); border: none;
}
.btn-cookie-decline {
  padding: 8px 20px; border-radius: var(--radius-pill); background: transparent;
  color: rgba(255,255,255,0.7); font-size: 0.875rem; cursor: pointer;
  font-family: var(--font-body); border: 1px solid rgba(255,255,255,0.3);
}

/* ============================================================
   25. Email Popup Modal
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,36,32,0.5);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(4px);
}
.popup-overlay.open {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  display: grid;
  grid-template-columns: 200px 1fr;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.4s ease;
}
.popup-overlay.open .popup-card { transform: scale(1); }

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1rem;
  color: var(--color-text-light);
  z-index: 1;
  padding: 6px 8px;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.popup-close:hover { background: var(--color-cream); color: var(--color-text); }

.popup-decoration {
  background: linear-gradient(135deg, #F5EEE9, #EDE6E0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.popup-decoration svg { width: 100%; max-width: 120px; }

.popup-content { padding: 40px 40px 36px 32px; min-width: 0; }
.popup-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-mauve); margin-bottom: 10px; display: block; }
.popup-headline { font-size: 1.5rem; margin-bottom: 12px; line-height: 1.3; font-family: var(--font-headline); font-weight: 600; }
.popup-subtext  { font-size: 0.9375rem; color: var(--color-text-light); margin-bottom: 24px; line-height: 1.6; }

.popup-form .form-input { margin-bottom: 12px; }
.popup-submit { width: 100%; margin-bottom: 10px; }
.popup-privacy { font-size: 0.75rem; color: var(--color-text-light); }
.popup-feedback { font-size: 0.875rem; margin-top: 10px; min-height: 20px; }
.popup-feedback.success { color: #27ae60; }
.popup-feedback.error   { color: #c0392b; }

/* ============================================================
   26. Lightbox
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-md); }
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.2s;
}
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   27. Toast Notifications
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9800;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  max-width: 320px;
  box-shadow: var(--shadow-md);
  animation: toastIn 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
@keyframes toastIn { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.toast--success { background: var(--color-sage); color: var(--color-white); }
.toast--error   { background: #c0392b; color: var(--color-white); }
.toast--info    { background: var(--color-mauve); color: var(--color-white); }

/* ============================================================
   28. Footer
   ============================================================ */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.75);
  margin-top: auto;
}
.footer__inner { padding: 72px 24px 48px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; }

.footer__logo {
  font-family: var(--font-headline);
  font-size: 1.375rem;
  color: var(--color-white);
  display: block;
  margin-bottom: 10px;
}
.footer__tagline { font-size: 0.8125rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; font-style: italic; }
.footer__bio { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 24px; }

.footer__social { display: flex; gap: 14px; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { border-color: var(--color-rose); color: var(--color-rose); }

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--color-white); }

.footer__cta-text { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-bottom: 20px; line-height: 1.6; }
.footer__email-input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--color-white);
  margin-bottom: 10px;
}
.footer__email-input::placeholder { color: rgba(255,255,255,0.35); }
.footer__email-input:focus { border-color: var(--color-mauve); }
.footer__form-btn { width: 100%; }
.footer__privacy { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 8px; }
.footer__form-feedback { font-size: 0.8125rem; margin-top: 8px; color: var(--color-rose); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 24px; }
.footer__bottom-inner { max-width: var(--max-width); margin: 0 auto; text-align: center; }
.footer__copy { font-size: 0.8125rem; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.footer__disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.3); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* ============================================================
   29. Animations
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up  { animation: fadeInUp  0.7s ease both; }
.animate-fade-in  { animation: fadeIn    0.5s ease both; }
.animate-slide-down { animation: slideDown 0.4s ease both; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ============================================================
   30. Misc Utilities
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 48px 0;
}

.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--color-text-light);
}
.empty-state h3 { margin-bottom: 12px; font-size: 1.25rem; }

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(44,36,32,0.2);
  border-top-color: var(--color-text);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Lazy loading */
img[loading="lazy"] { opacity: 0; transition: opacity 0.4s ease; }
img.loaded { opacity: 1; }
