/* Start custom CSS for text-editor, class: .elementor-element-6ad9f63a */.woocommerce-cart-form {
    font-family: Arial, sans-serif; /* Ensures font consistency */
    color: #333; /* Adjust text color */
}

/* Style the headings */
.woocommerce-cart-form .product-name,
.woocommerce-cart-form .product-price,
.woocommerce-cart-form .product-quantity,
.woocommerce-cart-form .product-subtotal {
    font-weight: bold; /* Makes text bold */
}

/* Style the buttons */
.woocommerce button {
    background-color: #f0ad4e; /* Example button color */
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 5px; /* Rounded corners */
}

/* Adjust the quantity input */
.woocommerce-cart-form .quantity input.qty {
    width: 50px; /* Adjust width */
    padding: 5px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .woocommerce-cart-form .product-name,
    .woocommerce-cart-form .product-price,
    .woocommerce-cart-form .product-quantity,
    .woocommerce-cart-form .product-subtotal {
        display: block; /* Stacks the elements under each other on small screens */
    }
}/* End custom CSS */