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

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

body{
  font-family:'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Focus */
:where(a, button, input, textarea, select):focus-visible{
  outline:2px solid color-mix(in oklab, var(--color-accent) 70%, white);
  outline-offset:2px;
  border-radius:0.5rem;
}

/* 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:0.5rem;
}

form button[type="submit"]{
  white-space:normal;
  width:100%;
}

/* Inputs */
input[type="text"], input[type="email"], input[type="tel"], textarea, select{
  -webkit-appearance:none;
  appearance:none;
}

/* Animations (context: zoom_in) */
[data-animate]{
  opacity:0;
  transform:scale(0.95);
  transition:all 500ms ease-out;
}

[data-animate].is-visible{
  opacity:1;
  transform:scale(1);
}

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

/* Premium underline */
.link-underline{
  background-image:linear-gradient(to right, currentColor, currentColor);
  background-position:0 100%;
  background-repeat:no-repeat;
  background-size:0% 2px;
  transition:background-size 200ms ease;
}
.link-underline:hover{ background-size:100% 2px; }

/* Decorative backgrounds */
.decor-grid-dots{
  background-image:radial-gradient(circle at 1px 1px, rgba(17,24,39,.18) 1px, transparent 0);
  background-size:18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(17,24,39,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17,24,39,.10) 1px, transparent 1px);
  background-size:44px 44px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(17,24,39,.10) 0, rgba(17,24,39,.10) 1px, transparent 1px, transparent 12px);
}
.decor-mesh{
  background-image:
    radial-gradient(800px 400px at 15% 10%, rgba(255,179,0,.18), transparent 60%),
    radial-gradient(700px 450px at 90% 20%, rgba(74,107,74,.16), transparent 60%),
    radial-gradient(700px 500px at 60% 95%, rgba(47,79,47,.18), transparent 60%);
}

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

/* Glow blob behind product */
.decor-gradient-blur{
  position:relative;
}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:auto;
  width:380px;
  height:380px;
  filter:blur(50px);
  opacity:.22;
  z-index:0;
  border-radius:9999px;
  pointer-events:none;
}
.decor-gradient-blur::before{
  top:-120px;
  left:-120px;
  background:radial-gradient(circle at 30% 30%, rgba(255,179,0,.95), transparent 65%);
}
.decor-gradient-blur::after{
  bottom:-140px;
  right:-140px;
  background:radial-gradient(circle at 40% 40%, rgba(47,79,47,.9), transparent 65%);
}

/* Corner accents */
.decor-corner-tr{
  position:relative;
}
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:160px;
  height:160px;
  background:radial-gradient(circle at 100% 0%, rgba(255,179,0,.35), transparent 60%);
  pointer-events:none;
}
.decor-corner-bl{
  position:relative;
}
.decor-corner-bl::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:180px;
  height:180px;
  background:radial-gradient(circle at 0% 100%, rgba(74,107,74,.28), transparent 62%);
  pointer-events:none;
}

/* Rings SVG container (optional utility) */
.decor-rings-svg{
  background-image:
    radial-gradient(circle at center, transparent 0 44%, rgba(17,24,39,.06) 44% 45%, transparent 45% 58%, rgba(17,24,39,.05) 58% 59%, transparent 59% 72%, rgba(17,24,39,.04) 72% 73%, transparent 73% 100%);
}

/* Header shadow on scroll */
.header-elevated{
  box-shadow:0 10px 30px rgba(17,24,39,.08);
}

/* Subtle separator */
.hr-soft{
  height:1px;
  background:linear-gradient(to right, transparent, rgba(17,24,39,.12), transparent);
}

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