:root {
  --color-primary: #0F2027;
  --color-secondary: #1A3A40;
  --color-accent: #00F5A0;
  --color-bg-light: #ECFDF5;
  --color-bg-alt: #D1FAE5;
}

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

/* Button fixes - prevent text overflow */
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 full width exception */
form button[type="submit"] {
  white-space: normal;
  width: 100%;
}

/* Animation classes */
[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);
}

/* FAQ accordion rotation */
.rotate-180 { transform: rotate(180deg); }
