:root{
  --color-primary:#1B4332;
  --color-secondary:#2D6A4F;
  --color-accent:#40C057;
  --color-bg-light:#F0FDF4;
  --color-bg-alt:#DCFCE7;
}

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { font-family: 'Manrope', system-ui, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

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

/* Scroll animations */
[data-animate]{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease-out, transform .6s ease-out;
  will-change: opacity, transform;
}
[data-animate].is-visible{
  opacity: 1;
  transform: translateY(0);
}
.rotate-180 { transform: rotate(180deg); }

/* Decorative backgrounds */
.decor-grid-dots{
  background-image: radial-gradient(rgba(27,67,50,.18) 1px, transparent 1px);
  background-size: 18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(27,67,50,.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(27,67,50,.12) 1px, transparent 1px);
  background-size: 26px 26px;
}
.decor-diagonal{
  background-image: repeating-linear-gradient(135deg, rgba(64,192,87,.12), rgba(64,192,87,.12) 10px, transparent 10px, transparent 22px);
}
.decor-mesh{
  background:
    radial-gradient(800px 400px at 15% 20%, rgba(64,192,87,.20), transparent 60%),
    radial-gradient(700px 380px at 80% 10%, rgba(45,106,79,.22), transparent 62%),
    radial-gradient(720px 420px at 55% 85%, rgba(27,67,50,.22), transparent 65%);
}

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

/* Accent elements */
.decor-gradient-blur{
  position: relative;
  isolation: isolate;
}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content: "";
  position: absolute;
  z-index: -1;
  filter: blur(42px);
  opacity: .22;
  border-radius: 9999px;
}
.decor-gradient-blur::before{
  width: 320px; height: 320px;
  left: -120px; top: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(64,192,87,.9), transparent 60%);
}
.decor-gradient-blur::after{
  width: 420px; height: 420px;
  right: -160px; bottom: -200px;
  background: radial-gradient(circle at 40% 40%, rgba(45,106,79,.9), transparent 62%);
}

.decor-corner-tr, .decor-corner-bl{
  position: relative;
  overflow: hidden;
}
.decor-corner-tr::before{
  content:"";
  position:absolute;
  top:-120px; right:-120px;
  width:240px; height:240px;
  background: radial-gradient(circle at 30% 30%, rgba(64,192,87,.35), transparent 65%);
  transform: rotate(12deg);
  pointer-events:none;
}
.decor-corner-bl::after{
  content:"";
  position:absolute;
  bottom:-140px; left:-140px;
  width:280px; height:280px;
  background: radial-gradient(circle at 45% 45%, rgba(45,106,79,.28), transparent 66%);
  transform: rotate(-10deg);
  pointer-events:none;
}

.decor-glow-element{
  position: relative;
}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:-40px;
  background: radial-gradient(circle at 50% 50%, rgba(64,192,87,.25), transparent 60%);
  filter: blur(24px);
  z-index:-1;
  pointer-events:none;
}

/* Rings SVG helper */
.decor-rings-svg{
  position: relative;
}
.decor-rings-svg::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("assets/img/rings.svg");
  background-size: cover;
  background-position: center;
  opacity: .08;
  pointer-events:none;
}

/* Slider utilities (generic) */
.slider-track{
  display:flex;
  gap: 1rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar{ display:none; }
.slide{
  scroll-snap-align: start;
  flex: 0 0 auto;
}

/* Focus styles */
:focus-visible{
  outline: 3px solid rgba(64,192,87,.35);
  outline-offset: 3px;
  border-radius: 12px;
}