:root {
  --color-primary: #1B4332;
  --color-secondary: #2D6A4F;
  --color-accent: #40C057;
}

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

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

/* Animation (Zoom In) */
[data-animate] {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease-out;
}

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

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

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

/* Improve tap targets */
a, button {
  -webkit-tap-highlight-color: transparent;
}

/* FAQ content transition helper */
.faq-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-content.is-open {
  max-height: 1000px;
}