:root{
  --color-primary:#1A1A2E;
  --color-secondary:#2D2D44;
  --color-accent:#FF6B35;
}

html{scroll-behavior:smooth;scroll-padding-top:5rem}
body{font-family:'Space Grotesk',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:.5rem;
}
form button[type="submit"]{white-space:normal;width:100%}

/* Animation helpers (Tailwind classes are applied via JS) */
[data-animate]{will-change:transform,opacity}
.rotate-180{transform:rotate(180deg)}

/* Decorative backgrounds */
.decor-grid-dots{
  background-image:radial-gradient(rgba(26,26,46,.14) 1px, transparent 1px);
  background-size:16px 16px;
}
.decor-grid-lines{
  background-image:linear-gradient(to right, rgba(26,26,46,.08) 1px, transparent 1px),
                   linear-gradient(to bottom, rgba(26,26,46,.08) 1px, transparent 1px);
  background-size:32px 32px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(45deg, rgba(255,107,53,.12), rgba(255,107,53,.12) 2px, transparent 2px, transparent 12px);
}
.decor-mesh{
  background:
    radial-gradient(700px 420px at 20% 10%, rgba(255,107,53,.18), transparent 55%),
    radial-gradient(700px 420px at 85% 15%, rgba(45,45,68,.28), transparent 50%),
    radial-gradient(700px 420px at 35% 90%, rgba(255,237,213,.22), transparent 55%),
    radial-gradient(700px 420px at 90% 85%, rgba(26,26,46,.22), transparent 55%);
  filter:saturate(1.05);
}

.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:520px;height:520px;
  border-radius:999px;
  filter:blur(44px);
  opacity:.18;
  pointer-events:none;
}
.decor-gradient-blur::before{left:-140px;top:-160px;background:var(--color-accent)}
.decor-gradient-blur::after{right:-160px;bottom:-200px;background:var(--color-secondary)}

.decor-corner-tr::after{
  content:"";
  position:absolute;
  right:-80px;top:-80px;
  width:220px;height:220px;
  border-radius:48px;
  background:rgba(255,107,53,.18);
  transform:rotate(12deg);
  pointer-events:none;
}
.decor-corner-bl::after{
  content:"";
  position:absolute;
  left:-90px;bottom:-90px;
  width:260px;height:260px;
  border-radius:56px;
  background:rgba(45,45,68,.18);
  transform:rotate(-10deg);
  pointer-events:none;
}

.decor-glow-element{
  position:absolute;
  width:420px;height:420px;
  background:radial-gradient(circle at 30% 30%, rgba(255,107,53,.30), transparent 60%),
             radial-gradient(circle at 70% 60%, rgba(45,45,68,.22), transparent 55%);
  filter:blur(18px);
  opacity:.8;
  border-radius:999px;
  pointer-events:none;
}

.decor-subtle{opacity:.05}
.decor-moderate{opacity:.10}
.decor-bold{opacity:.20}

/* Cookie banner animation feel */
#cookie-consent{transition:transform .25s ease, opacity .25s ease}
#cookie-consent.is-open{opacity:1;transform:translateY(0)}
#cookie-consent.is-closed{opacity:0;transform:translateY(16px)}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  [data-animate]{transition:none!important}
  #cookie-consent{transition:none}
}