.monthly-purchase-indicator {
    margin: 8px 0;
    padding: 0;
}

.purchase-count {
    font-size: 14px;
    color: #565959;
    font-weight: 400;
    line-height: 1.4;
    display: inline-block;
}

/* Amazon-style subtle emphasis */
.purchase-count::before {
    content: "📈";
    margin-right: 4px;
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .monthly-purchase-indicator {
        margin: 6px 0;
    }
    
    .purchase-count {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .purchase-count {
        font-size: 12px;
    }
    
    .purchase-count::before {
        font-size: 11px;
    }
}

/* Hover effect for interactivity */
.monthly-purchase-indicator:hover .purchase-count {
    color: #232f3e;
    transition: color 0.2s ease;
}

/* Alternative styling for high numbers */
.purchase-count[data-high-volume="true"] {
    color: #b12704;
    font-weight: 500;
}

.purchase-count[data-high-volume="true"]::before {
    content: "🔥";
}