/* Global Styles */
body {
    background-color: #FDFBF7;
    color: #1C1917;
    -webkit-tap-highlight-color: transparent;
}

/* Utilities */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-nav {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
}

/* Custom Components */
.cat-pill.active {
    background-color: var(--brand-dark);
    color: white;
}

/* Stacked Card Effects */
.stacked-card-effect {
    /* Custom transforms if needed beyond Tailwind */
}
