:root{
  --color-primary:#2D3A2D;
  --color-secondary:#4A5D4A;
  --color-accent:#9C27B0;
  --color-bg-light:#FAF5FF;
  --color-bg-alt:#F3E8FF;
}

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: fade_in (context) */
[data-animate]{
  opacity:0;
  transition:opacity .5s ease-out;
  will-change:opacity
}
[data-animate].is-visible{opacity:1}
.rotate-180{transform:rotate(180deg)}

/* Premium focus ring */
:focus-visible{
  outline:2px solid rgba(156,39,176,.5);
  outline-offset:3px
}

/* Decorative patterns */
.decor-grid-dots{
  background-image:radial-gradient(rgba(156,39,176,.25) 1px, transparent 1px);
  background-size:18px 18px
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(45,58,45,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(45,58,45,.08) 1px, transparent 1px);
  background-size:36px 36px
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(156,39,176,.10) 0, rgba(156,39,176,.10) 8px, transparent 8px, transparent 20px)
}
.decor-mesh{
  background:
    radial-gradient(700px 400px at 10% 10%, rgba(156,39,176,.28), transparent 60%),
    radial-gradient(700px 400px at 90% 20%, rgba(74,93,74,.25), transparent 60%),
    radial-gradient(800px 450px at 50% 100%, rgba(243,232,255,.16), transparent 55%)
}

/* intensity */
.decor-subtle{opacity:.06}
.decor-moderate{opacity:.12}
.decor-bold{opacity:.2}

/* Accent elements */
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  filter:blur(60px);
  opacity:.25;
  z-index:0;
  pointer-events:none
}
.decor-gradient-blur::before{
  left:-180px; top:-180px;
  background:radial-gradient(circle, rgba(156,39,176,.7) 0, transparent 60%)
}
.decor-gradient-blur::after{
  right:-200px; bottom:-200px;
  background:radial-gradient(circle, rgba(74,93,74,.6) 0, transparent 62%)
}
.decor-corner-tr{
  position:relative
}
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:-1px; right:-1px;
  width:120px; height:120px;
  background:radial-gradient(circle at top right, rgba(156,39,176,.35), transparent 70%);
  pointer-events:none
}
.decor-corner-bl{
  position:relative
}
.decor-corner-bl::after{
  content:"";
  position:absolute;
  bottom:-1px; left:-1px;
  width:140px; height:140px;
  background:radial-gradient(circle at bottom left, rgba(45,58,45,.25), transparent 70%);
  pointer-events:none
}
.decor-glow-element{
  position:relative
}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:-20px;
  background:radial-gradient(circle at 50% 50%, rgba(156,39,176,.22), transparent 60%);
  filter:blur(18px);
  z-index:-1
}

/* Form helpers */
.input-error{
  border-color:rgba(220,38,38,.6)!important;
  box-shadow:0 0 0 3px rgba(220,38,38,.15)!important
}
.help-error{
  color:rgb(220,38,38);
  font-size:.875rem
}

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