
h1.product_title.entry-title {
    margin-bottom: .925rem;
}

.product .product-meta-wrapper {
    display: flex;
    flex-direction: row;
    gap: 5px;
    /* justify-content: space-between; */
    align-items: center;
}

.product .product-meta-wrapper  .product-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}
.product .product-meta-wrapper  .product-rating .woocommerce-review-link {
    font-size: 0.875em;    
}
.product .product-meta-wrapper  .product-rating .star-rating  {
    font-size: .875em;
}

.custom-cart-benefits {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 20px;
        }

        .custom-cart-benefit-box {
            display: flex;
            align-items: flex-start;
            gap: 7px;
            padding: 7px 10px;
            background: #9e150b0a;
            border: 1px solid #9e150b;
            border-radius: 8px;
        }

        .custom-cart-benefit-box svg {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            color: #9e150b;
        }

        .custom-cart-benefit-text {
            font-size: 14px;
            line-height: 1.4;
        }

        @media (max-width: 576px) {
            .custom-cart-benefits {
                grid-template-columns: 1fr;
            }
        }