/* WooCommerce Result Count */
.woocommerce-result-count {
    text-align: left !important;
    margin: 0 !important;
    padding: 0.5rem 0;
}

/* Product Grid */
ul.products {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    ul.products {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

ul.products li.product {
    margin: 0;
}

/* Custom Star Rating with FontAwesome */
.star-rating {
    overflow: visible !important;
    position: relative;
    height: auto !important;
    line-height: 1 !important;
    font-size: 1em !important;
    width: auto !important;
    font-family: inherit !important;
}

.star-rating::before {
    content: none !important;
}

.star-rating span {
    display: none !important;
}

.star-rating span::before {
    content: none !important;
}

/* Reviews Section */
.review-item {
    list-style: none;
}

.review-rating {
    display: block;
}

.review-author {
    line-height: 1.4;
}

.review-text {
    line-height: 1.7;
}

.review-text p {
    margin: 0 0 0.5rem 0;
}

.review-text p:last-child {
    margin-bottom: 0;
}

.verified-badge svg {
    flex-shrink: 0;
}
