/* Minimal custom styles: print and helpers */
@media print {
  header, footer, nav { display: none !important; }
  a { color: #000; text-decoration: none; }
}

.star-rating svg { display: inline-block; vertical-align: middle; }

html { scroll-behavior: smooth; }

/* Tailwind handles fonts via assets/css/tailwind.css */

/* Hide number input spinners */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] { -moz-appearance: textfield; }

/* Inline error state */
[aria-invalid="true"] { border-color: #ef4444 !important; box-shadow: 0 0 0 1px rgba(239,68,68,.2); }
