.product-viewers {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.product-viewers p {
    margin: 0;
    padding: 0;
}

/* SVG inline in text */
.viewers-icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.2em;
    margin-right: 4px;
}

.viewers-watching .viewers-icon {
    color: #E1B998;
}

.viewers-icon--fire {
    color: #e07a3a;
}

/* Counts */
.viewer-count {
    font-weight: 700;
    color: #E1B998;
    transition: color 0.5s ease, transform 0.3s ease;
}

.purchased-count {
    font-weight: 700;
    color: #e07a3a;
}

/* Text */
.viewer-text,
.purchased-text {
    color: #888;
}

/* Variants */
.product-viewers.compact {
    gap: 3px;
    font-size: 11px;
}

.product-viewers.inline {
    gap: 8px;
}

.product-viewers.inline::before {
    content: '|';
    color: #e0e0e0;
    margin: 0 4px;
}

.product-viewers.inline:first-child::before {
    display: none;
}

/* Animation */
@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.product-viewers[data-animate="true"] .viewer-count {
    animation: scaleUp 0.6s ease;
}

/* Mobile */
@media (max-width: 768px) {
    .product-viewers {
        font-size: 11px;
    }
}