:root {
  --color-primary: #1C1917;
  --color-secondary: #2C2825;
  --color-accent: #D4B896;
}

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { font-family: 'DM Sans', system-ui, sans-serif; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }

::selection { background: rgba(212, 184, 150, 0.35); }

a, button { -webkit-tap-highlight-color: transparent; }

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%;
}

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

.btn-cta { border-radius: 0.75rem; }

/* Premium focus rings */
:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(212, 184, 150, 0.35); border-radius: 0.75rem; }

/* Animations (Slide Right) */
[data-animate] {
  opacity: 0;
  transform: translateX(-2rem);
  transition: all 0.6s ease-out;
  will-change: transform, opacity;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateX(0);
}

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

/* Decorative backgrounds */
.decor-grid-dots {
  background-image: radial-gradient(circle, rgba(212,184,150,0.28) 1px, transparent 1px);
  background-size: 22px 22px;
}
.decor-grid-lines {
  background-image:
    linear-gradient(rgba(212,184,150,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,184,150,0.12) 1px, transparent 1px);
  background-size: 38px 38px;
}
.decor-diagonal {
  background-image: repeating-linear-gradient(
    135deg,
    rgba(212,184,150,0.14),
    rgba(212,184,150,0.14) 10px,
    transparent 10px,
    transparent 22px
  );
}
.decor-mesh {
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(212,184,150,0.26), transparent 60%),
    radial-gradient(800px 500px at 80% 10%, rgba(212,184,150,0.14), transparent 60%),
    radial-gradient(900px 700px at 65% 80%, rgba(255,255,255,0.08), transparent 60%);
}

.decor-gradient-blur { position: relative; }
.decor-gradient-blur::before,
.decor-gradient-blur::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.55;
  background:
    radial-gradient(closest-side, rgba(212,184,150,0.45), transparent 70%),
    radial-gradient(closest-side, rgba(28,25,23,0.20), transparent 70%);
  transform: translate3d(0,0,0);
}
.decor-gradient-blur::after {
  opacity: 0.35;
  filter: blur(55px);
}

.decor-corner-tr { position: relative; }
.decor-corner-tr::before{
  content:"";
  position:absolute;
  top:-1px; right:-1px;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(212,184,150,0.35), transparent 70%);
  pointer-events:none;
}

.decor-corner-bl { position: relative; }
.decor-corner-bl::before{
  content:"";
  position:absolute;
  bottom:-1px; left:-1px;
  width: 160px; height: 160px;
  background: radial-gradient(circle at bottom left, rgba(212,184,150,0.22), transparent 70%);
  pointer-events:none;
}

.decor-glow-element { position: relative; }
.decor-glow-element::before{
  content:"";
  position:absolute;
  inset:auto;
  width: 360px; height: 360px;
  left: 50%; top: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,184,150,0.30), transparent 65%);
  filter: blur(22px);
  pointer-events:none;
  z-index: 0;
}

.decor-subtle { opacity: 0.06; }
.decor-moderate { opacity: 0.10; }
.decor-bold { opacity: 0.18; }

/* Cookie banner subtle entrance */
#cookie-consent { animation: cookieIn 240ms ease-out; }
@keyframes cookieIn {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Small helper for visually consistent section containers if needed */
.container-safe { max-width: 80rem; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }

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