.product-video-popup-wrapper {
    display: inline-block;
    margin: 10px 0;
}

.product-video-popup-link.pvp-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #007cba;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-video-popup-link.pvp-button:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-video-popup-link.pvp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #007cba;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-video-popup-link.pvp-link:hover {
    color: #005a87;
    text-decoration: underline;
}

.product-video-popup-link.pvp-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #007cba;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.product-video-popup-link.pvp-icon-button:hover {
    background: #005a87;
    transform: scale(1.1);
}

.pvp-icon {
    line-height: 1;
}

.pvp-text {
    display: inline-block;
}

/* Popup Styles */
.pvp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pvp-popup[aria-hidden="false"] {
    display: flex;
    opacity: 1;
}

.pvp-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.pvp-popup-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 1000000;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.pvp-popup[aria-hidden="false"] .pvp-popup-container {
    transform: translateY(0);
}

.pvp-popup-content {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pvp-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 19px;
    height: 15px;
    /* background: rgba(0, 0, 0, 0.7) !important; */
    background: #ffffff2b !important;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 0;
    z-index: 1000001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 15px;
}

/* .pvp-close:hover {
    background: #ff0000;
    transform: rotate(90deg);
} */

.pvp-video-container {
    width: 100%;
    position: relative;
}

.pvp-video-container iframe,
.pvp-video-container video {
    display: block;
    width: 100%;
    height: 100vh;
    /* aspect-ratio: 16/9; */
    border: none;
    outline: none;
}

.pvp-error {
    color: #ff0000;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #ff0000;
    border-radius: 4px;
    background: rgba(255, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .pvp-popup-container {
        width: 95%;
        max-width: 95%;
    }
    
    .product-video-popup-link.pvp-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .product-video-popup-link.pvp-icon-button {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* Disable body scroll when popup is open */
body.pvp-popup-open {
    overflow: hidden;
}

 .preview-video-soon {
  color: #dd1f5b;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
    font-family: 'Poppins';
}