/* Container for each reel */
.video-shopper-reel {
    position: relative;
    width: 240px; /* you can change to fit your design */
    height: 515px; /* vertical aspect like TikTok */
    margin: 20px auto;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Video styling */
.vs-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Shop Now button overlay */
.vs-shop-btn {
    position: absolute;
    bottom: 95px;
    right: 15px;
    background-color: white !important;
    color: black !important;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

/* Modal styling - slides up like TikTok */
.vs-modal {
    position: absolute;
    bottom: 0;
    left: 0;
    top:22px;
    width: 100%;
    max-height: 88%; /* takes bottom portion */
    background: white;
    color: #fff;
    display: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow-y: auto;
    padding: 15px;
    z-index: 20;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
}

/* Modal inner */
.vs-inline-modal h3 {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color:black;
}

/* Product list */
.vs-product-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vs-product-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Product image */
.vs-product-list img {
    border-radius: 10px;
    max-width: 70px;
    height: auto;
}

/* Product info */
.vs-product-info {
    margin-left: 10px;
    flex: 1;
    color:black;
}

.vs-product-info h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
}

.vs-product-info div {
    font-size: 13px;
    margin-bottom: 5px;
}

/* Add to cart button inside modal */
.vs-add-to-cart {
    background: #ff0050;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    margin-right: 5px;
}

/* View product link */
.vs-inline-modal a {
    color: #fff;
    font-size: 12px;
    text-decoration: underline;
}

/* Close button */
.vs-close {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 8px 0;
    border-radius: 20px;
    cursor: pointer;
}
