:root {
  --color-primary: #3D2914;
  --color-secondary: #5C4020;
  --color-accent: #FF8C00;
  --color-bg-light: #FFFBF0;
  --color-bg-alt: #FEF0C7;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: 'Work Sans', system-ui, sans-serif;
}

/* ── Button baseline ── */
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;
}

/* ── Scroll animations ── */
html.js-anim html.js-anim html.js-anim [data-animate] {
  opacity: 0;
  transform: translateX(2rem);
  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: translateX(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; }

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

/* ── Decorative patterns ── */
.decor-grid-dots {
  background-image: radial-gradient(circle, #3D2914 1px, transparent 1px);
  background-size: 24px 24px;
}

.decor-grid-lines {
  background-image:
    linear-gradient(to right, #3D2914 1px, transparent 1px),
    linear-gradient(to bottom, #3D2914 1px, transparent 1px);
  background-size: 32px 32px;
}

.decor-diagonal {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    #FF8C00 8px,
    #FF8C00 9px
  );
}

.decor-mesh {
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(255,140,0,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(61,41,20,0.1) 0%, transparent 50%);
}

.decor-subtle   { opacity: 0.05; }
.decor-moderate { opacity: 0.10; }
.decor-bold     { opacity: 0.20; }

.decor-gradient-blur::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,0.25) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.decor-corner-tr::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, transparent 50%, rgba(255,140,0,0.12) 100%);
  pointer-events: none;
}

.decor-corner-bl::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(315deg, transparent 50%, rgba(61,41,20,0.08) 100%);
  pointer-events: none;
}

.decor-glow-element {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,0.18) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

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

/* ── Order form ── */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  color: #111827;
}

.form-input:focus {
  outline: none;
  border-color: #FF8C00;
  box-shadow: 0 0 0 3px rgba(255,140,0,0.15);
}

.form-input.error {
  border-color: #ef4444;
}

.form-error-msg {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* ── FAQ accordion ── */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  max-height: 500px;
}

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

/* ── Ingredient card ── */
.ingredient-card {
  background: #FFFBF0;
  border: 1.5px solid #FEF0C7;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.ingredient-card:hover {
  box-shadow: 0 8px 24px rgba(61,41,20,0.12);
  transform: translateY(-3px);
}

/* ── Testimonial card ── */
.testimonial-card {
  background: #fff;
  border: 1.5px solid #f3f4f6;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(61,41,20,0.10);
}

/* ── Benefit card ── */
.benefit-card {
  background: #FFFBF0;
  border: 1.5px solid #FEF0C7;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow 0.25s;
}

.benefit-card:hover {
  box-shadow: 0 6px 20px rgba(255,140,0,0.12);
}

.benefit-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #FF8C00, #e67e00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

/* ── Price display ── */
.price-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3D2914;
  line-height: 1;
}

.price-old {
  font-size: 1.1rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.price-save {
  font-size: 0.85rem;
  color: #16a34a;
  font-weight: 600;
}

/* ── Section heading accent ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: #FEF0C7;
  color: #5C4020;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ── Process step ── */
.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF8C00, #e67e00);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,140,0,0.35);
}

/* ── Guarantee badge ── */
.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #FFFBF0;
  border: 1.5px solid #FEF0C7;
  border-radius: 0.75rem;
}

/* ── Loading spinner ── */
.spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Mobile menu transition ── */
#mobile-menu {
  transition: opacity 0.2s ease;
}

/* ── Responsive tweaks ── */
@media (max-width: 640px) {
  .price-main { font-size: 2rem; }
}