/* Full screen background */
.n-storefront-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.95) !important;
    z-index: 999999 !important;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

/* The Box */
.n-storefront-modal {
    background: #1a1a1a;
    width: 95%;
    max-width: 800px;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    border: 1px solid #fe8f22;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

/* The Responsive Video Container - CRITICAL to prevent empty modal */
.video-responsive-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}

.video-responsive-wrapper iframe, 
#storefront_player_node {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.n-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
}