/* collection-profile.css - Clean CSS overrides using custom properties */

* {
    box-sizing: border-box;
    font-family: 'Sahel', system-ui, -apple-system, sans-serif;
}


/* Hide scrollbars for tab navigation while enabling smooth touch scroll */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom transitions and dynamic color support */
.tab-content {
    animation: fadeIn 0.25s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}