:root{
  --color-primary:#2C1810;
  --color-secondary:#4A2C20;
  --color-accent:#DC2626;
}

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

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

/* Header (transparent -> solid) helpers */
.header-solid{
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(229,231,235,.9)
}
.header-solid a,
.header-solid button,
.header-solid .text-white,
.header-solid .text-white\/85,
.header-solid .text-white\/90{
  color:rgb(17 24 39)!important
}
.header-solid .ring-white\/15{--tw-ring-color:rgba(17,24,39,.12)!important}
.header-solid .bg-white\/10{background:rgba(17,24,39,.06)!important}
.header-solid .hover\:bg-white\/10:hover{background:rgba(17,24,39,.08)!important}
.header-solid .text-white\/70{color:rgba(55,65,81,.75)!important}
.header-solid #mobile-menu-btn{color:rgb(17 24 39)!important}

/* Premium focus rings */
:focus-visible{
  outline:2px solid rgba(220,38,38,.6);
  outline-offset:2px
}

/* Decorative elements */
.decor-grid-dots{
  background-image:radial-gradient(currentColor 1px,transparent 1px);
  background-size:18px 18px;
  color:rgba(220,38,38,.22)
}
.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:32px 32px
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(220,38,38,.12) 0, rgba(220,38,38,.12) 10px, transparent 10px, transparent 22px)
}
.decor-mesh{
  background-image:
    radial-gradient(800px 360px at 10% 20%, rgba(220,38,38,.22), transparent 55%),
    radial-gradient(700px 360px at 90% 30%, rgba(220,38,38,.18), transparent 60%),
    radial-gradient(800px 420px at 50% 100%, rgba(255,255,255,.10), transparent 55%)
}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  border-radius:9999px;
  filter:blur(50px);
  opacity:.45;
  pointer-events:none
}
.decor-gradient-blur::before{
  top:-220px;
  left:-220px;
  background:radial-gradient(circle at 30% 30%, rgba(220,38,38,.55), transparent 60%)
}
.decor-gradient-blur::after{
  bottom:-260px;
  right:-260px;
  background:radial-gradient(circle at 50% 50%, rgba(220,38,38,.35), transparent 60%)
}
.decor-corner-tr::before{
  content:"";
  position:absolute;
  top:-1px;
  right:-1px;
  width:160px;
  height:160px;
  border-top-right-radius:24px;
  background:radial-gradient(circle at 100% 0%, rgba(220,38,38,.18), transparent 60%);
  pointer-events:none
}
.decor-corner-bl::before{
  content:"";
  position:absolute;
  bottom:-1px;
  left:-1px;
  width:180px;
  height:180px;
  border-bottom-left-radius:24px;
  background:radial-gradient(circle at 0% 100%, rgba(220,38,38,.16), transparent 60%);
  pointer-events:none
}
.decor-glow-element{
  position:absolute;
  inset:auto;
  width:520px;
  height:520px;
  border-radius:9999px;
  background:radial-gradient(circle, rgba(220,38,38,.30), transparent 58%);
  filter:blur(24px);
  opacity:.75;
  pointer-events:none
}
.decor-rings-svg{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='900' viewBox='0 0 900 900'%3E%3Cg fill='none' stroke='rgba(220,38,38,0.14)' stroke-width='2'%3E%3Ccircle cx='450' cy='450' r='120'/%3E%3Ccircle cx='450' cy='450' r='200'/%3E%3Ccircle cx='450' cy='450' r='290'/%3E%3Ccircle cx='450' cy='450' r='390'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain
}
.decor-subtle{opacity:.06}
.decor-moderate{opacity:.12}
.decor-bold{opacity:.20}

/* Small helpers */
.text-balance{text-wrap:balance}
.shadow-soft{box-shadow:0 14px 40px rgba(17,24,39,.10)}
.glass{
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.5)
}

/* Form inputs look consistent on iOS */
input,select,textarea{font:inherit}
input[type="text"],input[type="tel"],input[type="email"]{-webkit-appearance:none;appearance:none}