:root{--primary-button-color: #15284b; --main-third-color: #8b5cf6; --main-fourth-color: #00c753; --main-second-color: #eff8ff; --product-card-bg: #fff; --product-card-border: #d2e4f6; --product-card-color: #15284b; --border-radius: 6px;} /* MASAÜSTÜ VE MOBİL: Sipariş Özeti içinde göster */
.order-summary-list::before {
    content: "2.000 TL Uzeri Alisverislerde Ucretsiz Kargo";
    display: block;
    margin: 6px 16px 12px;
    padding: 12px 10px;
    background: #174f2a;
    color: #ffffff;
    border: 2px solid #d7ad45;
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

/* SADECE MOBİL: Sayfanın üstünde sabit bant */
@media screen and (max-width: 768px) {
    body {
        padding-top: 48px !important;
    }

    body::before {
        content: "2.000 TL Uzeri Alisverislerde Ucretsiz Kargo";
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px 8px;
        background: #174f2a;
        color: #ffffff;
        border-bottom: 2px solid #d7ad45;
        box-sizing: border-box;
        text-align: center;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.3;
        z-index: 9999;
        pointer-events: none;
    }
}