/* ── HQ Pro — Social Proof ──────────────────────────────────────────────── */

.sphq-wrapper {
    margin: 14px 0 18px;
    font-size: 14px;
    line-height: 1.5;
}

/* Badges */
.sphq-badges { display: flex; gap: 8px; margin-bottom: 10px; }

.sphq-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.sphq-badge--popular { background: #f97316; color: #fff; }

/* Lista */
.sphq-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sphq-item { display: flex; align-items: center; gap: 6px; color: #444; }

/* Dot animado */
.sphq-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

.sphq-dot--live {
    background: #f97316;
    box-shadow: 0 0 0 0 rgba(249,115,22,.6);
    animation: sphq-pulse 2s infinite;
}

@keyframes sphq-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(249,115,22,.55); }
    70%  { box-shadow: 0 0 0 7px rgba(249,115,22,0);   }
    100% { box-shadow: 0 0 0 0   rgba(249,115,22,0);   }
}

.sphq-icon { font-style: normal; flex-shrink: 0; }
.sphq-icon--check  { color: #22c55e; font-weight: 700; font-size: 15px; }
.sphq-icon--person { font-size: 15px; color: #666; }

.sphq-item--viewers .sphq-viewers-count { font-weight: 700; color: #f97316; }
.sphq-item--purchases strong { color: #22c55e; }
.sphq-item--buyer strong     { color: #333; }
.sphq-fire { font-size: 14px; line-height: 1; }

/* ── Toast de compra reciente ───────────────────────────────────────────── */

.sphq-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,.13);
    padding: 10px 12px;
    max-width: 260px;
    width: auto;
    font-size: 12px;
    line-height: 1.35;
    color: #333;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .3s ease, transform .3s ease;
}

.sphq-toast--in {
    opacity: 1;
    transform: translateY(0);
}

.sphq-toast-img {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.sphq-toast-body { flex: 1; }

.sphq-toast-product {
    font-weight: 600;
    color: #111;
    text-decoration: underline;
    text-decoration-color: rgba(0,0,0,.2);
}

.sphq-toast-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #bbb;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    align-self: flex-start;
    transition: color .2s;
}

.sphq-toast-close:hover { color: #555; }
