:root{
  --color-primary:#4A4035;
  --color-secondary:#6A5A4A;
  --color-accent:#F5E6D3;
  --color-bg-light:#FFFDFB;
  --color-bg-alt:#FDF8F3;
}

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

*{text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

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

::selection{background:rgba(245,230,211,.75);color:var(--color-primary)}

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

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

.decor-grid-dots{
  background-image:radial-gradient(rgba(74,64,53,.14) 1px, transparent 1px);
  background-size:18px 18px
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(74,64,53,.10) 1px, transparent 1px),
    linear-gradient(to bottom, 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(600px 400px at 15% 15%, rgba(245,230,211,.55), transparent 60%),
    radial-gradient(700px 450px at 85% 25%, rgba(106,90,74,.18), transparent 60%),
    radial-gradient(650px 500px at 40% 95%, rgba(74,64,53,.14), transparent 60%);
}

.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:auto;
  width:520px;
  height:520px;
  border-radius:9999px;
  filter:blur(48px);
  opacity:.28;
  pointer-events:none;
  z-index:0
}
.decor-gradient-blur::before{
  top:-240px;
  right:-240px;
  background:radial-gradient(circle at 30% 30%, rgba(245,230,211,.95), rgba(245,230,211,0) 60%)
}
.decor-gradient-blur::after{
  bottom:-260px;
  left:-260px;
  background:radial-gradient(circle at 30% 30%, rgba(106,90,74,.55), rgba(106,90,74,0) 60%)
}

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

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

.decor-subtle{opacity:.55}
.decor-moderate{opacity:.8}
.decor-bold{opacity:1}

#cookie-consent a:focus,
#cookie-consent button:focus,
#cookie-consent input:focus{
  outline:none
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  [data-animate]{opacity:1;transform:none;transition:none}
}