:root{
  --color-primary:#2F4F2F;
  --color-secondary:#4A6B4A;
  --color-accent:#FFB300;
}

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

/* Animations */
[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)}

/* Decorative patterns */
.decor-grid-dots{
  background-image:radial-gradient(rgba(47,79,47,.25) 1px, transparent 1px);
  background-size:18px 18px;
  background-position:0 0
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(47,79,47,.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(47,79,47,.10) 1px, transparent 1px);
  background-size:36px 36px
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(255,179,0,.20) 0, rgba(255,179,0,.20) 2px, transparent 2px, transparent 12px)
}
.decor-mesh{
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(255,179,0,.20), transparent 60%),
    radial-gradient(850px 420px at 90% 15%, rgba(74,107,74,.22), transparent 55%),
    radial-gradient(900px 420px at 40% 95%, rgba(47,79,47,.22), transparent 60%)
}

.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:auto;
  width:520px;
  height:520px;
  border-radius:9999px;
  filter:blur(60px);
  opacity:.35;
  pointer-events:none;
  transform:translateZ(0)
}
.decor-gradient-blur::before{
  top:-220px;left:-180px;
  background:radial-gradient(circle at 30% 30%, rgba(255,179,0,.95), rgba(255,179,0,0) 60%)
}
.decor-gradient-blur::after{
  bottom:-260px;right:-200px;
  background:radial-gradient(circle at 30% 30%, rgba(74,107,74,.95), rgba(74,107,74,0) 60%)
}

.decor-corner-tr::before{
  content:"";
  position:absolute;
  top:0;right:0;
  width:180px;height:180px;
  background:radial-gradient(circle at 70% 30%, rgba(255,179,0,.32), transparent 62%);
  pointer-events:none
}
.decor-corner-bl::before{
  content:"";
  position:absolute;
  bottom:0;left:0;
  width:220px;height:220px;
  background:radial-gradient(circle at 30% 70%, rgba(47,79,47,.24), transparent 62%);
  pointer-events:none
}

.decor-glow-element{
  position:absolute;
  width:520px;height:520px;
  border-radius:9999px;
  background:radial-gradient(circle at 40% 30%, rgba(255,179,0,.25), rgba(255,179,0,0) 60%);
  filter:blur(30px);
  pointer-events:none
}

.decor-subtle{opacity:.06}
.decor-moderate{opacity:.12}
.decor-bold{opacity:.20}

/* Form helpers */
.input-error{
  outline:2px solid rgba(239,68,68,.55);
  outline-offset:2px
}
.help-error{
  color:rgb(239,68,68);
  font-size:.875rem
}

/* Better tap targets */
@media (max-width: 768px){
  a,button,input,select,textarea{touch-action:manipulation}
}

/* Small utility for ultra clean containers */
.card-surface{
  background:rgba(255,255,255,.85);
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 18px 48px rgba(17,24,39,.08);
  backdrop-filter:blur(10px)
}