:root {
  --color-primary: #1B4332;
  --color-secondary: #2D6A4F;
  --color-accent: #40C057;
}

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

::selection { background: rgba(64, 192, 87, 0.25); }

/* 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%;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(64, 192, 87, 0.35);
  border-radius: 9999px;
}

[data-animate] {
  opacity: 1;
  transform: none;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* Premium decorative utilities (lightweight) */
.decor-grid-dots {
  background-image: radial-gradient(rgba(27, 67, 50, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
}
.decor-grid-lines {
  background-image:
    linear-gradient(to right, rgba(27, 67, 50, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(27, 67, 50, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}
.decor-diagonal {
  background-image: repeating-linear-gradient(135deg, rgba(64, 192, 87, 0.12) 0 10px, rgba(64, 192, 87, 0.0) 10px 20px);
}
.decor-mesh {
  background:
    radial-gradient(900px 600px at 15% 15%, rgba(64, 192, 87, 0.22), transparent 55%),
    radial-gradient(800px 520px at 85% 20%, rgba(45, 106, 79, 0.18), transparent 55%),
    radial-gradient(900px 640px at 55% 85%, rgba(27, 67, 50, 0.18), transparent 55%);
}
.decor-gradient-blur::before,
.decor-gradient-blur::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  filter: blur(60px);
  opacity: 0.28;
  pointer-events: none;
  border-radius: 9999px;
}
.decor-gradient-blur::before {
  left: -180px;
  top: -220px;
  background: rgba(64, 192, 87, 0.65);
}
.decor-gradient-blur::after {
  right: -220px;
  bottom: -240px;
  background: rgba(27, 67, 50, 0.65);
}

.decor-subtle { opacity: 0.06; }
.decor-moderate { opacity: 0.10; }
.decor-bold { opacity: 0.18; }

/* Small utility for "glass" cards when used */
.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

input[type="checkbox"].sr-only:focus + div {
  box-shadow: 0 0 0 4px rgba(64, 192, 87, 0.25);
}

#cookie-consent.hidden { display: none; }