.elementor-377 .elementor-element.elementor-element-99616a1{--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;}.elementor-377 .elementor-element.elementor-element-6279025 > .elementor-widget-container{padding:30px 0px 20px 0px;}/* Start custom CSS for wc-elements, class: .elementor-element-6279025 *//* Style for the buttons */
.woocommerce button.button,
.woocommerce .coupon button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background-color: #9C9587; /* Button color */
    color: #ffffff; /* Button text color */
    border: none;
    transition: all 0.3s ease; /* Smooth transition for hover */
}

.woocommerce button.button:hover,
.woocommerce .coupon button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #968A73; /* Hover color */
    transform: scale(1.05); /* Hover grow effect */
}

/* Style for the product titles */
.woocommerce-cart .product-name a {
    color: #1B1736; /* Product title color */
    transition: color 0.3s ease; /* Smooth transition for hover */
}

.woocommerce-cart .product-name a:hover {
    color: #968A73; /* Product title hover color */
}

/* Automatically update cart without "Update Cart" button */
.woocommerce .shop_table.cart {
    position: relative;
}

.woocommerce-cart .button[name="update_cart"] {
    display: none; /* Hide the update cart button */
}

/* Automatically trigger cart update */
.woocommerce-cart .quantity .qty {
    width: 60px;
}

.woocommerce-cart .quantity input.qty {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    text-align: center;
}

.woocommerce-cart .quantity input.qty:focus {
    outline: none;
}

.woocommerce input.qty {
    margin-right: 10px;
}

.woocommerce-cart .quantity .qty:focus {
    background-color: #f5f5f5;
}

/* Trigger cart update automatically */
jQuery(function($) {
    $('input.qty').on('change', function() {
        // Trigger cart update when quantity changes
        $('[name="update_cart"]').trigger('click');
    });
});/* End custom CSS */