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

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

::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: 0.5rem;
}

form button[type="submit"] {
  white-space: normal;
  width: 100%;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.22);
  border-radius: 0.75rem;
}

/* Animations */
[data-animate]{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .65s ease-out, transform .65s ease-out;
  will-change: opacity, transform;
}
[data-animate].is-visible{
  opacity:1;
  transform:translateY(0);
}
.rotate-180 { transform: rotate(180deg); }

/* Decorative backgrounds (premium subtle) */
.decor-grid-dots{
  background-image: radial-gradient(rgba(61,41,20,.12) 1px, transparent 1px);
  background-size: 18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(61,41,20,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(61,41,20,.08) 1px, transparent 1px);
  background-size: 46px 46px;
}
.decor-diagonal{
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,140,0,.10) 0,
    rgba(255,140,0,.10) 10px,
    transparent 10px,
    transparent 22px
  );
}
.decor-mesh{
  background:
    radial-gradient(600px circle at 20% 20%, rgba(255,140,0,.18), transparent 55%),
    radial-gradient(700px circle at 80% 30%, rgba(61,41,20,.12), transparent 55%),
    radial-gradient(600px circle at 40% 90%, rgba(92,64,32,.10), transparent 55%);
}
.decor-subtle{ opacity:.06; }
.decor-moderate{ opacity:.10; }
.decor-bold{ opacity:.18; }

.decor-gradient-blur{
  position: relative;
  isolation: isolate;
}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:9999px;
  filter: blur(40px);
  z-index:-1;
  opacity:.35;
  pointer-events:none;
}
.decor-gradient-blur::before{
  left:-160px;
  top:-180px;
  background: radial-gradient(circle at 30% 30%, rgba(255,140,0,.75), transparent 60%);
}
.decor-gradient-blur::after{
  right:-180px;
  bottom:-220px;
  background: radial-gradient(circle at 40% 40%, rgba(61,41,20,.55), transparent 62%);
}

.decor-corner-tr{ position: relative; }
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:-1px;
  right:-1px;
  width:90px;
  height:90px;
  background: linear-gradient(135deg, rgba(255,140,0,.20), rgba(255,140,0,0));
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  pointer-events:none;
  border-top-right-radius: 1rem;
}
.decor-corner-bl{ position: relative; }
.decor-corner-bl::after{
  content:"";
  position:absolute;
  bottom:-1px;
  left:-1px;
  width:92px;
  height:92px;
  background: linear-gradient(315deg, rgba(61,41,20,.16), rgba(61,41,20,0));
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  pointer-events:none;
  border-bottom-left-radius: 1rem;
}

.decor-glow-element{ position: relative; }
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:-30px;
  background: radial-gradient(closest-side, rgba(255,140,0,.22), transparent 70%);
  filter: blur(18px);
  z-index:-1;
  pointer-events:none;
}

/* Form micro-styles (non-invasive with Tailwind) */
.input-error{
  border-color: rgba(220,38,38,.55) !important;
  box-shadow: 0 0 0 4px rgba(220,38,38,.14) !important;
}

.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(17,24,39,.92);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  box-shadow: 0 16px 44px rgba(0,0,0,.25);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
}