.elementor-15599 .elementor-element.elementor-element-4bb9696{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;--padding-top:39px;--padding-bottom:39px;--padding-left:39px;--padding-right:39px;}.elementor-15599 .elementor-element.elementor-element-703d6bd > .elementor-widget-container{padding:18px 18px 18px 18px;}/* Start custom CSS for container, class: .elementor-element-4bb9696 *//* Product Slider Wrapper */
.product-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between product boxes */
    margin: -10px; /* Adjust as needed for spacing between products */
}


/* Product Box */
.product-box {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
    height: 100%; /* Ensure the box takes up full height of its container */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-box:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.product-box img {
    width: 100%; /* Ensure image fills the product box */
    height: 281px; /* Fixed height for product images */
    object-fit: cover; /* Ensure the image covers the entire box */
    margin-bottom: 15px; /* Space between image and title */
}

/* Product Details */
.product-details {
    flex: 1; /* Allow product details to fill remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Product Title */
.woocommerce-loop-product__title {
    font-size: 1.2em;
    margin: 0 0 10px 0; /* Margin for spacing between title and price */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Product Price */
.price {
    display: block;
     font-size: 16px;
    color: #b12704;
    margin-bottom: 10px;
}

/* Star Rating */
.star-rating {
    margin-bottom: 12px;
    
    
}

.star-rating span::before {
    content: "★★★★★";
    color: #ffcc00;
    overflow: hidden;
    font-size: 15px;
    top: 15px;
    left: 15px;
     font-size: 16px;
}

/* No Review Message */
.no-review {
    font-size: 1em;
    color: #777;
    margin-bottom: 10px;
    font-size: 16px;
}

/* Add to Cart Button */
.buttonadtocart {
    margin-top: 10px;
    padding: 10px 10px;
    background-color: #000;
    color: white !important;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.buttonadtocart:hover {
    background-color: #333;
}

.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {color: white;}

.button.product_type_simple{
    color: white;
}

.button.product_type_variable{
    color: white;
}/* End custom CSS */