/* ==========================================================================
   Checkout & Cart - Banner Promo Amasty (Area 100% Cliccabile)
   ========================================================================== */

.checkout-cart-index .freegift-button {
    display: block !important;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 2px 14px rgba(244, 96, 54, 0.20);
    overflow: hidden;
    padding: 0;
    transition: all 0.2s ease;
}

.checkout-cart-index .freegift-button:hover {
    box-shadow: 0 4px 20px rgba(244, 96, 54, 0.35);
    transform: translateY(-1px);
}

.checkout-cart-index .freegift-button a[data-role="ampromo-popup-show"] {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    color: #1d3557;
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.checkout-cart-index .freegift-button a[data-role="ampromo-popup-show"]:hover {
    color: #f46036;
}

.checkout-cart-index .freegift-button a[data-role="ampromo-popup-show"]::before {
    content: "🎁";
    font-size: 16px;
    margin-right: 12px;
    animation: bounceGift 2s infinite;
}

@keyframes bounceGift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
