:root {
  --color-primary: #0A0A0A;
  --color-secondary: #1A1A1A;
  --color-accent: #D4AF37;
}

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

::selection { background: rgba(212, 175, 55, 0.28); }

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

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

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

.header-solid {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-link {
  color: rgba(255,255,255,0.85);
}
.header-link:hover {
  color: rgba(255,255,255,1);
}

.gold-ring {
  box-shadow: 0 0 0 1px rgba(212,175,55,0.28) inset;
}

.shine {
  position: relative;
  overflow: hidden;
}
.shine::after{
  content:'';
  position:absolute;
  top:-20%;
  left:-60%;
  width:40%;
  height:160%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 900ms ease;
}
.shine:hover::after { left: 140%; }

.focus-ring:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.25);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.22);
  border-color: rgba(212,175,55,0.55);
}

#cookie-consent a { color: var(--color-accent); }

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