/* ==========================================================================
   NeuroFyre Video Engine - Ultra-Minimal Shoppable Reel
   ========================================================================== */

/* 1. Floating Video Bubble (Nameless, Minimalist) */
#nfvr-bubble {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 95px;
    height: 145px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    z-index: 9998;
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    background: #111;
}

#nfvr-bubble:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.32);
}

#nfvr-bubble video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play Icon Overlay Indicator */
.nfvr-play-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2. Modal Overlay & Container */
.nfvr-hidden {
    display: none !important;
}

#nfvr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nfvr-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nfvr-content {
    position: relative;
    width: 90%;
    max-width: 390px;
    height: 82vh;
    max-height: 700px;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
}

.nfvr-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 3. Close Button */
.nfvr-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    transition: background 0.2s ease;
}

.nfvr-close-btn:hover {
    background: rgba(0, 0, 0, 0.75);
}

/* 4. Luxury Product Overlay Card */
.nfvr-card {
    position: absolute;
    bottom: 20px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.nfvr-card img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
}

.nfvr-info {
    flex: 1;
    min-width: 0;
}

.nfvr-info h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.2px;
}

.nfvr-price {
    font-size: 12px;
    color: #444;
    margin-top: 3px;
    font-weight: 500;
}

.nfvr-price del {
    color: #888;
    margin-right: 4px;
}

.nfvr-price ins {
    text-decoration: none;
    color: #111;
    font-weight: 700;
}

.nfvr-cart-btn {
    background: #111111;
    color: #ffffff !important;
    padding: 9px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.nfvr-cart-btn:hover {
    background: #333333;
}