/* ══════════════════════════════════════════════════════════
   VELARIA COSMETIC — Customer Storefront CSS
   Aesthetic: Refined Luxury / Editorial Beige
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --cream:     #fdf8f2;
  --beige-50:  #faf4ec;
  --beige-100: #f2e6d4;
  --beige-200: #e4ccb0;
  --beige-300: #cca882;
  --beige-400: #b58a5e;
  --brown-500: #8c6240;
  --brown-600: #6b4a2e;
  --brown-700: #4e3320;
  --brown-800: #321f10;
  --brown-900: #1a0f06;
  --gold:      #c9a96e;
  --gold-light:#e8d4ad;
  --text-main: #2e1f10;
  --text-muted:#9a7d62;
  --white:     #ffffff;
  --error:     #c0392b;
  --success:   #2d6a4f;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(50,31,16,.08);
  --shadow-md:  0 6px 28px rgba(50,31,16,.12);
  --shadow-lg:  0 20px 60px rgba(50,31,16,.18);

  --transition: .28s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img {
  border-radius: 20px;
}

/* ── Custom Cursor ─────────────────────────────────────── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--brown-700); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transition: transform .15s ease, opacity .2s;
  transform: translate(-50%,-50%);
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--beige-400); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transition: transform .4s ease, width .3s, height .3s, border-color .3s;
  transform: translate(-50%,-50%);
}
.cursor-ring.hovered {
  width: 56px; height: 56px;
  border-color: var(--gold);
}

/* ── Noise Texture Overlay ─────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .022;
  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)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 60px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(253,248,242,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--beige-100);
}
.nav-brand {
  display: flex; flex-direction: column; line-height: 1;
  text-decoration: none;
}
.nav-brand .name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  letter-spacing: 6px; color: var(--brown-700);
}
.nav-brand .tagline {
  font-size: 9px; letter-spacing: 3.5px;
  color: var(--beige-400); font-weight: 500;
  text-transform: uppercase; margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 11px; letter-spacing: 2px; font-weight: 600;
  text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover { color: var(--brown-700); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--brown-700); color: var(--beige-100) !important;
  padding: 10px 24px; border-radius: var(--radius-sm);
  font-size: 11px; letter-spacing: 2px; font-weight: 600;
  text-decoration: none; transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--brown-800) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(50,31,16,.22);
}
.nav-cta::after { display: none !important; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--beige-50) 0%, var(--cream) 40%, #ede0cc 100%);
}

.hero-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 300; color: transparent;
  -webkit-text-stroke: 1px rgba(192,155,119,.12);
  white-space: nowrap; pointer-events: none;
  letter-spacing: -4px; line-height: 1;
  user-select: none;
}

.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px); opacity: .45;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #e8d4ad 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #d4bc9e 0%, transparent 70%);
  bottom: -80px; left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
  max-width: 1200px; margin: 0 auto;
  padding: 120px 60px 80px;
  width: 100%;
}

.hero-content { animation: heroReveal .8s .1s both ease; }
.hero-visual   { animation: heroReveal .8s .3s both ease; }
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 4px; font-weight: 600;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; height: 1px; width: 30px; background: var(--gold-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 400; line-height: 1.08;
  color: var(--brown-800); margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-title em { font-style: italic; color: var(--brown-500); }

.hero-desc {
  font-size: 15.5px; color: var(--text-muted);
  line-height: 1.75; max-width: 420px; margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 38px;
  background: var(--brown-700); color: var(--beige-100);
  font-family: var(--font-body);
  font-size: 11.5px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none;
  border: none; border-radius: var(--radius-sm);
  cursor: none; transition: all var(--transition);
}
.btn-main:hover {
  background: var(--brown-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(50,31,16,.25);
}
.btn-main .arrow {
  width: 18px; height: 1px; background: var(--beige-300);
  position: relative; transition: width var(--transition);
}
.btn-main .arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1.5px solid var(--beige-300);
  border-right: 1.5px solid var(--beige-300);
  transform: rotate(45deg);
}
.btn-main:hover .arrow { width: 28px; }

.btn-ghost {
  font-size: 12px; letter-spacing: 1.5px; font-weight: 600;
  color: var(--brown-600); text-decoration: none;
  border-bottom: 1px solid var(--beige-300);
  padding-bottom: 2px;
  transition: all var(--transition);
}
.btn-ghost:hover { color: var(--brown-800); border-color: var(--brown-600); }

/* hero visual */
.hero-bottle-wrap {
  display: flex; justify-content: center; align-items: flex-end;
  position: relative; padding: 40px 0;
}
.hero-bottle {
  width: 260px;
  filter: drop-shadow(0 40px 60px rgba(50,31,16,.22));
  animation: bottleFloat 6s ease-in-out infinite;
}
@keyframes bottleFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-18px) rotate(1deg); }
}
.hero-badge {
  position: absolute; bottom: 30px; left: 30px;
  background: white;
  border: 1px solid var(--beige-100);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  animation: heroReveal .8s .6s both ease;
}
.hero-badge .badge-val {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  color: var(--brown-700); line-height: 1;
}
.hero-badge .badge-lbl {
  font-size: 10px; letter-spacing: 2px;
  color: var(--text-muted); display: block; margin-top: 4px;
}
.hero-badge-2 {
  position: absolute; top: 20px; right: 20px;
  background: var(--brown-800); color: var(--beige-100);
  border-radius: var(--radius-md); padding: 14px 20px;
  box-shadow: var(--shadow-md);
  font-size: 11px; letter-spacing: 1px; font-weight: 500;
  animation: heroReveal .8s .8s both ease;
}
.star-row { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 4px; }

