/* .myMainSwiper */
.myMainSwiper {
    width: 100%;
    height: 100%;
}

.myMainSwiper .swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.myMainSwiper .slide-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.myMainSwiper .slide-content-wrapper img {
    width: 100%;
    height: calc(100vh - 160px);
    object-fit: cover;
    display: block;
}

/* Overlay */
.myMainSwiper .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* semi-transparent overlay */
    z-index: 1;
}

/* Caption */
.myMainSwiper .slide-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 80%;
}

.myMainSwiper .slide-caption h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.myMainSwiper .slide-caption p {
    font-size: 18px;
    color: #ddd;
}

/* Pagination Bullets */
.myMainSwiper .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #ffffff;
    opacity: 1;
    background: #000;
}

.myMainSwiper .swiper-pagination-bullet-active {
    color: #fff;
    background: #2A8A91;
}



/* Category Swiper */
.swiper-button-next.custom-nav,
.swiper-button-prev.custom-nav {
    background-color: #2A8A91;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin-top: -35px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.swiper-button-next.custom-nav:hover,
.swiper-button-prev.custom-nav:hover {
    background-color: #309b9f;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.image-overlay-container {
    position: relative;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay-container:hover .image-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 32px;
    color: #fff;
    pointer-events: none;
}



/* .swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    background: #000;
    color: #000;
} */

.product-details-swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.product-details-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
}

.singleProductMainImageSwiper {
    height: 80%;
    width: 100%;
}

.singleProductOtherImageSwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.singleProductOtherImageSwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.singleProductOtherImageSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.product-details-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.singleProductMainImageSwiper .swiper-slide img {
    width: 100%;
    height: 450px;
}