: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:5rem}
body{font-family:'Nunito Sans',system-ui,sans-serif;text-rendering:optimizeLegibility}
img{max-width:100%;height:auto}
a,button,input,textarea,select{outline-color:var(--color-accent)}
:focus-visible{outline:2px solid rgba(255,171,145,.85);outline-offset:2px}

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

/* Soft container helpers */
.container-page{max-width:80rem;margin-left:auto;margin-right:auto;padding-left:1rem;padding-right:1rem}
@media (min-width:640px){.container-page{padding-left:1.5rem;padding-right:1.5rem}}
@media (min-width:1024px){.container-page{padding-left:2rem;padding-right:2rem}}

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

/* Premium subtle separators */
.hr-soft{
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(17,24,39,.12),transparent);
}

/* Decorative patterns */
.decor-subtle{opacity:.05}
.decor-moderate{opacity:.10}
.decor-bold{opacity:.20}

.decor-grid-dots{
  background-image:radial-gradient(rgba(61,44,44,.35) 1px, transparent 1px);
  background-size:18px 18px;
}
.decor-grid-lines{
  background-image:
    linear-gradient(rgba(61,44,44,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,44,44,.18) 1px, transparent 1px);
  background-size:28px 28px;
}
.decor-diagonal{
  background-image:repeating-linear-gradient(135deg, rgba(255,171,145,.22) 0 2px, transparent 2px 12px);
}
.decor-mesh{
  background:
    radial-gradient(800px 300px at 20% 10%, rgba(255,171,145,.22), transparent 55%),
    radial-gradient(700px 280px at 85% 30%, rgba(255,232,224,.35), transparent 55%),
    radial-gradient(600px 260px at 55% 85%, rgba(255,171,145,.18), transparent 58%);
}

/* Accent elements */
.decor-gradient-blur{position:relative}
.decor-gradient-blur::before,
.decor-gradient-blur::after{
  content:"";
  position:absolute;
  width:520px;height:520px;
  filter:blur(60px);
  border-radius:999px;
  pointer-events:none;
  z-index:0;
  opacity:.35;
}
.decor-gradient-blur::before{
  background:radial-gradient(circle at 30% 30%, rgba(255,171,145,.65), transparent 60%);
  top:-220px;left:-180px;
}
.decor-gradient-blur::after{
  background:radial-gradient(circle at 30% 30%, rgba(255,232,224,.85), transparent 60%);
  bottom:-240px;right:-200px;
}

.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 100% 0%, rgba(255,171,145,.35), transparent 65%);
  pointer-events:none;
}

.decor-corner-bl{position:relative}
.decor-corner-bl::after{
  content:"";
  position:absolute;bottom:0;left:0;
  width:180px;height:180px;
  background:radial-gradient(circle at 0% 100%, rgba(255,171,145,.30), transparent 65%);
  pointer-events:none;
}

.decor-glow-element{position:relative}
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:auto;
  width:360px;height:360px;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(255,171,145,.45), transparent 62%);
  filter:blur(22px);
  border-radius:999px;
  pointer-events:none;
  z-index:0;
}

/* Rings SVG helper (used as background when needed) */
.decor-rings-svg{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='640' viewBox='0 0 640 640'%3E%3Cg fill='none' stroke='rgba(255,171,145,0.35)' stroke-width='2'%3E%3Ccircle cx='320' cy='320' r='60'/%3E%3Ccircle cx='320' cy='320' r='120'/%3E%3Ccircle cx='320' cy='320' r='180'/%3E%3Ccircle cx='320' cy='320' r='240'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:640px 640px;
}

/* Cookie modal small polish */
#cookie-consent .shadow-2xl{box-shadow:0 25px 60px rgba(0,0,0,.20)}
#cookie-consent a{color:rgba(31,41,55,1)}
#cookie-consent a:hover{color:rgba(17,24,39,1)}

/* Tap targets on mobile */
@media (max-width:640px){
  header a, header button{min-height:44px}
}