/* ==========================================================================
   BARRA SUPERIOR (MOVIMIENTO INFINITO)
   ========================================================================== */
   #vp-promo-bar {
    background: #000000;
    color: #FFD700; /* Dorado */
    height: 45px; /* Altura fija para control total */
    font-weight: bold;
    font-family: 'Montserrat', sans-serif, Arial;
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%;
    z-index: 9998; /* Un nivel debajo del popup y carritos altos */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    overflow: hidden; 
    display: flex;
    align-items: center; /* Centrado vertical */
}

/* El ticker es el contenedor que se anima */
.vp-ticker {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%; 
    animation: vp-marquee-infinite 20s linear infinite;
}

.vp-ticker span {
    display: inline-block;
    padding-right: 100px; 
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 45px; /* Centrado de texto */
}

@keyframes vp-marquee-infinite {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* ==========================================================================
   POPUP / MODAL
   ========================================================================== */
#vp-promo-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000000;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Empieza invisible para el efecto de entrada */
    transition: opacity 0.3s ease-in-out;
    display: none;
}

.vp-modal-content {
    position: relative;
    max-width: 500px;
    width: 90%;
    margin: 20px;
}

.vp-modal-content img {
    width: 100%;
    height: auto;
    display: block;
    border: 4px solid #673AB7; /* Morado */
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(103, 58, 183, 0.6);
}

.vp-close {
    position: absolute;
    top: -15px; right: -15px;
    background: #00BCD4; /* Turquesa */
    color: white;
    width: 35px; height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
    font-weight: bold;
    font-size: 24px;
    border: 2px solid white;
    transition: transform 0.2s ease;
}

.vp-close:hover {
    transform: scale(1.1);
    background: #673AB7;
}

/* AJUSTES MÓVIL */
@media (max-width: 600px) {
    #vp-promo-bar { height: 40px; }
    .vp-ticker span { font-size: 14px; line-height: 40px; }
    .vp-ticker { animation-duration: 15s; }
}