:root {
  --color-primary: #2C3E50;
  --color-secondary: #3D5266;
  --color-accent: #48C9B0;
  --color-bg-light: #F0FDFA;
  --color-bg-alt: #CCFBF1;
}

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

body {
  font-family: 'Urbanist', 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;
}

/* ── Scroll 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-delay="100"] { transition-delay: 0.1s; }
html.js-anim [data-animate-delay="200"] { transition-delay: 0.2s; }
html.js-anim [data-animate-delay="300"] { transition-delay: 0.3s; }
html.js-anim [data-animate-delay="400"] { transition-delay: 0.4s; }
html.js-anim [data-animate-delay="500"] { transition-delay: 0.5s; }

.rotate-180 { transform: rotate(180deg); }

/* ── Decorative Patterns ───────────────────────────── */
.decor-grid-dots {
  background-image: radial-gradient(circle, var(--color-accent) 1px, transparent 1px);
  background-size: 24px 24px;
}

.decor-grid-lines {
  background-image:
    linear-gradient(var(--color-primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-primary) 1px, transparent 1px);
  background-size: 40px 40px;
}

.decor-diagonal {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    var(--color-accent) 10px,
    var(--color-accent) 11px
  );
}

.decor-mesh {
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(72, 201, 176, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(44, 62, 80, 0.1) 0%, transparent 60%);
}

/* Intensity modifiers */
.decor-subtle  { opacity: 0.05; }
.decor-moderate { opacity: 0.1; }
.decor-bold    { opacity: 0.2; }

/* ── Gradient Blobs ────────────────────────────────── */
.decor-gradient-blur::before,
.decor-gradient-blur::after {
  content: '';
  position: absolute;
  border-radius: 9999px;
  filter: blur(60px);
  pointer-events: none;
}

.decor-gradient-blur::before {
  width: 300px;
  height: 300px;
  background: rgba(72, 201, 176, 0.2);
  top: -60px;
  right: -60px;
}

.decor-gradient-blur::after {
  width: 200px;
  height: 200px;
  background: rgba(44, 62, 80, 0.15);
  bottom: -40px;
  left: -40px;
}

/* ── Corner Accents ────────────────────────────────── */
.decor-corner-tr::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(225deg, rgba(72, 201, 176, 0.25) 0%, transparent 70%);
  border-top-right-radius: inherit;
  pointer-events: none;
}

.decor-corner-bl::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, rgba(72, 201, 176, 0.2) 0%, transparent 70%);
  border-bottom-left-radius: inherit;
  pointer-events: none;
}

/* ── Glow Element ──────────────────────────────────── */
.decor-glow-element {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(72, 201, 176, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* ── Rings SVG ─────────────────────────────────────── */
.decor-rings-svg {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 9999px;
  border: 1px solid rgba(72, 201, 176, 0.15);
  box-shadow:
    0 0 0 40px rgba(72, 201, 176, 0.06),
    0 0 0 80px rgba(72, 201, 176, 0.04),
    0 0 0 120px rgba(72, 201, 176, 0.02);
  pointer-events: none;
}

/* ── Rating Stars ──────────────────────────────────── */
.stars {
  display: inline-flex;
  gap: 2px;
  color: #F59E0B;
}

/* ── Form Styles ───────────────────────────────────── */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 9999px;
  font-family: 'Urbanist', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #111827;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: #48C9B0;
  box-shadow: 0 0 0 3px rgba(72, 201, 176, 0.15);
}

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

.form-error {
  color: #EF4444;
  font-size: 0.78rem;
  margin-top: 0.25rem;
  padding-left: 1rem;
  display: none;
}

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

/* ── Card Hover ────────────────────────────────────── */
.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(44, 62, 80, 0.12);
}

/* ── Ingredient Card ───────────────────────────────── */
.ingredient-card {
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(72, 201, 176, 0.15);
}

/* ── Testimonial Border ────────────────────────────── */
.testimonial-minimal {
  border-left: 4px solid #48C9B0;
  padding-left: 1.5rem;
}

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

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

/* ── Section Accent Line ───────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(72, 201, 176, 0.12);
  color: #2aaa96;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
}

/* ── Product Image Float ───────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.img-float {
  animation: float 5s ease-in-out infinite;
}

/* ── Mobile menu open state ────────────────────────── */
#mobile-menu.open {
  display: block;
}

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #48C9B0; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #36b59e; }

/* ── Print ─────────────────────────────────────────── */
@media print {
  header, footer, #cookie-consent { display: none !important; }
  main { padding-top: 0 !important; }
}