/* Product Card Wrapper */
ul.products li.product {
    padding: 0; /* Remove default padding from WC li */
    border: none;
    box-shadow: none;
}

.angie-product-card-box-da4af81d {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 15px;
    background-color: #ffffff;
    position: relative;
    transition: box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.angie-product-card-box-da4af81d:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Ensure meta content aligns at bottom if items have different heights */
.angie-product-card-box-da4af81d .woocommerce-loop-product__title,
.angie-product-card-box-da4af81d .price {
    text-align: left;
}
.angie-product-card-box-da4af81d .button {
    margin-top: auto;
}

/* Discount Badge */
.angie-discount-badge-da4af81d {
    position: absolute;
    top: 15px; /* Adjust based on wrapper padding */
    left: 15px;
    background-color: #27ae60;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    z-index: 9;
}

/* Star Ratings */
.angie-star-rating-da4af81d {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align left */
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #f39c12;
}
.angie-star-rating-da4af81d .angie-review-count-da4af81d {
    margin-left: 5px;
    color: #7f8c8d;
}
.angie-star-rating-da4af81d.empty-rating {
    color: #bdc3c7;
}