:root {
  --color-primary: #1A1A2E;
  --color-secondary: #2D2D44;
  --color-accent: #FF6B35;
  --color-bg-light: #FFF7ED;
  --color-bg-alt: #FFEDD5;
}

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

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

/* ===== BUTTON FIXES ===== */
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 ===== */
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 [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; }

/* ===== UTILITY ===== */
.rotate-180 {
  transform: rotate(180deg);
}

/* ===== DECORATIVE BACKGROUNDS ===== */
.decor-grid-dots {
  background-image: radial-gradient(circle, rgba(255,107,53,0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}

.decor-grid-lines {
  background-image:
    linear-gradient(rgba(255,107,53,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.decor-diagonal {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,107,53,0.05) 10px,
    rgba(255,107,53,0.05) 11px
  );
}

.decor-mesh {
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(255,107,53,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26,26,46,0.08) 0%, transparent 60%);
}

/* ===== INTENSITY MODIFIERS ===== */
.decor-subtle { opacity: 0.5; }
.decor-moderate { opacity: 0.75; }
.decor-bold { opacity: 1; }

/* ===== GRADIENT BLUR BLOBS ===== */
.decor-gradient-blur::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,107,53,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.decor-gradient-blur::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(26,26,46,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ===== CORNER ACCENTS ===== */
.decor-corner-tr::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: linear-gradient(225deg, rgba(255,107,53,0.15), transparent);
  border-radius: 0 0 0 100%;
  pointer-events: none;
}

.decor-corner-bl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 160px;
  height: 160px;
  background: linear-gradient(45deg, rgba(255,107,53,0.10), transparent);
  border-radius: 0 100% 0 0;
  pointer-events: none;
}

/* ===== GLOW ELEMENT ===== */
.decor-glow-element {
  position: relative;
}

.decor-glow-element::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(255,107,53,0.22) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/* ===== STAR RATING ===== */
.star-filled { color: #F59E0B; }
.star-empty { color: #D1D5DB; }

/* ===== ORDER FORM ===== */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  outline: none;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.form-input:focus {
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

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

.form-error {
  color: #EF4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.form-error.visible {
  display: block;
}

/* ===== FAQ ACCORDION ===== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

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

/* ===== HERO GRADIENT ===== */
.hero-bg {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 60%, #1A1A2E 100%);
}

/* ===== SECTION HIGHLIGHT ===== */
.section-accent-line {
  width: 60px;
  height: 4px;
  background: #FF6B35;
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

/* ===== INGREDIENT CARD HOVER ===== */
.ingredient-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.10);
}

/* ===== MOBILE MENU TRANSITION ===== */
#mobile-menu {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* ===== PROGRESS BAR (reviews) ===== */
.progress-bar {
  height: 6px;
  border-radius: 3px;
  background: #E5E7EB;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: #FF6B35;
  transition: width 0.8s ease;
}

/* ===== BADGE ===== */
.badge-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 107, 53, 0.12);
  color: #FF6B35;
  border: 1px solid rgba(255,107,53,0.25);
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #FF6B35; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #e05520; }

/* ===== PRINT ===== */
@media print {
  header, footer, #cookie-consent { display: none !important; }
}