/* Slider Customization */
.slider-wrapper {
    max-width: 440px;
    /* Adjusted size */
    margin: 0 auto;
}

.swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    /* Ensure no scrollbars */
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Pagination Customization */
.swiper-pagination {
    position: relative !important;
    /* Move it to page flow */
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 16px;
    /* Space below the image */
    text-align: center;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d6d3d1;
    /* stone-300 */
    opacity: 1;
    margin: 0 4px !important;
    /* Added horizontal spacing */
}

.swiper-pagination-bullet-active {
    background: #57534e;
    /* stone-600 */
}

/* Navigation Buttons Customization */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

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