:root{
  --color-primary:#2C3E50;
  --color-secondary:#3D5266;
  --color-accent:#48C9B0;
  --bg-light:#F0FDFA;
  --bg-alt:#CCFBF1;
}

html{scroll-behavior:smooth;scroll-padding-top:6.5rem;}
body{font-family:'Nunito Sans',system-ui,sans-serif;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}

::selection{background:rgba(72,201,176,.22);}

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

a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:2px solid rgba(72,201,176,.7);
  outline-offset:2px;
  border-radius:.75rem;
}

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

/* Decorative patterns */
.decor-grid-dots{
  background-image:radial-gradient(rgba(44,62,80,.12) 1px, transparent 1px);
  background-size:18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(44,62,80,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(44,62,80,.08) 1px, transparent 1px);
  background-size:38px 38px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(72,201,176,.12) 0, rgba(72,201,176,.12) 8px, transparent 8px, transparent 18px);
}
.decor-mesh{
  background:
    radial-gradient(70% 60% at 20% 10%, rgba(72,201,176,.22), transparent 55%),
    radial-gradient(70% 60% at 90% 30%, rgba(44,62,80,.18), transparent 55%),
    radial-gradient(70% 60% at 50% 100%, rgba(61,82,102,.14), transparent 55%);
}
.decor-gradient-blur{position:relative;}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:auto;
  width:420px;height:420px;
  filter:blur(60px);
  opacity:.45;
  border-radius:9999px;
  pointer-events:none;
}
.decor-gradient-blur::before{
  top:-140px;left:-160px;
  background:radial-gradient(circle at 30% 30%, rgba(72,201,176,.55), transparent 60%);
}
.decor-gradient-blur::after{
  bottom:-160px;right:-160px;
  background:radial-gradient(circle at 30% 30%, rgba(44,62,80,.40), transparent 60%);
}
.decor-glow-element{position:relative;}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:-18px;
  background:radial-gradient(closest-side, rgba(72,201,176,.22), transparent 70%);
  filter:blur(16px);
  opacity:.9;
  border-radius:2rem;
  pointer-events:none;
  z-index:-1;
}

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

/* Animation system (slide_right) */
[data-animate]{
  opacity:0;
  transform:translateX(-32px);
  transition:opacity .6s ease-out, transform .6s ease-out;
  will-change:opacity, transform;
}
[data-animate].is-visible{
  opacity:1;
  transform:translateX(0);
}

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

/* Premium micro-details */
.card-shine{position:relative;overflow:hidden;}
.card-shine::after{
  content:"";
  position:absolute;
  top:-60%;
  left:-40%;
  width:60%;
  height:220%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform:rotate(18deg);
  opacity:.0;
  transition:opacity .25s ease, transform .8s ease;
  pointer-events:none;
}
.card-shine:hover::after{
  opacity:.45;
  transform:rotate(18deg) translateX(240%);
}

/* Small helpers */
.shadow-soft{box-shadow:0 10px 30px rgba(17,24,39,.08);}
.text-balance{text-wrap:balance;}