.promo-floating-master {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 280px;
    /* Un número exagerado para asegurar que nada lo tape */
    z-index: 9999999 !important; 
    transform: translateX(150%);
    transition: transform 0.3s ease-out;
}

.promo-floating-master.show {
    transform: translateX(0);
}

/* El resto del estilo (colores, bordes) se mantiene igual */
.promo-card {
    background: #121212;
    color: #fff;
    border: 2px solid #01aec9; /* Tu color naranja vibrante */
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.promo-badge {
    background: #01aec9;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.discount-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #01aec9;
    margin: 10px 0;
}

.promo-btn {
    display: block;
    margin-top: 15px;
    background: #01aec9;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s;
}

.promo-btn:hover {
    background: #01aec9;
    transform: scale(1.03);
}

.close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Soporte para móviles */
@media (max-width: 480px) {
    .promo-floating-master {
        right: 15px;
        left: 15px;
        width: auto;
    }
}