:root{
  --color-primary:#1F2937;
  --color-secondary:#374151;
  --color-accent:#64748B;
}

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

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

/* Focus ring helper for non-tailwind elements */
:focus-visible{outline:none}
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{
  box-shadow:0 0 0 3px rgba(100,116,139,.25),0 0 0 1px rgba(31,41,55,.35);
  border-radius:12px
}

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

/* Decorative backgrounds */
.decor-grid-dots{
  background-image:radial-gradient(rgba(31,41,55,.18) 1px,transparent 1px);
  background-size:18px 18px
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(31,41,55,.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31,41,55,.12) 1px, transparent 1px);
  background-size:36px 36px
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(31,41,55,.12) 0, rgba(31,41,55,.12) 1px, transparent 1px, transparent 10px)
}
.decor-mesh{
  background:
    radial-gradient(800px 500px at 20% 10%, rgba(100,116,139,.35), transparent 60%),
    radial-gradient(700px 450px at 80% 20%, rgba(55,65,81,.28), transparent 55%),
    radial-gradient(900px 600px at 50% 90%, rgba(31,41,55,.24), transparent 60%)
}

/* Intensity modifiers */
.decor-subtle{opacity:.06}
.decor-moderate{opacity:.10}
.decor-bold{opacity:.18}

/* Accent elements */
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:auto;
  width:520px;
  height:520px;
  filter:blur(48px);
  opacity:.16;
  pointer-events:none;
  background:radial-gradient(circle at 30% 30%, rgba(100,116,139,.9), transparent 60%)
}
.decor-gradient-blur::before{top:-200px;left:-200px}
.decor-gradient-blur::after{
  bottom:-220px;
  right:-220px;
  opacity:.14;
  background:radial-gradient(circle at 70% 70%, rgba(31,41,55,.95), transparent 62%)
}
.decor-corner-tr::before,
.decor-corner-bl::before{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  pointer-events:none;
  background:linear-gradient(135deg, rgba(100,116,139,.28), transparent 60%);
  opacity:.7
}
.decor-corner-tr::before{top:-1px;right:-1px;border-bottom-left-radius:36px}
.decor-corner-bl::before{
  bottom:-1px;
  left:-1px;
  border-top-right-radius:36px;
  background:linear-gradient(315deg, rgba(100,116,139,.28), transparent 60%)
}

.decor-glow-element{
  position:absolute;
  width:520px;
  height:520px;
  background:radial-gradient(circle at 50% 50%, rgba(100,116,139,.22), transparent 60%);
  filter:blur(28px);
  pointer-events:none
}

.decor-rings-svg{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'%3E%3Cg fill='none' stroke='%231F2937' stroke-opacity='0.18'%3E%3Ccircle cx='210' cy='210' r='50'/%3E%3Ccircle cx='210' cy='210' r='95'/%3E%3Ccircle cx='210' cy='210' r='140'/%3E%3Ccircle cx='210' cy='210' r='185'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:420px 420px
}

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

::selection{
  background:rgba(100,116,139,.22);
  color:#0b1220
}