/**
 * Affarinoro Social Proof Popup Styles
 */

/* Container principale - fixed in basso */
.affarinoro-sp-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    pointer-events: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Barra statistiche centrale - Colori brand Affarinoro */
.affarinoro-sp-stats-bar {
    background: linear-gradient(135deg, #173f76 0%, #1a4a8a 50%, #173f76 100%);
    color: #ffffff;
    text-align: center;
    padding: 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.affarinoro-sp-stats-bar .highlight {
    color: #d4af37;
    font-weight: 700;
    font-size: 16px;
}

.affarinoro-sp-stats-bar .gold-icon {
    display: inline-block;
    margin-right: 8px;
}

/* Versioni testo desktop/mobile - DEFAULT: mostra desktop, nascondi mobile */
.affarinoro-sp-stats-bar .stats-mobile {
    display: none !important;
}

.affarinoro-sp-stats-bar .stats-desktop {
    display: inline !important;
}

/* Container notifiche - CENTRATO */
.affarinoro-sp-notifications {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 380px;
    padding: 0 0 10px;
    pointer-events: none;
}

/* Singola notifica - Colori brand Affarinoro */
.affarinoro-sp-notification {
    background: linear-gradient(135deg, #173f76 0%, #1a4a8a 50%, #173f76 100%);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 14px 18px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
    pointer-events: auto;
    border-left: 4px solid #d4af37;
}

.affarinoro-sp-notification.visible {
    opacity: 1;
    transform: translateY(0);
}

.affarinoro-sp-notification.hiding {
    opacity: 0;
    transform: translateY(-10px);
}

/* Icona notifica - Oro */
.affarinoro-sp-notification-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1628;
    font-size: 18px;
}

/* Contenuto notifica */
.affarinoro-sp-notification-content {
    flex: 1;
    line-height: 1.4;
}

.affarinoro-sp-notification-text {
    color: #ffffff;
    font-size: 13px;
}

.affarinoro-sp-notification-text strong {
    color: #d4af37;
    font-weight: 600;
}

.affarinoro-sp-notification-time {
    font-size: 11px;
    color: #888888;
    margin-top: 2px;
}

/* Icona checkmark SVG inline */
.affarinoro-sp-checkmark {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Icona oro/moneta */
.affarinoro-sp-gold-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 480px) {
    .affarinoro-sp-notifications {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        max-width: calc(100% - 20px);
        width: calc(100% - 20px);
    }

    .affarinoro-sp-stats-bar {
        font-size: 11px;
        padding: 12px 10px;
        min-height: 50px;
        line-height: 1.3;
    }

    .affarinoro-sp-stats-bar .highlight {
        font-size: 13px;
    }

    .affarinoro-sp-stats-bar .gold-icon {
        display: none; /* Nascondi icona su mobile per risparmiare spazio */
    }

    .affarinoro-sp-stats-bar .stats-desktop {
        display: none !important;
    }

    .affarinoro-sp-stats-bar .stats-mobile {
        display: inline !important;
    }

    /* Rimosso duplicato - già definito sopra */

    .affarinoro-sp-notification {
        padding: 12px 14px;
    }

    .affarinoro-sp-notification-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }

    .affarinoro-sp-notification-text {
        font-size: 12px;
    }
}

/* Extra small mobile */
@media (max-width: 360px) {
    .affarinoro-sp-stats-bar {
        font-size: 10px;
        padding: 10px 8px;
    }

    .affarinoro-sp-stats-bar .highlight {
        font-size: 12px;
    }
}

/* Animazione pulse per il numero */
@keyframes affarinoro-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.affarinoro-sp-stats-bar .highlight.pulse {
    animation: affarinoro-pulse 0.5s ease-in-out;
}
