:root{
  --color-primary:#4A4035;
  --color-secondary:#6A5A4A;
  --color-accent:#F5E6D3;
}

html{scroll-behavior:smooth;scroll-padding-top:5rem}
body{font-family:'Inter',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 rings */
:where(a,button,input,select,textarea):focus-visible{
  outline:2px solid rgba(245,230,211,.85);
  outline-offset:2px;
  border-radius:1rem;
}

/* Animations (context: slide_right) */
[data-animate]{
  opacity:0;
  transform:translateX(-2rem);
  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)}

/* Subtle premium separators */
.hr-soft{
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(74,64,53,.18),transparent);
}

/* Decorative backgrounds */
.decor-grid-dots{
  background-image:radial-gradient(rgba(74,64,53,.18) 1px, transparent 1px);
  background-size:18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(rgba(74,64,53,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,64,53,.10) 1px, transparent 1px);
  background-size:44px 44px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(74,64,53,.10) 0, rgba(74,64,53,.10) 1px, transparent 1px, transparent 12px);
}
.decor-mesh{
  background:
    radial-gradient(700px 300px at 20% 10%, rgba(245,230,211,.55), transparent 60%),
    radial-gradient(600px 280px at 80% 0%, rgba(106,90,74,.18), transparent 60%),
    radial-gradient(700px 360px at 60% 90%, rgba(245,230,211,.35), transparent 60%);
}

.decor-gradient-blur{position:relative}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:auto;
  width:520px;
  height:520px;
  border-radius:9999px;
  filter:blur(42px);
  opacity:.35;
  pointer-events:none;
}
.decor-gradient-blur::before{
  top:-240px;
  left:-240px;
  background:radial-gradient(circle, rgba(245,230,211,.9), transparent 65%);
}
.decor-gradient-blur::after{
  bottom:-260px;
  right:-260px;
  background:radial-gradient(circle, rgba(106,90,74,.35), transparent 65%);
}

.decor-corner-tr{position:relative}
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:-1px; right:-1px;
  width:140px; height:140px;
  background:linear-gradient(135deg, rgba(245,230,211,.9), transparent 70%);
  border-top-right-radius:24px;
  opacity:.65;
  pointer-events:none;
}
.decor-corner-bl{position:relative}
.decor-corner-bl::after{
  content:"";
  position:absolute;
  bottom:-1px; left:-1px;
  width:160px; height:160px;
  background:linear-gradient(315deg, rgba(245,230,211,.85), transparent 70%);
  border-bottom-left-radius:24px;
  opacity:.55;
  pointer-events:none;
}

.decor-glow-element{position:relative}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:radial-gradient(circle at 50% 40%, rgba(245,230,211,.55), transparent 60%);
  filter:blur(18px);
  opacity:.75;
  pointer-events:none;
  z-index:-1;
}

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

/* Cookie dialog animation */
#cookie-consent{transition:opacity .2s ease, transform .2s ease}
#cookie-consent.is-open{display:block}
#cookie-consent.hidden{opacity:0;transform:translateY(12px)}
#cookie-consent:not(.hidden){opacity:1;transform:translateY(0)}

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