/* ps_bulletpoints — bullet point styles for product listing cards */

/* Override theme's display:none on .card-reviews when bullet points are present */
.page-category .product-card .card-reviews:has(.prestanaut-bulletpoints),
.page-category .product-card .card-reviews:has(.prestanaut-bulletpoints) * {
    display: revert !important;
}

.prestanaut-bulletpoints {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.prestanaut-bulletpoints__item {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--muted, #6b7280);
}

.prestanaut-bulletpoints__item::before {
    content: '\2713';
    flex-shrink: 0;
    color: var(--accent, #5be3a0);
    font-size: 12px;
    font-weight: 700;
}
