:root{
  --color-primary:#3D2914;
  --color-secondary:#5C4020;
  --color-accent:#FF8C00;
}

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

::selection{background:rgba(255,140,0,.25)}

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

a,button{transition:color .2s ease,background-color .2s ease,border-color .2s ease,transform .2s ease,box-shadow .2s ease}
:focus-visible{outline:none;box-shadow:0 0 0 4px rgba(255,140,0,.22)}

.container-max{max-width:80rem;margin-left:auto;margin-right:auto}

.payment-pill{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.35rem .6rem;
  border-radius:999px;
  font-size:.75rem;
  line-height:1rem;
  background:#f3f4f6;
  color:#111827;
  border:1px solid #e5e7eb
}

.payment-pill--dark{
  background:rgba(255,255,255,.06);
  color:#f9fafb;
  border:1px solid rgba(255,255,255,.12)
}

.cookie-toggle{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1rem;
  padding:1rem;
  border-radius:1rem;
  background:#fff;
  border:1px solid #e5e7eb
}

.cookie-switch{
  position:relative;
  flex:0 0 auto;
  width:52px;
  height:30px;
  border-radius:999px;
  background:#e5e7eb;
  border:1px solid #d1d5db
}

.cookie-switch::after{
  content:"";
  position:absolute;
  top:50%;
  left:4px;
  width:22px;
  height:22px;
  transform:translateY(-50%);
  border-radius:999px;
  background:#ffffff;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
  transition:transform .2s ease,background-color .2s ease
}

.cookie-toggle input:checked + .cookie-switch{
  background:rgba(255,140,0,.25);
  border-color:rgba(255,140,0,.35)
}

.cookie-toggle input:checked + .cookie-switch::after{
  transform:translate(22px,-50%);
  background:#111827
}

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

[data-animate]{
  opacity:0;
  transition:opacity .6s ease-out,transform .6s ease-out;
  will-change:opacity,transform
}

[data-animate="slide_right"]{transform:translateX(-32px)}
[data-animate="slide_left"]{transform:translateX(32px)}
[data-animate="fade_up"]{transform:translateY(20px)}
[data-animate="fade_in"]{transform:translateY(0)}
[data-animate="zoom_in"]{transform:scale(.96)}
[data-animate="none"]{opacity:1;transform:none}

[data-animate].is-visible{opacity:1;transform:translate(0,0) scale(1)}

.decor-grid-dots{
  background-image:radial-gradient(rgba(17,24,39,.14) 1px, transparent 1px);
  background-size:18px 18px;
  background-position:0 0
}

.decor-grid-lines{
  background-image:linear-gradient(to right, rgba(17,24,39,.08) 1px, transparent 1px),
                   linear-gradient(to bottom, rgba(17,24,39,.08) 1px, transparent 1px);
  background-size:44px 44px
}

.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(255,140,0,.18), rgba(255,140,0,.18) 1px, transparent 1px, transparent 10px)
}

.decor-mesh{
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(255,140,0,.22), transparent 60%),
    radial-gradient(800px 520px at 80% 40%, rgba(92,64,32,.20), transparent 60%),
    radial-gradient(700px 500px at 45% 95%, rgba(61,41,20,.18), transparent 60%)
}

.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:auto;
  width:520px;
  height:520px;
  border-radius:999px;
  filter:blur(44px);
  opacity:.35;
  pointer-events:none
}

.decor-gradient-blur::before{
  top:-160px;
  left:-180px;
  background:radial-gradient(circle at 30% 30%, rgba(255,140,0,.9), transparent 62%)
}

.decor-gradient-blur::after{
  bottom:-220px;
  right:-160px;
  background:radial-gradient(circle at 30% 30%, rgba(92,64,32,.8), transparent 62%)
}

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

.decor-corner-tr::before{
  content:"";
  position:absolute;
  top:-1px;
  right:-1px;
  width:180px;
  height:180px;
  background:linear-gradient(135deg, rgba(255,140,0,.22), transparent 70%);
  border-bottom-left-radius:28px;
  pointer-events:none
}

.decor-corner-bl::before{
  content:"";
  position:absolute;
  bottom:-1px;
  left:-1px;
  width:200px;
  height:200px;
  background:linear-gradient(315deg, rgba(255,140,0,.18), transparent 70%);
  border-top-right-radius:28px;
  pointer-events:none
}

.decor-glow-element{
  position:absolute;
  width:360px;
  height:360px;
  border-radius:999px;
  background:radial-gradient(circle at 30% 30%, rgba(255,140,0,.55), transparent 66%);
  filter:blur(24px);
  opacity:.35;
  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='rgba(255,140,0,0.22)' stroke-width='1'%3E%3Ccircle cx='210' cy='210' r='60'/%3E%3Ccircle cx='210' cy='210' r='110'/%3E%3Ccircle cx='210' cy='210' r='160'/%3E%3Ccircle cx='210' cy='210' r='205'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:cover
}

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