.video-feed {
    height: 100vh;
    height: 100dvh; /* Soporte para altura dinámica en móviles */
    overflow: hidden; /* Evitar desbordamiento */
    scroll-snap-type: none; /* Desactivar snapping para soporte de drag */
    background: #000;
    -webkit-overflow-scrolling: touch; /* Mejor scrolling en iOS */
    scrollbar-width: none; /* Ocultar scrollbar en Firefox */
    -ms-overflow-style: none; /* Ocultar scrollbar en IE/Edge */
    position: fixed; /* Asegurar que ocupe toda la pantalla */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999; /* Asegurar que esté por encima de otros elementos */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out; /* Suavizar el movimiento */
}

.video-feed::-webkit-scrollbar {
    display: none; /* Ocultar scrollbar en Chrome/Safari */
}

.video-slide {
    position: relative;
    height: 100vh;
    height: 100dvh; /* Soporte para altura dinámica en móviles */
    scroll-snap-align: start; /* Ajustar snapping al inicio */
    scroll-snap-stop: always; /* Forzar el snap */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    width: 100vw; /* Asegurar que ocupe todo el ancho */
    overflow: hidden; /* Prevenir desbordamiento */
}

.video-slide iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-slide .product-info {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
    text-align: center;
    z-index: 10;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.video-slide .product-info h2 {
    margin: 0 0 10px;
    font-size: 1.5em;
    color: #fff;
}

.video-slide .product-info .price {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #fff;
}

.video-slide .buy-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.video-slide .buy-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.video-slide .unmute-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-slide .unmute-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.video-slide .unmute-btn svg {
    width: 24px;
    height: 24px;
}

.video-slide .unmute-btn.muted .unmuted-icon {
    display: none;
}

.video-slide .unmute-btn:not(.muted) .muted-icon {
    display: none;
}