:root{
  --color-primary:#3D2C2C;
  --color-secondary:#5A4040;
  --color-accent:#FFAB91;
  --color-bg-light:#FFF5F2;
  --color-bg-alt:#FFE8E0;
}

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

/* Inputs */
input,select,textarea{
  outline:none;
}
.input-base{
  width:100%;
  border:1px solid rgb(229 231 235);
  background:#fff;
  padding:.875rem 1rem;
  border-radius:9999px;
  transition:box-shadow .2s ease,border-color .2s ease,transform .2s ease;
}
.input-base:focus{
  border-color:rgba(255,171,145,.9);
  box-shadow:0 0 0 6px rgba(255,171,145,.18);
}
.input-hint{font-size:.75rem;color:rgb(107 114 128);margin-top:.5rem}
.field-error{border-color:rgb(248 113 113)!important;box-shadow:0 0 0 6px rgba(248,113,113,.12)!important}
.error-text{font-size:.75rem;color:rgb(239 68 68);margin-top:.5rem}

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

/* Premium subtle decorations */
.decor-grid-dots{
  background-image:radial-gradient(rgba(61,44,44,.18) 1px, transparent 1px);
  background-size:18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(to right, rgba(61,44,44,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(61,44,44,.10) 1px, transparent 1px);
  background-size:28px 28px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(255,171,145,.22) 0, rgba(255,171,145,.22) 10px, transparent 10px, transparent 22px);
}
.decor-mesh{
  background:
    radial-gradient(650px circle at 25% 15%, rgba(255,171,145,.35), transparent 55%),
    radial-gradient(700px circle at 75% 25%, rgba(61,44,44,.15), transparent 52%),
    radial-gradient(600px circle at 55% 85%, rgba(90,64,64,.15), transparent 55%);
}

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

.decor-gradient-blur{position:relative}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  inset:auto;
  width:520px;
  height:520px;
  filter:blur(60px);
  opacity:.45;
  z-index:0;
  pointer-events:none;
  border-radius:9999px;
}
.decor-gradient-blur::before{
  left:-180px;
  top:-220px;
  background:radial-gradient(circle at 30% 30%, rgba(255,171,145,.55), transparent 60%);
}
.decor-gradient-blur::after{
  right:-220px;
  bottom:-240px;
  background:radial-gradient(circle at 30% 30%, rgba(61,44,44,.22), transparent 60%);
}

.decor-glow-element{position:relative}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(closest-side, rgba(255,171,145,.25), transparent 70%);
  filter:blur(18px);
  z-index:-1;
  transform:translateZ(0);
}

.decor-corner-tr{position:relative}
.decor-corner-tr::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:160px;
  height:160px;
  background:radial-gradient(circle at top right, rgba(255,171,145,.35), transparent 60%);
  pointer-events:none;
}
.decor-corner-bl{position:relative}
.decor-corner-bl::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:160px;
  height:160px;
  background:radial-gradient(circle at bottom left, rgba(255,171,145,.35), transparent 60%);
  pointer-events:none;
}

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

/* Small helper: nice focus */
a:focus-visible,button:focus-visible{
  outline:2px solid rgba(255,171,145,.9);
  outline-offset:2px;
  border-radius:9999px;
}