/* ================= Swiper 3D Coverflow Showcase Styles ================= */
.swiper_coverflow_section {
    position: relative;
    background: #ffffff;
    /*padding: 40px;*/
    overflow: hidden;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.swiper_coverflow_section .section_heading .main_title {
    /*color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;*/
    padding: 40px;
}

/*.swiper_coverflow_section .section_heading .main_title span {
    color: #c59b27;
}
*/
.swiper-coverflow-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.swiperCoverflow {
    width: 100%;
    padding-top: 25px;
    padding-bottom: 70px;
}

.swiperCoverflow .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 450px;
    max-width: 450px;
    height: 450px;
    max-height: 450px;
    border-radius: 18px;
    overflow: hidden;
    border: 5px solid #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    box-sizing: border-box;
}

.swiperCoverflow .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
    user-select: none;
    -webkit-user-drag: none;
}

/* Swiper Navigation Arrows */
.swiperCoverflow .swiper-button-prev,
.swiperCoverflow .swiper-button-next {
    color: #ffffff;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(4px);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.swiperCoverflow .swiper-button-prev:hover,
.swiperCoverflow .swiper-button-next:hover {
    background: #c59b27;
    color: #ffffff;
    transform: scale(1.08);
}

.swiperCoverflow .swiper-button-prev::after,
.swiperCoverflow .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .swiperCoverflow .swiper-slide {
        width: 280px;
        height: 280px;
        border-radius: 16px;
        border: 4px solid #ffffff;
    }

    .swiperCoverflow .swiper-slide img {
        border-radius: 12px;
    }

    .swiperCoverflow .swiper-button-prev,
    .swiperCoverflow .swiper-button-next {
        display: none;
    }
}