:root {
  --color-primary: #3D2C2C;
  --color-secondary: #5A4040;
  --color-accent: #FFAB91;
}

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

::selection {
  background: rgba(255, 171, 145, 0.35);
  color: #111827;
}

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

/* Mobile menu */
body.menu-open { overflow: hidden; }

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

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

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

/* Input improvements */
input, textarea, select {
  outline: none;
}
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 4px rgba(255, 171, 145, 0.28);
  border-color: rgba(255, 171, 145, 0.85);
}