/**
 * CSS per bundle automatici (prodotti gratuiti)
 *
 * @package SIFA_Post_Checkout_Upsell
 */

/* Stili per label prodotti gratuiti */
.spcu-free-product-label {
    background: #27ae60;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    margin-right: 5px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-free 2s infinite;
}

/* Animazione per evidenziare i prodotti gratuiti */
@keyframes pulse-free {
    0%, 100% {
        background: #27ae60;
        transform: scale(1);
    }
    50% {
        background: #2ecc71;
        transform: scale(1.05);
    }
}

/* Quantità bloccata per prodotti gratuiti */
.spcu-locked-quantity {
    font-weight: bold;
    color: #27ae60;
    padding: 2px 6px;
    background: #d4edda;
    border-radius: 3px;
    border: 1px solid #c3e6cb;
}

/* Stili per cart/checkout */
.woocommerce-cart .spcu-free-product-label,
.woocommerce-checkout .spcu-free-product-label {
    margin-right: 8px;
}

/* Evidenzia riga prodotto gratuito */
.woocommerce-cart-form__cart-item:has(.spcu-free-product-label),
.woocommerce-checkout-review-order-table .cart_item:has(.spcu-free-product-label) {
    background: rgba(39, 174, 96, 0.05);
    border-left: 3px solid #27ae60;
    padding-left: 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .spcu-free-product-label {
        font-size: 10px;
        padding: 1px 4px;
    }
    
    .spcu-locked-quantity {
        padding: 1px 4px;
        font-size: 12px;
    }
}

/* Classe per nascondere prezzo prodotti gratuiti */
.spcu-free-product-no-price {
    display: none !important;
}

/* Nascondi completamente il prezzo €0,00 per prodotti gratuiti (fallback CSS) */
.cart_item:has(.spcu-free-product-label) .woocommerce-Price-amount,
.cart_item:has(.spcu-free-product-label) .amount,
.cart_item:has(.spcu-free-product-label) .wc-price,
.cart_item:has(.spcu-free-product-label) .price {
    display: none !important;
}

/* Nascondi anche colonna prezzo per prodotti gratuiti */
.cart_item:has(.spcu-free-product-label) .product-price {
    visibility: hidden;
}

/* Per checkout review order table */
.checkout-review-order-table .cart_item:has(.spcu-free-product-label) .amount,
.woocommerce-checkout-review-order-table .cart_item:has(.spcu-free-product-label) .woocommerce-Price-amount {
    display: none !important;
}

/* Fallback senza :has() per browser più vecchi */
.spcu-free-product-label + * .woocommerce-Price-amount,
.spcu-free-product-label ~ * .amount {
    display: none !important;
}

/* Stile speciale per la row del carrello con prodotto gratuito */
.cart_item[data-free-product="true"] {
    position: relative;
}

.cart_item[data-free-product="true"]::before {
    content: "🎁";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}