:root{
  --color-primary:#1A1625;
  --color-secondary:#2E2540;
  --color-accent:#7C3AED;
}

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

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%
}

[data-animate]{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .6s ease-out,transform .6s ease-out
}
[data-animate].is-visible{
  opacity:1;
  transform:translateY(0)
}

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

:focus-visible{outline:none}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  box-shadow:0 0 0 3px rgba(124,58,237,.25)
}

/* Premium decorative layers (subtle, reusable) */
.decor-grid-dots{
  background-image:radial-gradient(rgba(124,58,237,.20) 1px,transparent 1px);
  background-size:18px 18px;
}
.decor-grid-lines{
  background-image:linear-gradient(to right, rgba(124,58,237,.10) 1px, transparent 1px),
                   linear-gradient(to bottom, rgba(124,58,237,.10) 1px, transparent 1px);
  background-size:48px 48px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(124,58,237,.12) 0, rgba(124,58,237,.12) 1px, transparent 1px, transparent 12px);
}
.decor-mesh{
  background:
    radial-gradient(900px circle at 10% 10%, rgba(124,58,237,.22), transparent 55%),
    radial-gradient(800px circle at 90% 15%, rgba(237,233,254,.75), transparent 52%),
    radial-gradient(900px circle at 70% 90%, rgba(124,58,237,.16), transparent 55%),
    radial-gradient(700px circle at 10% 90%, rgba(46,37,64,.18), transparent 55%);
}

.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  filter:blur(60px);
  opacity:.35;
  border-radius:9999px;
  pointer-events:none;
}
.decor-gradient-blur::before{
  top:-220px;
  left:-220px;
  background:radial-gradient(circle at 30% 30%, rgba(124,58,237,.9), transparent 60%);
}
.decor-gradient-blur::after{
  bottom:-260px;
  right:-260px;
  background:radial-gradient(circle at 30% 30%, rgba(237,233,254,.95), transparent 60%);
}

.decor-corner-tr{position:relative}
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:160px;
  height:160px;
  background:linear-gradient(135deg, rgba(124,58,237,.25), transparent 70%);
  border-bottom-left-radius:48px;
  pointer-events:none;
}

.decor-corner-bl{position:relative}
.decor-corner-bl::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:160px;
  height:160px;
  background:linear-gradient(315deg, rgba(124,58,237,.22), transparent 70%);
  border-top-right-radius:48px;
  pointer-events:none;
}

.decor-glow-element{position:relative}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:-12%;
  background:radial-gradient(circle at 50% 50%, rgba(124,58,237,.22), transparent 62%);
  filter:blur(18px);
  z-index:-1;
  pointer-events:none;
}

.decor-subtle{opacity:.06}
.decor-moderate{opacity:.10}
.decor-bold{opacity:.18}

/* Cookie banner motion */
#cookie-consent{transition:transform .25s ease, opacity .25s ease}
#cookie-consent.is-open{display:block}

/* Form error styles */
.field-error{
  border-color:rgba(239,68,68,.55) !important;
  box-shadow:0 0 0 3px rgba(239,68,68,.12) !important;
}
.form-alert{
  border:1px solid rgba(239,68,68,.25);
  background:rgba(254,242,242,.85);
  color:#7f1d1d;
}

/* Micro polish */
.text-balance{text-wrap:balance}
.backdrop-blur-md{backdrop-filter:blur(12px)}