/* ── Benefits Strip ────────────────────────────────────── */
.benefits-strip {
  background: var(--brown-800);
  padding: 22px 60px;
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
.benefit-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--beige-300); font-size: 12px; letter-spacing: 1.5px;
  font-weight: 500; text-transform: uppercase;
}
.benefit-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── Section Common ────────────────────────────────────── */
section { position: relative; }
.section-label {
  font-size: 10px; letter-spacing: 4px; font-weight: 600;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; height: 1px; width: 36px; background: var(--gold-light);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400; color: var(--brown-800);
  line-height: 1.1; letter-spacing: -.5px;
}
.section-title em { font-style: italic; color: var(--brown-500); }

/* ── Products Section ──────────────────────────────────── */
.products-section { padding: 120px 60px; }
.products-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 64px; flex-wrap: wrap; gap: 24px;
}
.products-desc {
  font-size: 15px; color: var(--text-muted); line-height: 1.75;
  max-width: 380px; font-weight: 300; margin-top: 16px;
}
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--beige-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--beige-200);
}
.product-img-wrap {
  background: linear-gradient(135deg, var(--beige-50), var(--beige-100));
  height: 300px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-img-wrap img {
  width: 140px; height: auto;
  object-fit: contain;
  transition: transform .5s ease;
  filter: drop-shadow(0 20px 40px rgba(50,31,16,.18));
}
.product-card:hover .product-img-wrap img { transform: scale(1.06) rotate(1deg); }
.product-badge-new {
  position: absolute; top: 16px; right: 16px;
  background: var(--brown-700); color: var(--beige-100);
  font-size: 9px; letter-spacing: 2px; font-weight: 600;
  padding: 5px 12px; border-radius: 20px; text-transform: uppercase;
}
.product-info { padding: 28px 28px 32px; }
.product-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--brown-800); margin-bottom: 8px; line-height: 1.2;
}
.product-desc {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 20px; font-weight: 300;
}
.product-price-row {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600; color: var(--brown-700);
}
.product-price span { font-size: 14px; color: var(--text-muted); font-weight: 400; }

.btn-add-cart {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--beige-100); color: var(--brown-700);
  border: 1.5px solid var(--beige-200);
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: 11.5px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: none;
  transition: all var(--transition); border: none;
  font-family: var(--font-body);
}
.btn-add-cart:hover {
  background: var(--brown-700); color: var(--beige-100);
  transform: translateY(-1px);
}
.btn-add-cart.added {
  background: var(--success); color: white;
}

/* ── How It Works ──────────────────────────────────────── */
.how-section {
  padding: 100px 60px;
  background: var(--beige-50);
}
.how-inner {
  max-width: 1200px; margin: 0 auto;
}
.how-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 48px; margin-top: 64px;
}
.how-step {
  text-align: center;
  opacity: 0; transform: translateY(30px);
  transition: all .6s ease;
}
.how-step.visible { opacity: 1; transform: translateY(0); }
.how-num {
  font-family: var(--font-display);
  font-size: 72px; font-weight: 300; line-height: 1;
  color: var(--beige-200); margin-bottom: 12px;
}
.how-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; color: var(--brown-700);
  margin-bottom: 12px;
}
.how-desc {
  font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300;
}

