.vuv-reel-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.vuv-reel-modal[open] {
    display: flex;
}
.vuv-reel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
}
.vuv-reel-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
}
.vuv-reel-media {
    flex: 1;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.vuv-reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vuv-reel-info {
    padding: 20px;
    background: var(--color-white);
    border-top: 1px solid #eaeaea;
}
.vuv-reel-title {
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.vuv-reel-price {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.vuv-reel-nav {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background: var(--color-ivory);
}
.vuv-reel-nav button {
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    color: var(--color-charcoal);
}
.vuv-reel-nav button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (min-width: 768px) {
    .vuv-reel-container {
        height: 90vh;
        border-radius: 8px;
        overflow: hidden;
    }
}
