/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #b91c1c; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #991b1b; }

/* Hide scrollbar for carousel but allow scrolling */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Accordion transition */
.accordion-content { transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out; }

/* Page fade-in on load */
body { animation: fadeIn 0.4s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