/* ── Ingredients ───────────────────────────────────────── */
.ingredients-section {
  padding: 100px 60px;
  max-width: 1200px; margin: 0 auto;
}
.ingredients-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 0;
}
.ingredients-img {
  border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(145deg, var(--beige-100), var(--beige-200));
  height: 480px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ingredients-img img {
  height: 72%; object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(50,31,16,.2));
}
.ingredient-list { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.ingredient-item {
  display: flex; align-items: flex-start; gap: 16px;
  opacity: 0; transform: translateX(-20px);
  transition: all .5s ease;
}
.ingredient-item.visible { opacity: 1; transform: translateX(0); }
.ingredient-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--beige-100); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
  border: 1px solid var(--beige-200);
}
.ingredient-name {
  font-family: var(--font-display); font-size: 17px;
  font-weight: 500; color: var(--brown-700); margin-bottom: 3px;
}
.ingredient-desc { font-size: 13px; color: var(--text-muted); font-weight: 300; }

/* ── Order Section ─────────────────────────────────────── */
.order-section {
  padding: 120px 60px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige-50) 100%);
}
.order-inner {
  max-width: 900px; margin: 0 auto;
}
.order-header { text-align: center; margin-bottom: 60px; }
.order-header .section-label { justify-content: center; }
.order-header .section-label::before { display: none; }
.order-header .section-label::after {
  content: ''; height: 1px; width: 36px; background: var(--gold-light);
}

.order-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--beige-100);
}
.order-card-header {
  background: var(--brown-800);
  padding: 36px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.order-card-header h2 {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 400;
  color: var(--beige-100); letter-spacing: -.3px;
}
.order-card-header p {
  font-size: 13px; color: var(--beige-300); margin-top: 6px; font-weight: 300;
}
.order-step-indicator {
  display: flex; gap: 6px;
}
.step-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); transition: all .3s;
}
.step-dot.active { background: var(--gold); transform: scale(1.3); }

.order-body { padding: 48px; }

/* Form styles */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 10px; letter-spacing: 2.5px;
  color: var(--beige-400); font-weight: 600;
  text-transform: uppercase; margin-bottom: 9px;
}
.form-group input, .form-group select {
  width: 100%; padding: 14px 18px;
  background: var(--beige-50);
  border: 1.5px solid var(--beige-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14.5px;
  color: var(--text-main);
  transition: all var(--transition); outline: none;
  appearance: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--beige-300);
  background: white;
  box-shadow: 0 0 0 4px rgba(192,155,119,.1);
}
.form-group input.error { border-color: var(--error); background: #fef2f2; }
.field-error {
  font-size: 11.5px; color: var(--error);
  margin-top: 5px; display: none;
}
.field-error.show { display: block; }

/* Product chooser */
.product-chooser { margin-bottom: 32px; }
.product-chooser-title {
  font-size: 10px; letter-spacing: 2.5px; color: var(--beige-400);
  font-weight: 600; text-transform: uppercase; margin-bottom: 16px;
}
.product-option {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  border: 1.5px solid var(--beige-100);
  border-radius: var(--radius-md); margin-bottom: 12px;
  cursor: none; transition: all var(--transition);
  background: var(--beige-50);
}
.product-option:hover { border-color: var(--beige-300); background: white; }
.product-option.selected {
  border-color: var(--brown-600);
  background: white;
  box-shadow: 0 0 0 1px var(--brown-600);
}
.product-option input[type=checkbox] { display: none; }
.product-check {
  width: 22px; height: 22px; border-radius: 6px;
  border: 2px solid var(--beige-300);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--transition);
  color: white; font-size: 13px;
}
.product-option.selected .product-check {
  background: var(--brown-700); border-color: var(--brown-700);
}
.product-option-info { flex: 1; }
.product-option-name {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500; color: var(--brown-800);
}
.product-option-price {
  font-size: 12px; color: var(--text-muted); margin-top: 2px;
}
.product-qty {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--beige-200); border-radius: var(--radius-sm);
  overflow: hidden; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.product-option.selected .product-qty { opacity: 1; pointer-events: all; }
.qty-btn {
  width: 36px; height: 36px; border: none;
  background: var(--beige-100); color: var(--brown-700);
  font-size: 18px; cursor: none;
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
  font-weight: 300;
}
.qty-btn:hover { background: var(--beige-200); }
.qty-val {
  width: 36px; text-align: center; font-size: 14px;
  font-weight: 600; color: var(--brown-800);
  background: white; line-height: 36px;
}

/* Order summary */
.order-summary {
  background: var(--beige-50);
  border: 1.5px solid var(--beige-100);
  border-radius: var(--radius-md);
  padding: 24px; margin-bottom: 32px;
}
.summary-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; font-size: 14px; color: var(--text-muted);
  border-bottom: 1px solid var(--beige-100);
}
.summary-row:last-child { border-bottom: none; }
.summary-row.total {
  font-size: 16px; font-weight: 600; color: var(--brown-800);
  margin-top: 4px;
}
.summary-row.total .val {
  font-family: var(--font-display); font-size: 22px; color: var(--brown-700);
}
#summary-empty {
  text-align: center; color: var(--beige-400);
  font-size: 13px; padding: 8px 0;
}

