/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/* Add this to your theme's custom CSS */

/* Create a flex container for the form */
form.cart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Style the quantity wrapper */
.quantity-wrapper {
    width: 100%;
    margin-bottom: 10px;
}

/* Style the button wrapper */
.button-wrapper {
    display: flex;
    gap: 15px;
    width: 100%;
}

/* Ensure buttons take equal space */
.button-wrapper .single_add_to_cart_button,
.button-wrapper .buy-now-button {
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .button-wrapper {
        flex-direction: column;
    }
}

/* Optional: Style quantity input to match theme */
.quantity input[type="number"] {
    width: 100px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
