:root{
  --color-primary:#1C1917;
  --color-secondary:#2C2825;
  --color-accent:#D4B896;
  --ring: 212 184 150;
}

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

/* Premium focus ring */
:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(var(--ring),.25)
}

/* Decorative backgrounds */
.decor-grid-dots{
  background-image:radial-gradient(rgba(0,0,0,.22) 1px, transparent 1px);
  background-size:18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(0,0,0,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.08) 1px, transparent 1px);
  background-size:44px 44px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(
    135deg,
    rgba(212,184,150,.18),
    rgba(212,184,150,.18) 1px,
    transparent 1px,
    transparent 10px
  );
}
.decor-mesh{
  background:
    radial-gradient(800px 400px at 10% 10%, rgba(212,184,150,.20), transparent 60%),
    radial-gradient(700px 350px at 90% 20%, rgba(28,25,23,.10), transparent 55%),
    radial-gradient(800px 420px at 60% 90%, rgba(212,184,150,.14), transparent 62%);
}

.decor-subtle{opacity:.06}
.decor-moderate{opacity:.12}
.decor-bold{opacity:.2}

/* Gradient blur blobs */
.decor-gradient-blur{position:relative}
.decor-gradient-blur:before,
.decor-gradient-blur:after{
  content:"";
  position:absolute;
  filter:blur(48px);
  opacity:.35;
  pointer-events:none;
  transform:translateZ(0);
}
.decor-gradient-blur:before{
  width:360px;height:360px;
  left:-120px;top:-120px;
  background:radial-gradient(circle at 30% 30%, rgba(212,184,150,.95), transparent 60%);
}
.decor-gradient-blur:after{
  width:420px;height:420px;
  right:-160px;bottom:-160px;
  background:radial-gradient(circle at 50% 50%, rgba(28,25,23,.35), transparent 62%);
}

/* Corner accents */
.decor-corner-tr{position:relative}
.decor-corner-tr:after{
  content:"";
  position:absolute;
  top:-1px;right:-1px;
  width:90px;height:90px;
  background:radial-gradient(circle at 100% 0%, rgba(212,184,150,.55), transparent 65%);
  pointer-events:none;
}
.decor-corner-bl{position:relative}
.decor-corner-bl:after{
  content:"";
  position:absolute;
  bottom:-1px;left:-1px;
  width:90px;height:90px;
  background:radial-gradient(circle at 0% 100%, rgba(212,184,150,.45), transparent 66%);
  pointer-events:none;
}

/* Glow element behind product */
.decor-glow-element{position:relative}
.decor-glow-element:before{
  content:"";
  position:absolute;
  inset:-24px;
  background:radial-gradient(closest-side, rgba(212,184,150,.30), transparent 65%);
  filter:blur(22px);
  pointer-events:none;
  z-index:-1;
}

/* Rings SVG helper (used as background) */
.decor-rings-svg{
  background-image:
    radial-gradient(circle at center, transparent 0 38%, rgba(212,184,150,.18) 38% 39%, transparent 39% 53%, rgba(212,184,150,.14) 53% 54%, transparent 54% 68%, rgba(28,25,23,.10) 68% 69%, transparent 69% 100%);
  background-repeat:no-repeat;
  background-position:center;
}

/* Animations (Zoom In) */
[data-animate]{
  opacity:0;
  transform:scale(.95);
  transition:opacity .5s ease-out, transform .5s ease-out;
  will-change:opacity,transform;
}
[data-animate].is-visible{
  opacity:1;
  transform:scale(1);
}

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

/* Accordion smoothing */
[data-faq-panel]{
  overflow:hidden;
  transition:max-height .35s ease;
}

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