.chapas-slider {
    width: 100%;
    max-width: 1000px;
    margin: 10px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.chapas-slider .swiper-slide {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chapas-slider .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    display: block;
}

.chapas-slider .swiper-button-next,
.chapas-slider .swiper-button-prev {
    color: #00b4d8; /* Matching the beautiful blue from the badges */
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.chapas-slider .swiper-button-next:hover,
.chapas-slider .swiper-button-prev:hover {
    background: #00b4d8;
    color: #fff;
}

.chapas-slider .swiper-button-next:after,
.chapas-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.chapas-slider .swiper-pagination-bullet-active {
    background: #00b4d8;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .chapas-slider .swiper-slide img {
        height: 350px;
    }
}
