/* Carousel styles */
.carousel {
    margin-top: 14px;
    background: transparent;
    position: relative;
}
.carousel .slides {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}
.carousel .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.carousel .slide.active {
    opacity: 1;
    position: relative;
}
.carousel .slide img {
    width: 100%;
    height: auto;
    display: block;
}
.carousel .dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 6px;
    pointer-events: auto;
}
.carousel .dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.carousel .dots button.active {
    background: #0b6b34;
    transform: scale(1.1);
}

