/* ==========================================================================
   SISTEMA DE NOTIFICACIONES PUSH WEB — BANNER DE DESCUENTOS
   ========================================================================== */

#push-notifications-banner.push-banner-container {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9995;
    max-width: 440px;
    width: calc(100% - 50px);
    pointer-events: none;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.35s ease;
}

@media (max-width: 768px) {
    #push-notifications-banner.push-banner-container {
        bottom: 85px;
        left: 15px;
        right: 15px;
        max-width: none;
        width: auto;
    }
}

#push-notifications-banner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

#push-notifications-banner.hide {
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    pointer-events: none;
}

.push-banner-content {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.96), rgba(26, 38, 66, 0.96));
    border: 1.5px solid var(--color-accent, #D4AF37);
    border-radius: 20px;
    padding: 16px 18px;
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 20px rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.push-banner-icon-wrap {
    position: relative;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #D4AF37, #F3E5AB);
    color: #0B132B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    flex-shrink: 0;
}

.push-bell-anim {
    animation: bellRing 3s infinite ease-in-out;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(14deg); }
    20%, 40% { transform: rotate(-14deg); }
    50% { transform: rotate(0); }
}

.push-badge-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-success, #10B981);
    border: 2px solid #0B132B;
}

.push-banner-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1 1 auto;
    min-width: 0;
}

.push-banner-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--color-accent, #D4AF37);
    letter-spacing: 0.3px;
}

.push-banner-desc {
    margin: 0;
    font-size: 11px;
    font-weight: 500;
    color: #cbd5e1;
    line-height: 1.35;
}

.push-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.btn-push-allow {
    padding: 8px 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #10B981, #059669);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
    transition: all 0.2s ease;
}

.btn-push-allow:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5);
}

.btn-push-dismiss {
    padding: 4px 8px;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-push-dismiss:hover {
    color: #ffffff;
}
