/*
 * ============================================================
 * 09 — POPUP HOT  (.hot-glassy-popup)
 * Apatinis "🔥 Žmonės pasinaudojo" notifikacijos popup.
 * Turinys valdomas per WordPress Admin → Hot Glassy Popup.
 * ============================================================
 */

.hot-glassy-popup {
    position: fixed;
    bottom: 20px;
    right: 5%;
    background: rgba(8, 18, 40, 0.50);
    border-radius: var(--sg-radius);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border: 1px solid var(--sg-violet-border);
    box-shadow:
        0 0 20px rgba(37, 99, 235, 0.15),
        0 0 50px rgba(37, 99, 235, 0.05);
    padding: 15px 20px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hot-glassy-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.hot-glassy-popup::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--sg-radius);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(96, 165, 250, 0.10));
    opacity: 0.6;
    z-index: 0;
    transition: opacity var(--sg-transition), transform var(--sg-transition);
}

.hot-glassy-popup .popup-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hot-glassy-popup .fire-icon {
    margin-right: 8px;
    font-size: 18px;
}

/* Mobile */
@media (max-width: 768px) {
    .hot-glassy-popup {
        width: 90%;
        right: 5%;
        bottom: 10px;
    }

    .hot-glassy-popup .popup-text {
        font-size: clamp(12px, 3vw, 14px);
        white-space: nowrap;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .hot-glassy-popup {
        width: 380px;
        left: 20px;
        right: auto;
        bottom: 20px;
    }
}
