/*
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.   ***************/
.mac-os .badge {
    font-size: 8px !important; /* Riduci la dimensione per macOS */
    font-weight: bold;
}

/* More custom styles specific to your design */

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


}

/* Checkout prodotti stile carrello */
.checkout-product-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.checkout-product-item .product-image {
    position: relative;
    flex-shrink: 0;
}

.checkout-product-item .product-image img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    object-fit: cover;
}

.remove-checkout-item {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    z-index: 10;
    transition: all 0.3s ease;
}

.remove-checkout-item:hover {
    background: #cc0000;
    color: white;
    transform: scale(1.1);
}

.checkout-product-item .product-info {
    flex: 1;
    min-width: 0;
}

.product-name-text {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.4;
}

/* Pulsanti quantità identici al carrello */
.product-quantity-checkout {
    margin-top: 8px;
}

.product-quantity-checkout .ux-quantity {
    max-width: 130px;
}

/* Mobile */
@media (max-width: 768px) {
    .checkout-product-item {
        gap: 12px;
    }
    
    .checkout-product-item .product-image img {
        width: 60px;
        height: 60px;
    }
}