/**
 * Promotions Frontend CSS
 *
 * @package TuttoCapsule_Sync
 */

/* Free Item Price Display */
.promotional-free-item-price del {
    color: #999;
    font-size: 0.9em;
    margin-right: 5px;
}

.promotional-free-item-price .gratis {
    color: #00a32a;
    font-weight: 600;
    text-decoration: none;
}

/* Discount Price Display */
.promotional-discount-price del {
    color: #999;
    font-size: 0.9em;
    margin-right: 5px;
}

.promotional-discount-price .discount-badge {
    display: inline-block;
    background: #d63638;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 5px;
}

/* Free Item Subtotal */
.promotional-free-item-subtotal del {
    color: #999;
    font-size: 0.9em;
    margin-right: 5px;
}

.promotional-free-item-subtotal .gratis {
    color: #00a32a;
    font-weight: 600;
    text-decoration: none;
}

/* Free Item Quantity (non-editable) */
.promotional-free-item-quantity {
    display: inline-block;
    padding: 5px 10px;
    background: #f0f0f1;
    border-radius: 3px;
    font-weight: 500;
}

/* Promotion Messages Box */
.tuttocapsule-promotion-messages {
    margin: 20px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, #d1e7dd, #f0fff0);
    border: 1px solid #0a3622;
    border-radius: 4px;
}

.tuttocapsule-promotion-messages strong {
    display: block;
    margin-bottom: 10px;
    color: #0a3622;
}

.tuttocapsule-promotion-messages ul {
    margin: 0;
    padding-left: 20px;
}

.tuttocapsule-promotion-messages li {
    margin: 5px 0;
    color: #1e4620;
}

/* Cart Item Promotion Info */
.woocommerce-cart-form .cart_item .variation dd {
    margin-left: 0;
}

.woocommerce-cart-form .cart_item .variation dt {
    font-weight: 600;
    color: #00a32a;
}

/* Mini Cart Free Item */
.woocommerce-mini-cart .promotional-free-item-quantity {
    font-size: 12px;
    padding: 2px 6px;
}

/* Product Page Promo Badge */
.single-product .promotional-badge {
    display: inline-block;
    background: #d63638;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Archive/Shop Promo Badge */
.woocommerce ul.products li.product .promotional-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #d63638;
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .promotional-discount-price .discount-badge {
        display: block;
        margin-left: 0;
        margin-top: 5px;
        width: fit-content;
    }

    .tuttocapsule-promotion-messages {
        padding: 10px 15px;
    }
}
