
.wc-pgs-slider-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden; /* Prevent horizontal overflow */
}

.wc-pgs-slider-container .swiper-container {
    width: 100%;
    height: auto;
}

.wc-pgs-slider-container .swiper-slide img,
.wc-pgs-slider-container .swiper-slide video,
.wc-pgs-slider-container .swiper-slide iframe {
    width: 100%;
    height: auto;
}

.thumbnail-slider {
    margin-top: 10px;
    position: relative;
}

.thumbnail-slider .swiper-slide {
    width: 25%;
    text-align: center;
}

.thumbnail-slider .swiper-wrapper {
    display: flex; /* Ensure flexbox is used for layout */
}

/* .main-slider {
    margin-bottom: 20px;
} */

.thumbnail-slider .swiper-button-next,
.thumbnail-slider .swiper-button-prev {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    top: 60%; /* Adjust this value to move the arrows lower for the thumbnail slider */
    color: rgba(7, 95, 171, 0.2); /* Set the arrow color with the desired opacity */
}

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

.video-container {
    position: relative;
    display: inline-block;
}

.video-container img {
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay,
.video-container .video-overlay {
    opacity: 1;
}

.badge {
    position: absolute;
    top: 10px;
    padding: 5px 10px;
    color: #fff;
    /* font-size: 14px; */
    font-size: 1.5em;
    font-weight: bold;
    z-index: 10;
    border-radius: 10px;
}

.new-badge {
    left: 10px;
    background-color: #DA4C26; /* Green */
}

.sale-badge {
    right: 10px;
    background-color: #DA4C26; /* Red */
}

.wc-pgs-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.wc-pgs-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
}

.wc-pgs-modal-content img {
    width: 100%;
    height: auto;
}

.wc-pgs-modal-content iframe {
    width: 100%;
    height: 80vh;
    display: block;
    margin: auto;
}

.wc-pgs-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.wc-pgs-close:hover,
.wc-pgs-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.wc-pgs-slider-container .swiper-slide img {
    cursor: pointer; /* Add this line to change the cursor to a pointer on hover */
}

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    opacity: 0.3;
    color: #075fab;   
}