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

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

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

[data-animate]{
  opacity:0;
  transition:opacity .5s ease-out,transform .5s ease-out;
}

[data-animate].is-visible{
  opacity:1;
}

.animation-fade_in{
  transform:translateY(0);
}

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

.focus-ring:focus{
  outline:none;
  box-shadow:0 0 0 4px rgba(72,201,176,.25);
}

.decor-grid-dots{
  background-image:radial-gradient(rgba(44,62,80,.16) 1px, transparent 1px);
  background-size:18px 18px;
}

.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(44,62,80,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(44,62,80,.10) 1px, transparent 1px);
  background-size:44px 44px;
}

.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(72,201,176,.12), rgba(72,201,176,.12) 10px, transparent 10px, transparent 24px);
}

.decor-mesh{
  background:
    radial-gradient(1000px 420px at 10% 0%, rgba(72,201,176,.22), transparent 55%),
    radial-gradient(900px 380px at 85% 20%, rgba(44,62,80,.20), transparent 58%),
    radial-gradient(800px 340px at 50% 100%, rgba(61,82,102,.18), transparent 60%);
}

.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  filter:blur(60px);
  opacity:.35;
  pointer-events:none;
  border-radius:9999px;
}

.decor-gradient-blur::before{
  left:-160px;
  top:-220px;
  background:radial-gradient(circle at 30% 30%, rgba(72,201,176,.55), transparent 60%);
}

.decor-gradient-blur::after{
  right:-180px;
  bottom:-260px;
  background:radial-gradient(circle at 60% 40%, rgba(44,62,80,.55), transparent 60%);
}

.decor-corner-tr::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:140px;
  height:140px;
  background:radial-gradient(circle at 100% 0%, rgba(72,201,176,.22), transparent 70%);
  pointer-events:none;
}

.decor-corner-bl::before{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:160px;
  height:160px;
  background:radial-gradient(circle at 0% 100%, rgba(72,201,176,.20), transparent 70%);
  pointer-events:none;
}

.decor-glow-element{
  position:relative;
}

.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:-24px;
  background:radial-gradient(circle at 50% 50%, rgba(72,201,176,.20), transparent 55%);
  filter:blur(24px);
  pointer-events:none;
  z-index:-1;
}

.decor-rings-svg{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='360' viewBox='0 0 360 360'%3E%3Cg fill='none' stroke='%2348C9B0' stroke-opacity='.18'%3E%3Ccircle cx='180' cy='180' r='48'/%3E%3Ccircle cx='180' cy='180' r='92'/%3E%3Ccircle cx='180' cy='180' r='136'/%3E%3Ccircle cx='180' cy='180' r='170'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:360px 360px;
}

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

#cookie-consent{padding-bottom:max(1rem, env(safe-area-inset-bottom))}
#cookie-modal{padding-bottom:max(0px, env(safe-area-inset-bottom))}

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