:root{
  --color-primary:#2C3E50;
  --color-secondary:#3D5266;
  --color-accent:#48C9B0;
}

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

::selection{background:rgba(72,201,176,.25);color:#0f172a}

/* Button & link 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%}

/* Focus ring */
:focus-visible{outline:2px solid rgba(72,201,176,.55);outline-offset:2px}

/* Premium subtle separators */
.hr-soft{
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(15,23,42,.08), transparent);
}

/* Animations */
[data-animate]{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .6s ease-out, transform .6s ease-out;
  will-change:opacity,transform;
}
[data-animate].is-visible{
  opacity:1;
  transform:translateY(0);
}

[data-animate="zoom_in"]{
  opacity:0;
  transform:scale(.95);
  transition:opacity .5s ease-out, transform .5s ease-out;
}
[data-animate="zoom_in"].is-visible{
  opacity:1;
  transform:scale(1);
}

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

/* Decorative systems */
.decor-subtle{opacity:.05}
.decor-moderate{opacity:.1}
.decor-bold{opacity:.2}

.decor-grid-dots{
  background-image:radial-gradient(rgba(15,23,42,.55) 1px, transparent 1px);
  background-size:22px 22px;
  background-position:0 0;
}

.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(15,23,42,.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.12) 1px, transparent 1px);
  background-size:56px 56px;
}

.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(15,23,42,.14) 0, rgba(15,23,42,.14) 1px, transparent 1px, transparent 14px);
}

.decor-mesh{
  background:
    radial-gradient(800px circle at 15% 20%, rgba(72,201,176,.35), transparent 55%),
    radial-gradient(900px circle at 85% 0%, rgba(44,62,80,.25), transparent 55%),
    radial-gradient(800px circle at 80% 85%, rgba(61,82,102,.28), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.0));
}

.decor-gradient-blur{position:relative}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:520px;height:520px;
  filter:blur(50px);
  border-radius:9999px;
  z-index:0;
  pointer-events:none;
}
.decor-gradient-blur::before{
  top:-220px;left:-220px;
  background:radial-gradient(circle, rgba(72,201,176,.55), transparent 60%);
}
.decor-gradient-blur::after{
  bottom:-240px;right:-240px;
  background:radial-gradient(circle, rgba(44,62,80,.40), transparent 62%);
}

.decor-corner-tr{position:relative}
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:-1px;right:-1px;
  width:120px;height:120px;
  background:linear-gradient(135deg, rgba(72,201,176,.22), transparent 65%);
  border-top-right-radius:32px;
  pointer-events:none;
}

.decor-corner-bl{position:relative}
.decor-corner-bl::before{
  content:"";
  position:absolute;
  bottom:-1px;left:-1px;
  width:140px;height:140px;
  background:linear-gradient(315deg, rgba(72,201,176,.20), transparent 62%);
  border-bottom-left-radius:32px;
  pointer-events:none;
}

.decor-glow-element{position:relative}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:auto;
  width:340px;height:340px;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(72,201,176,.35), transparent 62%);
  filter:blur(28px);
  border-radius:9999px;
  pointer-events:none;
  z-index:0;
}

/* Lightweight rings (SVG-like) */
.decor-rings-svg{
  background-image:
    radial-gradient(circle at center, transparent 52%, rgba(72,201,176,.25) 53%, transparent 54%),
    radial-gradient(circle at center, transparent 36%, rgba(44,62,80,.18) 37%, transparent 38%),
    radial-gradient(circle at center, transparent 20%, rgba(61,82,102,.18) 21%, transparent 22%);
}

/* Cookie banner mobile spacing */
#cookie-consent{padding-bottom:calc(env(safe-area-inset-bottom) + 16px)}

/* Small helper for error messages */
.form-error{
  color:#b91c1c;
  font-size:.875rem;
  line-height:1.25rem;
}
.input-invalid{
  border-color:rgba(185,28,28,.55) !important;
  box-shadow:0 0 0 3px rgba(185,28,28,.15) !important;
}

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