/* Submit btn */
.btn-submit {
  width: 100%; padding: 18px;
  background: var(--brown-700); color: var(--beige-100);
  border: none; border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 13px;
  font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; cursor: none;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.btn-submit:hover:not(:disabled) {
  background: var(--brown-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(50,31,16,.25);
}
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.btn-submit .spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: white;
  border-radius: 50%; display: none;
  animation: spin .7s linear infinite;
}
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-footer {
  text-align: center; margin-top: 16px;
  font-size: 11.5px; color: var(--text-muted);
}
.form-footer a { color: var(--brown-600); text-decoration: none; }

/* ── Error Banner ──────────────────────────────────────── */
.form-errors {
  background: #fef2f2; border: 1px solid #fca5a5;
  border-radius: var(--radius-sm); padding: 14px 18px;
  margin-bottom: 24px; display: none;
}
.form-errors ul { padding-left: 18px; }
.form-errors li { font-size: 13px; color: #991b1b; line-height: 1.8; }

/* ── Testimonials ──────────────────────────────────────── */
.testimonials-section {
  padding: 100px 60px;
  background: var(--brown-800); overflow: hidden;
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-label { justify-content: center; color: var(--gold); }
.testimonials-header .section-label::before { background: rgba(201,169,110,.3); }
.testimonials-header .section-title { color: var(--beige-100); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; max-width: 1100px; margin: 0 auto;
}
.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-4px);
}
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-family: var(--font-display); font-style: italic;
  font-size: 17px; line-height: 1.65;
  color: var(--beige-200); margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--beige-300), var(--brown-500));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 17px;
  color: white; font-weight: 500;
}
.author-name { font-size: 13px; font-weight: 600; color: var(--beige-100); }
.author-loc  { font-size: 11px; color: var(--beige-400); margin-top: 2px; }

/* ── Footer ────────────────────────────────────────────── */
footer {
  background: var(--brown-900);
  padding: 60px 60px 40px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap; gap: 24px;
}
.footer-brand .name {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  letter-spacing: 6px; color: var(--beige-100);
}
.footer-brand .tagline {
  font-size: 10px; letter-spacing: 3px;
  color: var(--beige-400); margin-top: 4px;
}
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a {
  font-size: 11px; letter-spacing: 1.5px; font-weight: 600;
  text-transform: uppercase; color: var(--beige-400);
  text-decoration: none; transition: color var(--transition);
}
.footer-links a:hover { color: var(--beige-100); }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-size: 11.5px; color: rgba(255,255,255,.3);
}

/* ── Thank You Page ────────────────────────────────────── */
.thankyou-body { background: var(--brown-800); min-height: 100vh; }
.thankyou-wrap {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 30px; text-align: center;
}
.thankyou-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(201,169,110,.15);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; margin: 0 auto 32px;
  animation: popIn .5s .1s both cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.5); }
  to   { opacity: 1; transform: scale(1); }
}
.thankyou-num {
  font-size: 10px; letter-spacing: 3px; color: var(--gold);
  font-weight: 600; text-transform: uppercase; margin-bottom: 16px;
}
.thankyou-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400; color: var(--beige-100);
  line-height: 1.1; margin-bottom: 20px;
}
.thankyou-title em { font-style: italic; color: var(--gold); }
.thankyou-desc {
  font-size: 15px; color: var(--beige-300);
  max-width: 480px; line-height: 1.75; margin-bottom: 48px;
}
.thankyou-details {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 32px 40px;
  margin-bottom: 40px; min-width: 320px;
}
.detail-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
}
.detail-row:last-child { border: none; }
.detail-row .lbl { color: var(--beige-400); }
.detail-row .val { color: var(--beige-100); font-weight: 600; }
.btn-back {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--gold); color: var(--brown-900);
  border-radius: var(--radius-sm); font-weight: 600;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; transition: all var(--transition);
}
.btn-back:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── Scroll reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; padding: 100px 40px 60px; }
  .hero-visual { order: -1; }
  .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .ingredients-grid { grid-template-columns: 1fr; gap: 48px; }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .products-section, .how-section, .order-section, .testimonials-section { padding: 80px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .order-body { padding: 28px 24px; }
  .order-card-header { padding: 28px 24px; }
  .benefits-strip { padding: 18px 24px; gap: 28px; }
  footer { padding: 40px 24px; }
  .footer-top { flex-direction: column; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* ── Loading skeleton ──────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--beige-100) 25%, var(--beige-200) 50%, var(--beige-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { to { background-position: -200% 0; } }
