

/* Thumbnail scroll info */
.pls-product-thumb-swiper {
position: relative;
}
.pls-scroll-info {
position: absolute;
bottom: 0px;
right: 0px;
width: 100%;
font-size: 12px;
color: #FFF;
background: #8B0133;
padding: 3px 8px;
border-radius: 6px;
transition: opacity 0.4s ease;
z-index: 10;
pointer-events: none;
text-align:center;
}
       

.woocommerce-product-gallery .pls-product-gallery-btns:has(.pls-custom-product-video-button-wrapper) {
 position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: -3.2rem;
  z-index: 9;
  white-space: nowrap;
  width: max-content;
}

.pls-custom-product-video-button-wrapper {
    margin-top: 0px;
}

.pls-product-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #890133;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: zoom 0.5s ease;
}

.pls-product-video-btn:hover {
    background: #890133;
    zoom: 1.05;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.pls-product-video-btn svg {
    width: 24px;
    height: 24px;
}

.pls-video-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    z-index: 9999999 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pls-video-modal.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

.pls-video-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    cursor: pointer;
    z-index: 9999998 !important;
}

.pls-video-modal-content {
    position: relative !important;
    width: 90% !important;
    max-width: 400px !important;
    z-index: 9999999 !important;
    margin: 0 auto !important;
}

.pls-video-modal-close {
    position: absolute !important;
    top: -50px !important;
    right: 0 !important;
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-size: 48px !important;
    cursor: pointer !important;
    line-height: 1 !important;
    padding: 0 !important;
    width: 48px !important;
    height: 48px !important;
    z-index: 10000000 !important;
    transition: color 0.3s ease;
}

.pls-video-modal-close:hover {
    color: #ccc !important;
}

.pls-video-wrapper {
  aspect-ratio: 9 / 16; 
    background: #000 !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative !important;
    z-index: 9999999 !important;
    margin:auto;
}

.pls-video-container {
    position: relative !important;
    padding-bottom: 56.25% !important;
    max-width: 400px;
  aspect-ratio: 9 / 16; 
    overflow: hidden !important;
    background: #000 !important;
}

.pls-video-container iframe,
.pls-video-container video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999999 !important;
}

@media (max-width: 768px) {
.pls-product-video-btn {
    gap: 5px;
    padding: 12px 12px;
    font-size: 13px;
}
}
@media (max-width: 768px) {

   .woocommerce-product-gallery .pls-product-gallery-btns:has(.pls-custom-product-video-button-wrapper) {
    bottom: -3.4rem;

}
    .pls-video-modal-content {
        width: 95%;
    }

    .pls-video-modal-close {
        top: -45px;
        font-size: 36px;
        width: 36px;
        height: 36px;
    }

    .pls-product-video-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .pls-video-modal-content {
        width: 100%;
    }

    .pls-video-wrapper {
        border-radius: 0;
    }
    
    .pls-product-video-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 12px;
    font-size: 12px;
    }
}

@media (max-width: 640px) {
    .pls-product-gallery-btns .pls-custom-product-video-button-wrapper{
        margin-bottom: 0;
    }
}

.pls-single-product-page .pls-single-product-wrapper:has(.pls-custom-product-video-button-wrapper) {
    margin-bottom: 6rem;
}

.woocommerce-product-gallery__wrapper:has(.pls-custom-product-video-button-wrapper) {
    overflow: visible;
}

@media (max-width: 1024px) {

    .product-thumbnail-left:has(.pls-custom-product-video-button-wrapper) .pls-product-thumbnail-wrapper,
    .product-thumbnail-overlay .pls-product-thumbnail-wrapper {
        margin-top: 4rem;
    }
}

.pls-video-modal iframe {
  pointer-events: none; /* prevents hover overlays */
}