
.wc-premium-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}
.wc-stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.badge-sold {
    background-color: #fff1f2;
    color: #be123c;
    border: 1px solid #ffe4e6;
}
.badge-watch {
    background-color: #f8fafc;
    color: #334155;
    border: 1px solid #e2e8f0;
}

/* The Live Indicator Dot */
.live-dot-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8px;
    height: 8px;
    margin-right: 2px;
}
.live-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e; /* Modern Green */
    border-radius: 50%;
}
.live-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #22c55e;
    border-radius: 50%;
    animation: live-pulse-animation 2s infinite ease-out;
}

@keyframes live-pulse-animation {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.wc-stat-badge b { font-weight: 800; color: #000; }