/*
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.   ***************/

.checkout-item-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.checkout-item-inline img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
}

.checkout-product-name {
    font-weight: 500;
    color: #222;
    flex-grow: 1;
}

.checkout-remove-item {
    color: #d00;
    font-size: 20px;
    text-decoration: none;
    margin-left: 8px;
    transition: color 0.2s;
}

.checkout-remove-item:hover {
    color: #a00;
}

/* Responsive tweak for small screens */
@media (max-width: 480px) {
    .checkout-item-inline {
        gap: 6px;
    }
    .checkout-item-inline img {
        width: 40px;
        height: 40px;
    }
}




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


}