/* Carousel container */
.carousel-container {
    position: relative;
    padding: 40px 0;
}

/* Navigation arrows - make them visible */
.carousel-container .slick-prev,
.carousel-container .slick-next {
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(228, 141, 28, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-container .slick-prev:hover,
.carousel-container .slick-next:hover {
    background: rgba(169, 129, 77, 1);
}

.carousel-container .slick-prev {
    left: 20px;
}

.carousel-container .slick-next {
    right: 20px;
}

.carousel-container .slick-prev:before,
.carousel-container .slick-next:before {
    font-size: 30px;
    opacity: 1;
    color: #fff;
}

/* Slide wrapper */
.album-slide-wrapper {
    padding: 15px;
    transition: all 0.3s ease;
}

/* Album cards - beautiful for ALL albums */
.album-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    height: 100%;
}

/* Inactive cards - still beautiful but subtle */
.album-card.inactive {
    transform: scale(0.9);
    opacity: 0.7;
}

.album-card.inactive:hover {
    opacity: 0.85;
    transform: scale(0.92);
}

/* Active card - emphasized */
.album-card.active {
    border-color: #a9814d;
    box-shadow: 0 8px 24px rgba(169, 129, 77, 0.3);
    transform: scale(1);
}

/* Album images */
.album-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #f8f9fa;
}

/* Album title */
.album-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    text-align: center;
}

.album-card.inactive .album-title {
    font-size: 0.95rem;
}

/* Tracks section - only visible on active */
.album-tracks {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.tracks-title {
    font-size: 1rem;
    color: #a9814d;
    margin-bottom: 15px;
    font-weight: 600;
}

.track-item {
    margin-bottom: 15px;
}

.track-name {
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 0.9rem;
}

.track-audio {
    width: 100%;
    height: 35px;
}

/* Slick list and track */
.slick-list {
    min-height: 480px;
    overflow: visible;
    padding: 20px 0 !important;
}

.slick-track {
    display: flex;
    align-items: center;
}

/* Dots */
.carousel-container .slick-dots {
    bottom: -40px;
}

.carousel-container .slick-dots li button:before {
    font-size: 12px;
    color: #a9814d;
}

.carousel-container .slick-dots li.slick-active button:before {
    color: #a9814d;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .album-image {
        height: 150px;
    }

    .album-title {
        font-size: 0.95rem;
    }

    .slick-list {
        min-height: 380px;
    }

    .carousel-container .slick-prev,
    .carousel-container .slick-next {
        width: 40px;
        height: 40px;
    }

    .carousel-container .slick-prev {
        left: 5px;
    }

    .carousel-container .slick-next {
        right: 5px;
    }
}
