.carousel-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--light-color);
}

.carousel-inner {
    border-radius: 10px;
    overflow: hidden;
}

.carousel-item {
    height: 600px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.02);
}

.carousel-control-prev, .carousel-control-next {
    width: 10%;
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel-container:hover .carousel-control-prev,
.carousel-container:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--secondary-color);
    border-radius: 50%;
    padding: 30px;
}

.carousel-indicators {
    margin-bottom: -10px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

.mode-switch {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
} 