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

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

::selection { background: rgba(31,41,55,.18); }

.container-pad { padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px){ .container-pad { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px){ .container-pad { padding-left: 2rem; padding-right: 2rem; } }

/* 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, button { -webkit-tap-highlight-color: transparent; }

/* Inputs */
input, select, textarea {
  outline: none;
}
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 4px rgba(100, 116, 139, .18);
  border-color: rgba(100, 116, 139, .55);
}

/* Animations (zoom_in) */
[data-animate] {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  will-change: opacity, transform;
}
[data-animate].is-visible {
  opacity: 1;
  transform: scale(1);
}

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

/* FAQ minimal */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}
.faq-item.is-open .faq-answer { max-height: 420px; }

/* Sticky header offset for anchor targets */
[id] { scroll-margin-top: 7.25rem; }

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