:root {
  --color-primary: #2C3E50;
  --color-secondary: #3D5266;
  --color-accent: #48C9B0;
  --color-bg-light: #F0FDFA;
  --color-bg-alt: #CCFBF1;
}

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

::selection { background: rgba(72, 201, 176, 0.25); }

.header-transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header-transparent .header-link,
.header-transparent .header-text,
.header-transparent .header-subtext {
  color: rgba(255,255,255,0.92);
}

.header-transparent .header-subtext { color: rgba(255,255,255,0.72); }

.header-transparent #mobile-menu-btn {
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.15);
}

.header-solid {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.header-transparent.is-solid {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.header-transparent.is-solid .header-link,
.header-transparent.is-solid .header-text { color: rgb(17,24,39); }

.header-transparent.is-solid .header-subtext { color: rgb(107,114,128); }

.header-transparent.is-solid #mobile-menu-btn {
  color: rgb(17,24,39);
  border-color: rgba(229,231,235,1);
  background: rgba(255,255,255,0.9);
}

/* 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: 0.5rem;
}

form button[type="submit"] {
  white-space: normal;
  width: 100%;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid rgba(72, 201, 176, 0.8);
  outline-offset: 2px;
}

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

[data-animate].is-visible {
  opacity: 1;
  transform: translateX(0);
}

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

#cookie-consent.hidden { display: none; }

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