:root {
  --primary-main: #8E1C24;
  --primary-dark: #6E1218;
  --accent-gold: #E5A93C;
  --success-main: #16A34A;
  --bg-app: #F8FAFC;
  --bg-surface: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Wizard Animations */
.wizard-step { display: none; animation: fadeIn 0.3s ease-out; }
.wizard-step.active { display: flex; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
