:root{
  --color-primary:#3D2914;
  --color-secondary:#5C4020;
  --color-accent:#FF8C00;
  --color-bg-light:#FFFBF0;
  --color-bg-alt:#FEF0C7;
}

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

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

img{max-width:100%;height:auto;}

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-ring:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(255,140,0,.25);
}

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

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

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

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

.glass-card{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(0,0,0,.06);
  backdrop-filter:blur(10px);
}

.soft-border{
  border:1px solid rgba(0,0,0,.08);
}

.accent-glow{
  box-shadow:0 20px 60px rgba(255,140,0,.18);
}

.container-pad{
  padding-left:1rem;
  padding-right:1rem;
}

@media (min-width:640px){
  .container-pad{padding-left:1.5rem;padding-right:1.5rem;}
}
@media (min-width:1024px){
  .container-pad{padding-left:2rem;padding-right:2rem;}
}

.sticky-shadow{
  box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.input-like{
  border:1px solid rgba(0,0,0,.12);
  border-radius:9999px;
  padding:.85rem 1rem;
}

.input-like:focus{
  outline:none;
  border-color:rgba(255,140,0,.75);
  box-shadow:0 0 0 4px rgba(255,140,0,.18);
}

.toast{
  position:fixed;
  left:1rem;
  right:1rem;
  bottom:1rem;
  z-index:120;
  max-width:720px;
  margin:0 auto;
}

.toast > div{
  background:#111827;
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  border-radius:1.25rem;
  padding:1rem 1.25rem;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.visually-hidden{
  position:absolute!important;
  height:1px;width:1px;
  overflow:hidden;
  clip:rect(1px, 1px, 1px, 1px);
  white-space:nowrap;
}