:root {
  --color-primary: #1C1917;
  --color-secondary: #2C2825;
  --color-accent: #D4B896;
  --color-bg-light: #FDFCFB;
  --color-bg-alt: #F9F5F0;
}

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { font-family: 'Manrope', system-ui, sans-serif; }

/* ─── Button resets ─── */
button, .btn, [class*="btn-"], a[href="#order_form"] {
  white-space: nowrap;
  min-width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

form button[type="submit"] {
  white-space: normal;
  width: 100%;
  display: flex;
}

/* ─── Animations (gated — bots/preview see full content) ─── */
html.js-anim html.js-anim html.js-anim [data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

html.js-anim html.js-anim html.js-anim [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.js-anim [data-animate][data-delay="100"] { transition-delay: 0.1s; }
html.js-anim [data-animate][data-delay="200"] { transition-delay: 0.2s; }
html.js-anim [data-animate][data-delay="300"] { transition-delay: 0.3s; }
html.js-anim [data-animate][data-delay="400"] { transition-delay: 0.4s; }
html.js-anim [data-animate][data-delay="500"] { transition-delay: 0.5s; }

/* ─── Rotate utility ─── */
.rotate-180 { transform: rotate(180deg); }

/* ─── Decorative patterns ─── */
.decor-grid-dots {
  background-image: radial-gradient(circle, rgba(212,184,150,0.4) 1px, transparent 1px);
  background-size: 24px 24px;
}

.decor-grid-lines {
  background-image:
    linear-gradient(rgba(212,184,150,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,184,150,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
}

.decor-diagonal {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(212,184,150,0.08) 20px,
    rgba(212,184,150,0.08) 21px
  );
}

.decor-mesh {
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(212,184,150,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(28,25,23,0.08) 0%, transparent 50%);
}

/* Intensity modifiers */
.decor-subtle { opacity: 0.5; }
.decor-moderate { opacity: 0.75; }
.decor-bold { opacity: 1; }

/* Gradient blur blobs */
.decor-gradient-blur::before,
.decor-gradient-blur::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.decor-gradient-blur::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,184,150,0.25) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.decor-gradient-blur::after {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(28,25,23,0.12) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}

/* Corner accents */
.decor-corner-tr::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: linear-gradient(225deg, rgba(212,184,150,0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.decor-corner-bl::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 200px; height: 200px;
  background: linear-gradient(45deg, rgba(212,184,150,0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Glow element */
.decor-glow-element {
  position: relative;
}
.decor-glow-element::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(212,184,150,0.3) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
}

/* ─── Star rating ─── */
.stars {
  display: inline-flex;
  gap: 2px;
  color: #D4B896;
}

/* ─── Order form ─── */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 9999px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.9rem;
  background: #fff;
  color: #1C1917;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: #D4B896;
  box-shadow: 0 0 0 3px rgba(212,184,150,0.15);
}
.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.form-error {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  padding-left: 1rem;
  display: none;
}
.form-error.visible { display: block; }

/* ─── FAQ cards ─── */
.faq-card {
  background: var(--color-bg-alt);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(212,184,150,0.2);
}

/* ─── Testimonial cards ─── */
.testimonial-card {
  background: var(--color-bg-alt);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(212,184,150,0.15);
}

/* ─── Accent gradient text ─── */
.text-gradient {
  background: linear-gradient(135deg, #D4B896 0%, #b8956e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Section dividers ─── */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #D4B896, #b8956e);
  border-radius: 9999px;
  margin: 1rem auto;
}

/* ─── Product badge ─── */
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(212,184,150,0.15);
  border: 1px solid rgba(212,184,150,0.4);
  color: #b8956e;
}

/* ─── Trust bar ─── */
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6b7280;
}

/* ─── Ingredient card ─── */
.ingredient-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(212,184,150,0.2);
  box-shadow: 0 2px 8px rgba(28,25,23,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.ingredient-card:hover {
  box-shadow: 0 8px 24px rgba(28,25,23,0.1);
  transform: translateY(-2px);
}

/* ─── Benefit card ─── */
.benefit-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(212,184,150,0.15);
  box-shadow: 0 2px 8px rgba(28,25,23,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover {
  box-shadow: 0 8px 20px rgba(28,25,23,0.1);
  transform: translateY(-2px);
}

/* ─── Step connector ─── */
.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4B896, #b8956e);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F9F5F0; }
::-webkit-scrollbar-thumb { background: #D4B896; border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: #b8956e; }

/* ─── Mobile menu transition ─── */
#mobile-menu {
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}