/* Coverflow Carousel */
.coverflow-section {
    width: 100%;
    padding: 1rem 0 2rem;
    overflow: hidden;
}

.coverflow-container {
    position: relative;
    width: 100%;
    height: 900px;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverflow-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.coverflow-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 360px;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    user-select: none;
}

.coverflow-slide img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    transition: filter 0.5s ease;
}

.coverflow-slide.active img {
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.8));
}

.coverflow-slide.side img {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4)) brightness(0.7);
}

.coverflow-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.coverflow-btn {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.coverflow-btn:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.1);
}

.coverflow-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.coverflow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    padding: 0;
}

.coverflow-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
}

@media (max-width: 600px) {
    .coverflow-container {
        height: 600px;
    }
    .coverflow-slide {
        width: 240px;
    }
}
