.carousel-container {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 30px;
}

.slide {
    /* border-radius: 15px; */
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
}

.slide-main {
    width: 500px;
    height: 700px;
    z-index: 15;
    transform: scale(1);
}

.slide-side {
    width: 350px;
    height: 500px;
    z-index: 10;
    opacity: 0.8;
    transform: scale(0.9);
}

.slide:hover {
    transform: scale(1.02);
}

.slide-side:hover {
    transform: scale(0.95);
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    transition: transform 0.3s ease;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    pointer-events: none;
    z-index: 25;
}

.control-btn {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 30;
}

.thumbnails-container {
    padding: 40px 20px;
    margin-top: 5rem;
}

.thumbnails-row {
    display: flex;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.thumbnail {
    flex: 1;
    max-width: 180px;
    height: 240px;
    /* border-radius: 10px; */
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    /* border: 3px solid transparent; */
    position: relative;
}

.thumbnail.active {
    border-color: #4ecdc4;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.thumbnail:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.05);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1200px) {
    .slide-main {
        width: 400px;
        height: 600px;
    }

    .slide-side {
        width: 280px;
        height: 400px;
    }

    .carousel-container {
        gap: 20px;
    }

    .thumbnail {
        max-width: 140px;
        height: 190px;
    }
}

@media (max-width: 768px) {
    .slide-main {
        width: 700px;
        height: 480px;
    }

    .slide-side {
        width: 200px;
        height: 300px;
    }

    .carousel-container {
        gap: 15px;
        height: 60vh;
    }

    .control-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .thumbnail {
        max-width: 100px;
        height: 140px;
    }

    .thumbnails-row {
        gap: 10px;
    }

    .thumbnails-container {
        margin-top: 0rem;
    }
}