/*
 * Sepetteki ürünlerin yarısına otomatik indirim - sadece görsel (UI) stilleri.
 * Bu dosya mevcut hiçbir CSS dosyasını değiştirmez; sadece sepetim sayfasında
 * kullanılan yeni sınıfları içerir. Kampanya pasifken bu sınıflar hiç oluşmaz.
 */

.basket-auto-discount-banner {
    display: none;
    align-items: center;
    gap: 16px;
    margin: 0 0 22px;
    padding: 16px 20px;
    border: 2px solid #f7931e;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff8ef 0%, #ffe9d3 100%);
    box-shadow: 0 10px 26px rgba(247, 147, 30, 0.2);
}

.basket-auto-discount-banner.is-visible {
    display: flex;
}

.basket-auto-discount-banner-icon {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 6px 14px rgba(247, 147, 30, 0.45);
    font-size: 22px;
    line-height: 1;
}

.basket-auto-discount-banner-text {
    color: #7a3b0a;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.45;
}

.basket-auto-discount-banner-text strong {
    color: #d9480f;
    font-size: 16px;
    font-weight: 800;
}

.basket-auto-discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    padding: 4px 12px 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(247, 147, 30, 0.5);
    animation: basketAutoDiscountBadgePulse 1.8s ease-in-out 4;
}

.basket-auto-discount-badge-icon {
    font-size: 12px;
}

.basket-auto-discount-price-old {
    color: #9a9a9a;
    text-decoration: line-through;
    font-weight: 400;
}

.basket-auto-discount-price-new {
    display: inline-block;
    margin-left: 8px;
    color: #d9480f;
    font-weight: 800;
    animation: basketAutoDiscountPriceBlink 1s ease-in-out 3;
}

@keyframes basketAutoDiscountPriceBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes basketAutoDiscountBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(247, 147, 30, 0.5);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 6px 18px rgba(247, 147, 30, 0.7);
    }
}

@media (max-width: 767px) {
    .basket-auto-discount-banner {
        gap: 12px;
        padding: 14px 16px;
    }

    .basket-auto-discount-banner-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .basket-auto-discount-banner-text {
        font-size: 13.5px;
    }
}
