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

html{scroll-behavior:smooth;scroll-padding-top:5rem}
body{font-family:'Source Sans 3',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%}

/* Tailwind compatibility helpers for cta_style shadow color tokens */
.shadow-accent\/30{--tw-shadow-color:rgb(var(--accent-rgb)/.30)}
.hover\:shadow-accent\/40:hover{--tw-shadow-color:rgb(var(--accent-rgb)/.40)}

/* Scroll animations (zoom_in) */
[data-animate]{
  opacity:0;
  transform:scale(.95);
  transition:all .5s ease-out
}
[data-animate].is-visible{
  opacity:1;
  transform:scale(1)
}

/* Simple helpers */
.rotate-180{transform:rotate(180deg)}
.focus-ring:focus{outline:2px solid rgb(var(--accent-rgb)/.75);outline-offset:2px}

/* 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(to right, rgba(74,64,53,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(74,64,53,.08) 1px, transparent 1px);
  background-size:44px 44px
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(74,64,53,.08) 0, rgba(74,64,53,.08) 1px, transparent 1px, transparent 10px)
}
.decor-mesh{
  background:
    radial-gradient(700px 350px at 15% 20%, rgb(var(--accent-rgb)/.55), transparent 60%),
    radial-gradient(600px 300px at 85% 15%, rgba(106,90,74,.25), transparent 60%),
    radial-gradient(700px 350px at 70% 90%, rgba(74,64,53,.15), transparent 55%);
}

.decor-gradient-blur{position:relative}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:auto;
  width:520px;
  height:520px;
  border-radius:999px;
  filter:blur(42px);
  opacity:.45;
  pointer-events:none;
  z-index:0
}
.decor-gradient-blur::before{
  top:-240px; left:-220px;
  background:radial-gradient(circle at 30% 30%, rgb(var(--accent-rgb)/.9), transparent 60%)
}
.decor-gradient-blur::after{
  bottom:-260px; right:-240px;
  background:radial-gradient(circle at 60% 60%, rgba(106,90,74,.55), transparent 62%)
}
.decor-subtle{opacity:.06}
.decor-moderate{opacity:.10}
.decor-bold{opacity:.18}

/* Corner accents */
.decor-corner-tr{position:relative}
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:-1px; right:-1px;
  width:120px; height:120px;
  background:radial-gradient(circle at 100% 0%, rgb(var(--accent-rgb)/.7), transparent 70%);
  pointer-events:none
}
.decor-corner-bl{position:relative}
.decor-corner-bl::after{
  content:"";
  position:absolute;
  bottom:-1px; left:-1px;
  width:140px; height:140px;
  background:radial-gradient(circle at 0% 100%, rgba(106,90,74,.32), transparent 68%);
  pointer-events:none
}

/* Glowing element behind product */
.decor-glow-element{position:relative}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:10% 15%;
  background:radial-gradient(circle, rgb(var(--accent-rgb)/.65), transparent 65%);
  filter:blur(26px);
  z-index:0;
  pointer-events:none
}

/* Concentric rings SVG helper (optional usage) */
.decor-rings-svg{
  background-image:
    radial-gradient(circle at center, rgba(74,64,53,.10) 0 1px, transparent 2px),
    radial-gradient(circle at center, rgba(74,64,53,.08) 0 70px, transparent 71px),
    radial-gradient(circle at center, rgba(74,64,53,.06) 0 140px, transparent 141px);
}

/* Cookie banner tweaks */
#cookie-consent{backdrop-filter:saturate(140%) blur(6px)}
#cookie-consent .peer:focus + div{outline:2px solid rgb(var(--accent-rgb)/.75); outline-offset:2px}