/* ===== PRODUCT VIDEO EMBED ===== */

.video-embed-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background-size: cover;
    background-position: center;
    cursor: default;
}

.video-placeholder.has-video {
    cursor: pointer;
}

.video-placeholder.has-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.35);
    transition: background 0.3s ease;
}

.video-placeholder.has-video:hover::before {
    background: rgba(10, 14, 26, 0.5);
}

.video-placeholder-icon {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    transition: all 0.3s ease;
}

.video-placeholder-icon i {
    margin-left: 4px;
}

.video-placeholder.has-video:hover .video-placeholder-icon {
    background: #00b6de;
    border-color: #00b6de;
    transform: scale(1.08);
}

.video-placeholder-text {
    position: relative;
    color: white;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.video-embed-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-consent-gate {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 32px;
}

.video-consent-gate p {
    max-width: 380px;
    font-size: 15px;
    line-height: 1.6;
    color: #d8e4ea;
}

@media (max-width: 768px) {
    .video-placeholder-icon {
        width: 64px;
        height: 64px;
        font-size: 20px;
    }

    .video-placeholder-text {
        font-size: 13px;
    }
}
