/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #fff;
    border-radius: 8px 8px 0 0;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.carousel-item img {
    object-fit: contain;
    padding: 10px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.carousel:hover .carousel-control {
    opacity: 1;
}

.carousel-control.prev {
    right: 10px;
}

.carousel-control.next {
    left: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--orange);
}