/* ==================== CAROUSEL ==================== */
.gallery-carousel {
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-container {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(232, 240, 228, 0.3) 0%, rgba(212, 163, 115, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(45, 90, 39, 0.2);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Buttons */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 90, 39, 0.8);
    color: white;
    border: none;
    font-size: 24px;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 8px;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(45, 90, 39, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Dots Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(45, 90, 39, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(45, 90, 39, 0.6);
    transform: scale(1.15);
}

.dot.active {
    background: var(--primary-color);
    width: 14px;
    height: 14px;
    box-shadow: 0 0 10px rgba(45, 90, 39, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-wrapper {
        height: 300px;
    }

    .carousel-prev,
    .carousel-next {
        padding: 10px 14px;
        font-size: 18px;
        left: 10px;
        right: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 640px) {
    .carousel-wrapper {
        height: 220px;
    }

    .carousel-container {
        padding: 20px;
    }

    .carousel-prev,
    .carousel-next {
        padding: 8px 12px;
        font-size: 16px;
    }

    .carousel-dots {
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 12px;
        height: 12px;
    }
}
