.carousel-track {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.carousel-track > * { scroll-snap-align: start; }
.carousel-arrow {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.carousel-wrapper:hover .carousel-arrow { opacity: 1; }

.hero-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-carousel-slide {
    min-width: 100%;
}
.hero-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
}
.hero-carousel-dot.active {
    background: #f59e0b;
    width: 24px;
    border-radius: 4px;
}

.category-btn {
    transition: all 0.2s;
}
.category-btn.active {
    background: #1e293b;
    color: white;
}
.dark .category-btn.active {
    background: #f59e0b;
    color: #0f172a;
}
