:root {
  --color-primary: #1F2937;
  --color-secondary: #374151;
  --color-accent: #64748B;
}

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { font-family: 'Manrope', system-ui, sans-serif; }

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

.container-safe {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

button, .btn, [class*="btn-"], a[href="#order_form"], .cta-btn {
  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%;
}

:focus-visible {
  outline: 3px solid rgba(100, 116, 139, 0.45);
  outline-offset: 2px;
  border-radius: 12px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.glow-accent {
  box-shadow: 0 12px 40px rgba(100, 116, 139, 0.25);
}

.hr-fade {
  height: 1px;
  background: linear-gradient(to right, rgba(0,0,0,0), rgba(148,163,184,0.6), rgba(0,0,0,0));
}

.card-sheen {
  position: relative;
  overflow: hidden;
}
.card-sheen::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.16), rgba(255,255,255,0) 55%);
  transform: rotate(22deg);
  pointer-events: none;
}

#cookie-consent .shadow-2xl {
  box-shadow: 0 25px 80px rgba(0,0,0,0.25);
}

input::placeholder, textarea::placeholder { color: #9CA3AF; }

input[type="checkbox"] {
  accent-color: var(--color-accent);
}

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