/* ══════════════════════════════════════════════════════════════════════
   NRS UI KATMANI
   ----------------------------------------------------------------------
   1) Üst bilgilendirme bandı (açılır panelli)
   2) Header aksiyon ikonları
   3) Ürün kartı — büyük spor perakende düzeni + hover'da görsel döngüsü
   4) Sağ kenarda dikey WhatsApp sekmesi

   Tipografi/renk ölçüleri referans bir perakende sitesinden ölçülmüştür;
   ikon çizimleri ve içerik bu projeye aittir.
   ══════════════════════════════════════════════════════════════════════ */

/* ══════ 1) ÜST BİLGİLENDİRME BANDI ══════ */
.nrs-usp {
    position: relative;
    z-index: 1200;
    background: var(--nrs-usp-bg, #000);
    color: var(--nrs-usp-fg, #fff);
}
.nrs-usp[hidden] { display: none; }

.nrs-usp-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 40px;
    padding: 0 48px;
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
}
.nrs-usp-bar:disabled { cursor: default; }
.nrs-usp-bar .nrs-ico { width: 18px; height: 18px; flex: 0 0 auto; transition: transform .3s ease; }
.nrs-usp[data-open="true"] .nrs-usp-bar .nrs-ico--ok { transform: rotate(180deg); }

/* Dönen tek satır (birden çok madde varsa) */
.nrs-usp-rotator { position: relative; display: inline-block; }
.nrs-usp-rotator > span {
    display: none;
    animation: nrs-usp-in .4s ease-out;
}
.nrs-usp-rotator > span.active { display: inline; }
@keyframes nrs-usp-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* Kapat (X) — bandın sağ ucunda */
.nrs-usp-close {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: none;
    border: 0;
    color: inherit;
    cursor: pointer;
    opacity: .8;
}
.nrs-usp-close:hover { opacity: 1; }
.nrs-usp-close .nrs-ico { width: 18px; height: 18px; }

/* Açılan panel */
.nrs-usp-panel {
    display: grid;
    grid-template-rows: 0fr;
    background: #fff;
    color: #14171c;
    transition: grid-template-rows .35s ease;
}
.nrs-usp[data-open="true"] .nrs-usp-panel { grid-template-rows: 1fr; }
.nrs-usp-panel-inner { overflow: hidden; }

.nrs-usp-items {
    display: flex;
    gap: 60px;
    padding: 28px 0 32px;
}
.nrs-usp-item { flex: 1 1 0; min-width: 0; }
.nrs-usp-item-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.nrs-usp-item-text {
    font-size: 13px;
    line-height: 1.55;
    color: #4a4f57;
    margin: 0;
}
.nrs-usp-item-cta {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: inherit;
    border-bottom: 1.5px solid currentColor;
    text-decoration: none;
}

@media (max-width: 860px) {
    .nrs-usp-items { flex-direction: column; gap: 22px; padding: 20px 0 24px; }
    .nrs-usp-bar { font-size: 11.5px; padding: 0 42px; letter-spacing: .03em; }
}

/* ══════ 2) HEADER İKONLARI ══════ */
.nrs-ico { display: block; }
.header-action-btn .nrs-ico,
.adx-icon-btn .nrs-ico,
.adx-header .header-actions .nrs-ico { width: 24px; height: 24px; }
.header-action-btn, .adx-icon-btn { position: relative; }
.header-action-btn:hover .nrs-ico,
.adx-icon-btn:hover .nrs-ico { opacity: .65; }
/* Font Awesome ikonlarıyla aynı hizada dursun */
.adx-icon-btn { display: inline-flex; align-items: center; justify-content: center; }

/* ══════ 3) ÜRÜN KARTI ══════ */
.nrs-card {
    position: relative;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.nrs-card .nrs-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f6f7;
}
.nrs-card .nrs-card-media a { display: block; width: 100%; height: 100%; }

/* Görsel yığını — hover'da 1 sn'de bir sıradaki görsele geçer */
.nrs-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* Ürün fotoğrafları farklı oranlarda (dikey/yatay) geldiği için 'cover'
       bazılarını kırpıyordu. 'contain' ürünün tamamını gösterir; boşluk kalan
       yeri kartın açık gri zemini doldurur, ürün ortalanır. */
    object-fit: contain;
    box-sizing: border-box;
    padding: 6%;
    opacity: 0;
    transition: opacity .45s ease;
}
.nrs-card-img.is-active { opacity: 1; }

.nrs-card-body { padding: 12px 0 4px; }

/* Referans (adidas) fiyat düzeni: indirimli fiyat üstte kırmızı, ALTINDA
   "orijinal fiyat üstü çizili + Orijinal fiyat + -%X" tek satırda gri/kırmızı. */
.nrs-card-price { display: block; }
.nrs-card-price .nrs-price {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #14171c;
    line-height: 1.3;
}
.nrs-card-price .nrs-price--sale { color: #e32b2b; }
.nrs-card-price .nrs-price-alt {
    display: block;
    margin-top: 2px;
    font-size: 12.5px;
    line-height: 1.3;
    white-space: nowrap;
}
.nrs-card-price .nrs-price-old {
    color: #767677;
    text-decoration: line-through;
    margin-right: 4px;
}
.nrs-card-price .nrs-price-old-etiket { color: #767677; margin-right: 6px; }
.nrs-card-price .nrs-price-discount {
    font-weight: 400;
    color: #e32b2b;
}

.nrs-card-name {
    margin: 8px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    color: #14171c;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nrs-card-meta {
    margin: 2px 0 0;
    font-size: 14px;
    font-weight: 400;
    color: #767677;
}
.nrs-card-colors { display: block; margin-top: 2px; font-size: 12px; color: #767677; }

/* Favori — görselin sağ üstünde */
.nrs-card .nrs-card-fav {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}
.nrs-card .nrs-card-fav .favori-btn {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: none; border: 0; cursor: pointer;
    color: #14171c;
}
.nrs-card .nrs-card-fav .favori-btn .nrs-ico { width: 24px; height: 24px; }
.nrs-card .nrs-card-fav .favori-btn:hover { opacity: .65; }

/* Rozetler sol üstte, sade */
.nrs-card .adx-badges, .nrs-card .product-badges {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    display: flex; flex-direction: column; gap: 4px; pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .nrs-card-img { transition: none; }
}

/* ══════ 4) SAĞ KENAR WHATSAPP SEKMESİ ═══════════════════════════════
   Referans "geri bildirim" sekmesinin biçimi: sağ kenara yapışık ince dikey
   şerit, açık zemin, ince çerçeve, ikonsuz büyük harf dikey yazı.
   Yazı aşağıdan yukarıya okunur (writing-mode + 180° dönüş).            */
.nrs-wa-tab {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 7px;
    background: #fff;
    color: #14171c;
    text-decoration: none;
    border: 1px solid #d9dce0;
    border-right: 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, .07);
    /* Dikey yazı, aşağıdan yukarı okunur: vertical-rl + 180° dönüş.
       Dikey ortalama da aynı transform içinde yapılır (iki ayrı kural
       kullanılırsa ikincisi birincisini ezip konumu kaydırır). */
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    line-height: 1;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.nrs-wa-tab:hover { background: #25d366; color: #fff; border-color: #25d366; }

/* İkon istenmiyor (referansta yok) — gizli tut, ekran okuyucu metni kalsın */
.nrs-wa-tab .nrs-ico { display: none; }

@media (max-width: 768px) {
    .nrs-wa-tab { padding: 14px 6px; font-size: 11px; letter-spacing: .1em; }
}
@media (prefers-reduced-motion: reduce) { .nrs-wa-tab { transition: none; } }

/* ══════ 5) SEPET — KAMPANYA İLERLEMESİ ══════════════════════════════
   "1 ürün daha ekle, ikincisi %50 olsun" tipi yönlendirmeler. Sağlanan
   kampanya yeşil onay, yaklaşılan kampanya ilerleme çubuğu ile gösterilir. */
.nrs-kamp-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }

.nrs-kamp {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-left: 3px solid var(--kamp-renk, #14171c);
    border-radius: 0;               /* keskin köşe — monokrom tema */
    background: #fff;
}
.nrs-kamp--tamam { background: #fafafa; border-color: #e5e7eb; }

.nrs-kamp-ikon {
    flex: 0 0 auto;
    width: 24px; height: 24px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 0;               /* kare ikon — monokrom tema */
    background: var(--kamp-renk, #14171c);
    color: #fff;
    font-size: 13px; font-weight: 700; line-height: 1;
}
.nrs-kamp--tamam .nrs-kamp-ikon { background: #14171c; }

.nrs-kamp-govde { flex: 1 1 auto; min-width: 0; }
.nrs-kamp-baslik {
    display: block;
    font-size: 12px; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase;
    color: var(--kamp-renk, #262a31);
}
.nrs-kamp--tamam .nrs-kamp-baslik { color: #14171c; }
.nrs-kamp-mesaj { display: block; margin-top: 2px; font-size: 13.5px; color: #14171c; }

.nrs-kamp-bar {
    display: block;
    height: 4px;
    margin-top: 8px;
    border-radius: 0;
    background: #eceef1;
    overflow: hidden;
}
.nrs-kamp-bar > i {
    display: block; height: 100%;
    background: var(--kamp-renk, #14171c);
    border-radius: 0;
    transition: width .4s ease;
}

.nrs-kamp-cta {
    flex: 0 0 auto;
    font-size: 12px; font-weight: 700;
    letter-spacing: .03em; text-transform: uppercase;
    color: #14171c; text-decoration: none;
    border-bottom: 1.5px solid currentColor;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .nrs-kamp { flex-wrap: wrap; }
    .nrs-kamp-cta { width: 100%; margin-top: 6px; text-align: center; border-bottom: none;
                    padding: 9px; border: 1.5px solid #14171c; border-radius: 6px; }
}
@media (prefers-reduced-motion: reduce) { .nrs-kamp-bar > i { transition: none; } }

/* ══════ 6) SEPET — GRUPLU ÜRÜN ÖNERİLERİ ══════ */
.nrs-oneri-blok { margin-top: 34px; }
.nrs-oneri-baslik {
    margin: 0 0 14px;
    font-size: 15px; font-weight: 700;
    letter-spacing: .05em; text-transform: uppercase;
    color: #14171c;
}
.nrs-oneri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 960px) { .nrs-oneri-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .nrs-oneri-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ══════ 7) VİDEO BANNER (section) ══════════════════════════════════════
   Poster ile açılır, video ekrana girince yüklenir. Metin katmanı okunabilir
   kalsın diye alt tarafa yumuşak bir karartma uygulanır. */
.nrs-vb {
    position: relative;
    width: 100%;
    aspect-ratio: var(--vb-oran, 16/9);
    overflow: hidden;
    background: #0e1013;
    border-radius: var(--radius-card, 0);
}
.nrs-vb-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
/* Tıklanabilir tam alan (bağlantı verilmişse) */
.nrs-vb-link { position: absolute; inset: 0; z-index: 2; }

.nrs-vb-icerik {
    position: absolute; left: 0; right: 0; bottom: 0;
    z-index: 3;
    padding: 28px 28px 26px;
    color: #fff;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0,0,0,.62) 0%, rgba(0,0,0,.28) 45%, transparent 100%);
}
.nrs-vb-baslik {
    margin: 0 0 6px;
    font-size: clamp(20px, 3.2vw, 34px);
    font-weight: 800; letter-spacing: .01em; line-height: 1.15;
    text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.nrs-vb-alt {
    margin: 0;
    font-size: clamp(13px, 1.5vw, 16px);
    color: rgba(255,255,255,.9);
    max-width: 640px;
}
.nrs-vb-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 13px 26px;
    background: #fff; color: #14171c;
    border-radius: 6px;
    font-size: 13px; font-weight: 800;
    letter-spacing: .04em; text-transform: uppercase;
    text-decoration: none;
    pointer-events: auto;
}
.nrs-vb-btn:hover { background: #14171c; color: #fff; }

@media (max-width: 640px) {
    .nrs-vb-icerik { padding: 18px 16px 16px; }
    .nrs-vb-btn { margin-top: 12px; padding: 11px 20px; }
}

/* ══════ 8) SİPARİŞ SONRASI (order-success) ══════════════════════════════
   Sade, tipografi ağırlıklı adidas tarzı: solda özet + adımlar, sağda kart. */
.nrs-oc { padding: 48px 0 72px; }
.nrs-oc-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 48px;
    align-items: start;
}
.nrs-oc--hata .nrs-oc-wrap,
.nrs-oc-wrap:has(.nrs-oc-tek) { grid-template-columns: minmax(0, 720px); justify-content: center; }

.nrs-oc-rozet {
    display: inline-block;
    font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    color: #14171c; margin-bottom: 14px;
}
.nrs-oc-rozet--hata { color: #e32b2b; }

.nrs-oc-baslik {
    margin: 0 0 12px;
    font-size: clamp(24px, 3.4vw, 34px);
    font-weight: 800; line-height: 1.15; letter-spacing: -.01em;
    color: #14171c;
}
.nrs-oc-no { margin: 0 0 14px; font-size: 14px; color: #4a4f57; }
.nrs-oc-no strong { color: #14171c; letter-spacing: .03em; }
.nrs-oc-aciklama { margin: 0 0 24px; font-size: 15px; line-height: 1.6; color: #4a4f57; max-width: 560px; }
.nrs-oc-aciklama a { color: #14171c; text-decoration: underline; }

.nrs-oc-btnlar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 8px; }
.nrs-oc-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 15px 30px; border: 1.5px solid #14171c; border-radius: 6px;
    background: #fff; color: #14171c; text-decoration: none;
    font-size: 13.5px; font-weight: 700; letter-spacing: .03em;
}
.nrs-oc-btn--dolu { background: #14171c; color: #fff; }
.nrs-oc-btn--dolu:hover { background: #14171c; border-color: #14171c; }
.nrs-oc-btn:hover { border-color: #14171c; color: #14171c; }
.nrs-oc-btn--dolu:hover { color: #fff; }

/* Sonraki adımlar */
.nrs-oc-adimlar { margin-top: 40px; }
.nrs-oc-alt-baslik {
    margin: 0 0 18px; font-size: 13px; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase; color: #14171c;
}
.nrs-oc-adim-liste { list-style: none; margin: 0; padding: 0; }
.nrs-oc-adim {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 16px 0; border-top: 1px solid #eceef1;
}
.nrs-oc-adim:last-child { border-bottom: 1px solid #eceef1; }
.nrs-oc-adim-ikon {
    flex: 0 0 auto; width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1.5px solid #d5d9df; border-radius: 8px;
    font-size: 16px; color: #9aa0a8;
}
.nrs-oc-adim.is-aktif .nrs-oc-adim-ikon { border-color: #14171c; color: #14171c; }
.nrs-oc-adim div { display: flex; flex-direction: column; gap: 2px; }
.nrs-oc-adim strong { font-size: 14.5px; color: #14171c; }
.nrs-oc-adim span { font-size: 13px; color: #767677; line-height: 1.5; }
.nrs-oc-adim.is-aktif strong { color: #14171c; }
.nrs-oc-adim:not(.is-aktif) strong { color: #9aa0a8; }

.nrs-oc-iptal { margin-top: 20px; font-size: 13px; color: #767677; }
.nrs-oc-iptal a { color: #14171c; text-decoration: underline; }

/* Sağ kart */
.nrs-oc-kart {
    background: #f6f7f9; border: 1px solid #eceef1; border-radius: 12px;
    padding: 22px 22px 24px; position: sticky; top: 100px;
}
.nrs-oc-urunler { list-style: none; margin: 0 0 16px; padding: 0; }
.nrs-oc-urun {
    display: grid; grid-template-columns: 56px 1fr auto; gap: 12px;
    align-items: center; padding: 11px 0; border-bottom: 1px solid #eaecef;
    font-size: 13.5px;
}
.nrs-oc-urun-gorsel { position: relative; width: 56px; height: 56px; flex: 0 0 auto; }
.nrs-oc-urun-gorsel img {
    width: 56px; height: 56px; object-fit: contain; box-sizing: border-box; padding: 3px; border-radius: 6px;
    background: #eceef1; display: block;
}
.nrs-oc-urun-bos {
    width: 56px; height: 56px; border-radius: 6px; background: #eceef1;
    display: flex; align-items: center; justify-content: center; color: #b6bcc4; font-size: 18px;
}
.nrs-oc-urun-badge {
    position: absolute; top: -7px; right: -7px;
    min-width: 20px; height: 20px; padding: 0 5px;
    background: #14171c; color: #fff; border-radius: 99px;
    font-size: 11px; font-weight: 700; line-height: 20px; text-align: center;
    box-shadow: 0 0 0 2px #f6f7f9;
}
.nrs-oc-urun-bilgi { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.nrs-oc-urun-ad { color: #14171c; line-height: 1.3; text-decoration: none;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
a.nrs-oc-urun-ad:hover { text-decoration: underline; }
.nrs-oc-urun-varyant { font-size: 12px; color: #767677; }
.nrs-oc-urun-fiyat { font-weight: 700; white-space: nowrap; }

.nrs-oc-detay { margin: 0 0 16px; padding: 4px 0 0; }
.nrs-oc-detay > div { display: flex; justify-content: space-between; font-size: 14px; padding: 5px 0; }
.nrs-oc-detay dt, .nrs-oc-detay dd { margin: 0; }
.nrs-oc-detay dt { color: #4a4f57; }
.nrs-oc-detay dd { font-weight: 600; color: #14171c; }
.nrs-oc-indirim dd { color: #14171c; }
.nrs-oc-toplam { border-top: 1px solid #d5d9df; margin-top: 4px; padding-top: 10px !important; }
.nrs-oc-toplam dt, .nrs-oc-toplam dd { font-size: 16px; font-weight: 800; }

.nrs-oc-meta { border-top: 1px solid #eaecef; padding-top: 14px; display: flex; flex-direction: column; gap: 12px; }
.nrs-oc-meta > div { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.nrs-oc-meta span { color: #767677; }
.nrs-oc-meta strong { color: #14171c; font-weight: 600; line-height: 1.45; }
.nrs-oc-adres strong { font-weight: 500; }

@media (max-width: 900px) {
    .nrs-oc-wrap { grid-template-columns: 1fr; gap: 32px; }
    .nrs-oc-kart { position: static; }
}

/* ══════ 9) KARGO TAKİP (order-track) ══════════════════════════════════ */
.nrs-track-ust { margin: 0 0 20px; font-size: 14px; color: #4a4f57; }
.nrs-track-ust strong { color: #14171c; letter-spacing: .03em; }

/* Yatay adım göstergesi — çizgiyle bağlı 3 nokta */
.nrs-track-adimlar {
    list-style: none; margin: 0 0 28px; padding: 0;
    display: grid; grid-template-columns: repeat(3, 1fr);
}
.nrs-track-adim {
    position: relative; text-align: left;
    display: flex; flex-direction: column; gap: 10px;
}
/* Adımlar arası bağlantı çizgisi.
   Noktalar hücrenin SOLUNA yaslı (merkez = 16px). Çizgi bu noktanın
   merkezinden başlar (left:16px) ve bir sonraki noktanın merkezine ulaşmak
   için hücre sınırını 16px aşar (right:-16px). Son adımda çizgi olmaz.
   Renk: iki nokta arası ancak SONRAKİ adıma geçilmişse koyulaşır (.is-cizgi). */
.nrs-track-adim::before {
    content: ''; position: absolute; top: 16px; left: 18px; right: -18px;
    height: 2px; background: #e5e7eb; z-index: 0;
}
.nrs-track-adim:last-child::before { display: none; }
.nrs-track-adim.is-cizgi::before { background: #14171c; }

.nrs-track-nokta {
    position: relative; z-index: 1;
    width: 32px; height: 32px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff; border: 2px solid #d5d9df; color: #9aa0a8;
    font-size: 13px;
}
.nrs-track-adim.is-tamam .nrs-track-nokta { border-color: #14171c; color: #14171c; }
.nrs-track-adim.is-aktif .nrs-track-nokta { background: #14171c; border-color: #14171c; color: #fff; }
.nrs-track-etiket { font-size: 13px; font-weight: 600; color: #9aa0a8; }
.nrs-track-adim.is-tamam .nrs-track-etiket { color: #14171c; }

.nrs-track-durum { margin-top: 4px; }

.nrs-track-kargo { margin: 22px 0 8px; padding-bottom: 22px; border-bottom: 1px solid #eceef1; }
.nrs-track-btn { max-width: 340px; width: 100%; gap: 10px; }
.nrs-track-btn .fas { font-size: 12px; }
.nrs-track-no { margin: 12px 0 0; font-size: 13.5px; color: #4a4f57; }
.nrs-track-no strong { color: #14171c; letter-spacing: .04em; }
.nrs-track-no span { color: #767677; }

.nrs-track-urunler-blok { margin-top: 30px; }
.nrs-track-ozet { margin: 4px 0 0; }
.nrs-track-ozet .nrs-oc-toplam { border-top: 0; padding-top: 0 !important; }

/* Sorgu formu — ortalanmış dar kutu */
.nrs-track-form-wrap { max-width: 460px; margin: 20px auto 40px; }
.nrs-track-form { margin-top: 24px; }
.nrs-track-uyari {
    margin: 8px 0 18px; padding: 12px 14px; border-radius: 8px;
    background: #fdecea; border: 1px solid #f5c6c2; color: #a72820; font-size: 13.5px; text-align: center;
}

@media (max-width: 640px) {
    .nrs-track-etiket { font-size: 11.5px; }
    .nrs-track-btn { max-width: none; }
}

/* Referans sadeliği: görsel üzerinde renk noktası yok; "N Renk" bilgisi altta metin olarak zaten var */
.nrs-card .adx-variant-dots, .nrs-card .product-variants { display: none; }

/* PDP META SADELESTIRME — referans sadeliği: kod/stok satırı sessiz gri; yeşil vurgu yok */
.adx-pdp .product-meta { font-size: 12.5px; color: #767677; }
.adx-pdp .product-meta strong { font-weight: 500; color: #767677; }
.adx-pdp .product-meta .in-stock { color: #767677; font-weight: 400; }
.adx-pdp .product-meta .out-of-stock { color: #e32b2b; }

/* ══════════════════════════════════════════════════════════════════
   ANASAYFA: HEADER HERO ÜZERİNE ŞEFFAF BİNER (referans davranış)
   - İlk açılışta header şeffaf, video/slider header'ın ALTINDAN başlar.
   - Kaydırınca (body.nrs-kaydirildi) header beyaza döner.
   - Duyuru barı ilk açılışta gizli; kaydırınca yukarıdan süzülerek gelir.
   Yalnız masaüstü/tablet (≥769px): mobil düzen tema hesaplarını kullanıyor.
   layout.css'teki sticky+beyaz kurallar !important'lı olduğundan burada da
   !important gerekiyor; ui.css layout.css'ten SONRA yüklendiği için kazanır.
   ══════════════════════════════════════════════════════════════════ */
@media (min-width: 769px) {
    body.nrs-hero-ustu .main-header.adx-header {
        position: fixed !important;
        top: var(--nrs-usp-top, 0px) !important;
        left: 0;
        right: 0;
        transition: background .25s ease, border-color .25s ease, top .25s ease;
    }
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header {
        background: transparent !important;
        border-bottom-color: transparent !important;
    }
    /* Duyuru barı: fixed; başlangıçta ekran dışında, kaydırınca iner */
    body.nrs-hero-ustu .nrs-usp {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        transform: translateY(-100%);
        transition: transform .25s ease;
    }
    body.nrs-hero-ustu.nrs-kaydirildi .nrs-usp { transform: none; }
}

/* ── Anasayfa ilk açılış: header içeriği BEYAZ, arama gizli ─────────────
   Kaydırınca (.nrs-kaydirildi) beyaz zemin gelir, yazı/ikon/logo siyaha
   döner ve arama kutusu belirir. layout.css'teki renk kuralı !important'lı
   olduğundan burada daha yüksek özgüllük + !important kullanılıyor. */
@media (min-width: 769px) {
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header,
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header a,
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header button,
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header .logo-text {
        color: #fff !important;
    }
    /* Logo görseli: koyu logo hero üzerinde bembeyaza çevrilir */
    body.nrs-hero-ustu .main-header.adx-header .header-logo img {
        transition: filter .25s ease;
    }
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header .header-logo img {
        filter: brightness(0) invert(1);
    }
    /* Arama kutusu: ilk açılışta görünmez, kaydırınca yumuşakça belirir */
    body.nrs-hero-ustu .main-header.adx-header .adx-search {
        transition: opacity .25s ease, visibility .25s ease;
    }
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header .adx-search {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* ── Header logosu SİMSİYAH ──────────────────────────────────────────
   Renkli/soluk logo dosyası yüklense bile beyaz header üzerinde logo her
   zaman tam siyah basılır. Anasayfa ilk açılışında (şeffaf header) yukarıdaki
   kural bunu bembeyaza çevirir; kaydırınca bu kurala döner → simsiyah. */
.main-header.adx-header .header-logo img { filter: brightness(0); }

/* ── Şeffaf header + mega menü düzeltmesi ────────────────────────────
   1) Header'ın üzerine gelindiğinde (mega menü açıkken dahil) header
      beyaza döner, yazı/ikon/logo siyahlaşır — referans (adidas) davranışı.
      Mega panel header'ın içinde olduğundan panelde gezinirken de açık kalır.
   2) Güvenlik ağı: hover olmadan da (klavye/odak) mega ve üye panelindeki
      yazılar hiçbir durumda beyaz kalmaz. */
@media (min-width: 769px) {
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header:hover {
        background: var(--renk-header-bg, #fff) !important;
        border-bottom-color: var(--renk-border, #e5e5e5) !important;
    }
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header:hover,
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header:hover a,
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header:hover button,
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header:hover .logo-text {
        color: var(--renk-header-text, #000) !important;
    }
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header:hover .header-logo img {
        filter: brightness(0);
    }
    /* Açılan paneller her koşulda koyu metin (beyaz zeminliler) */
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header .adx-mega,
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header .adx-mega a,
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header .uye-dropdown,
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header .uye-dropdown a,
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header .uye-dropdown button {
        color: var(--renk-header-text, #000) !important;
    }
}
@media (min-width: 769px) {
    /* Header hover ile beyaza döndüğünde arama kutusu da belirir */
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header:hover .adx-search {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* ══════════════════════════════════════════════════════════════════
   MOBİL MENÜ — referans (adidas) klonu + TAM EKRAN
   Beyaz zemin, büyük harfli kalın siyah satırlar, soldaki dekoratif
   ikonlar gizli; menü ekranın tamamını kaplar (yarım panel değil).
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .mobile-sidebar {
        width: 100vw !important;
        max-width: 100vw !important;
        right: -100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: #fff !important;
    }
    .mobile-sidebar.open { right: 0 !important; box-shadow: none !important; }

    .mobile-sidebar-header {
        background: #fff !important;
        color: #000 !important;
        padding: 14px 16px !important;
        border-bottom: none !important;
    }
    .mobile-sidebar-title {
        color: #000 !important;
        font-size: 17px !important;
        font-weight: 900 !important;
        text-transform: uppercase;
        letter-spacing: .5px;
    }
    .mobile-sidebar-close { color: #000 !important; font-size: 24px !important; background: none !important; }

    .mobile-sidebar-search { padding: 4px 16px 14px !important; border-bottom: none !important; }
    .mobile-sidebar-search form { border: none !important; border-radius: 0 !important; background: #ECEFF1; }
    .mobile-sidebar-search input { background: transparent; font-size: 15px; }
    .mobile-sidebar-search button { background: transparent !important; color: #000 !important; }

    /* Ana satırlar: BÜYÜK HARF, kalın, siyah — referans tipografi */
    .mobile-sidebar-nav > ul > li { border-bottom: none !important; }
    .mobile-sidebar-nav ul li a,
    .mobile-sidebar-nav .ms-cat-row > a {
        text-transform: uppercase;
        font-weight: 700 !important;
        font-size: 16px !important;
        letter-spacing: .5px;
        color: #000 !important;
        background: #fff !important;
        padding: 15px 16px !important;
        border-bottom: none !important;
        min-height: 0 !important;
    }
    /* Soldaki dekoratif ikonlar (ev, zarf, kamyon...) gizli — referans sade */
    .mobile-sidebar-nav > ul > li > a > i,
    .mobile-sidebar-nav .ms-cat-row > a > i,
    .mobile-sidebar-nav > ul > li > a > svg { display: none !important; }

    .mobile-sidebar-nav .ms-cat-row { border-bottom: none !important; }
    .mobile-sidebar-nav .ms-acc-toggle {
        border-left: none !important;
        color: #000 !important;
        font-size: 15px;
    }

    /* Alt kategoriler: normal ağırlık, girintili, beyaz zemin */
    .mobile-sidebar-nav .mobile-submenu { background: #fff !important; }
    .mobile-sidebar-nav .mobile-submenu li a {
        text-transform: none;
        font-weight: 400 !important;
        font-size: 15px !important;
        color: #000 !important;
        padding: 11px 16px 11px 28px !important;
        border-bottom: none !important;
    }

    /* Çekmeceler (sepet / giriş) mobilde TAM EKRAN — yarım bottom-sheet değil */
    .nrs-dw-panel {
        height: 100% !important;
        max-height: 100% !important;
        border-radius: 0 !important;
    }
    .nrs-dw-ust::before { display: none !important; }
}

/* ── PLP FİLTRE ÇEKMECESİ (kategori/marka/arama ortak) ── */
/* ── PLP referans (adidas) düzeni ─────────────────────────────────── */
.nrs-plp-head { margin: 8px 0 4px; }
.nrs-plp-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 10px;
}
.nrs-plp-title .adx-plp-count { display: none; }
.nrs-plp-desc { max-width: 820px; font-size: 14.5px; line-height: 1.6; color: #444; margin: 0 0 6px; }

/* Alt kategori sekmeleri */
.nrs-cat-tabs {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid #e5e5e5;
    margin: 14px 0 0;
}
.nrs-cat-tabs::-webkit-scrollbar { display: none; }
.nrs-cat-tab {
    flex: 0 0 auto;
    padding: 12px 2px 10px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}
.nrs-cat-tab:hover { border-bottom-color: #c8c8c8; }
.nrs-cat-tab.is-active { font-weight: 700; border-bottom-color: #000; }

/* Sonuç + filtre çubuğu */
.nrs-plp-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 14px 0 18px;
}
.nrs-plp-sonuc { font-size: 14px; color: #666; }
.nrs-filtre-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
}
.nrs-filtre-btn:hover { background: #f2f2f2; }
.nrs-filtre-ikon { position: relative; display: inline-flex; }
.nrs-filtre-adet {
    position: absolute;
    top: -9px;
    right: -11px;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    background: #000;
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    border-radius: 0;
    font-style: normal;
}

/* Eski 2 kolonlu düzen iptal: ürünler tam genişlik, filtre çekmecede */
.adx-plp .nrs-plp-layout { display: block; }
.adx-plp .nrs-plp-layout .products-content { width: 100%; }

/* Karartma + çekmece */
.nrs-filtre-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 2990;
}
.nrs-filtre-backdrop.is-open { opacity: 1; visibility: visible; }
.adx-plp .nrs-filtre-drawer {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 440px;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    /* plp.css eski yan-sütun kuralı max-height ile kesiyordu — iptal */
    max-height: none;
    min-height: 100vh;
    min-height: 100dvh;
    background: #fff;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
    overflow: visible;
}
.adx-plp .nrs-filtre-drawer.is-open { transform: none; box-shadow: -16px 0 40px rgba(0,0,0,.2); }
@media (max-width: 768px) { .adx-plp .nrs-filtre-drawer { width: 100%; } }

.nrs-filtre-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid #e5e5e5;
}
.nrs-filtre-baslik {
    flex: 1;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.nrs-filtre-sil { font-size: 13.5px; font-weight: 600; color: #000; text-decoration: underline; }
.nrs-filtre-x { background: none; border: none; font-size: 20px; color: #000; cursor: pointer; padding: 4px; }

.nrs-filtre-icerik { flex: 1; overflow-y: auto; padding: 4px 20px 20px; }
.nrs-filtre-icerik .nrs-facet { border-bottom: 1px solid #e5e5e5; }
.nrs-filtre-icerik .nrs-facet summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 15.5px;
    font-weight: 700;
    cursor: pointer;
}
.nrs-filtre-icerik .nrs-facet summary::-webkit-details-marker { display: none; }
.nrs-filtre-icerik .nrs-facet summary::after { content: "\2304"; font-size: 18px; line-height: 0; transition: transform .2s; }
.nrs-filtre-icerik .nrs-facet[open] summary::after { transform: rotate(180deg); }
.nrs-facet-body { padding: 0 0 16px; }
.nrs-radio, .nrs-check {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    font-size: 14.5px;
    color: #000;
    cursor: pointer;
}
.nrs-radio input, .nrs-check input { width: 18px; height: 18px; accent-color: #000; }

.nrs-filtre-uygulanan { padding: 14px 0; border-bottom: 1px solid #e5e5e5; }
.nrs-facet-baslik { display: block; font-size: 15.5px; font-weight: 700; margin-bottom: 10px; }
.nrs-filtre-etiketler { display: flex; flex-wrap: wrap; gap: 8px; }
.nrs-filtre-etiket {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #000;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}
.nrs-filtre-etiket:hover { background: #f2f2f2; }

.nrs-filtre-foot { border-top: 1px solid #e5e5e5; padding: 12px 20px 16px; }
.nrs-filtre-bulunan { display: block; font-size: 13px; color: #666; margin-bottom: 10px; }
.nrs-filtre-uygula {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 18px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .4px;
    cursor: pointer;
    border-radius: 0;
}
.nrs-filtre-uygula:hover { background: #333; }
body.nrs-filtre-acik { overflow: hidden; }

/* ── "Hızlı Kargo / 14 Gün İade / Güvenli Ödeme / 7-24 Destek" bandı
   tamamen kaldırıldı (kullanıcı isteği) — hem section hem statik sürüm. */
.site-section.section-ozellikler,
.features-bar { display: none !important; }

/* ── Tam genişlik medya bölümleri BİTİŞİK dizilir ────────────────────
   Genel .site-section kuralı 64px dikey dolgu basıyor; slider, video
   banner ve banner gridleri arasında beyaz şerit bırakıyordu. Bu tip
   bölümler artık üstteki/alttaki içeriğe sıfır boşlukla yapışır. */
.site-section.section-slider,
.site-section.section-video_banner,
.site-section.section-banner_2li,
.site-section.section-banner_3li,
.site-section.section-banner_4li,
.site-section.section-banner_6li,
.site-section.section-banner_yatay,
.site-section.section-cta_banner {
    padding: 0 !important;
    margin: 0 !important;
}
/* Video banner: konteyner içinde olsa bile kenardan kenara tam genişlik */
.nrs-vb {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
}

/* ── Şeffaf header üst karartma (H2) ──────────────────────────────────
   Açık/yüksek-keyli slaytlarda veya görsel yüklenirken beyaz header yazısı
   okunmuyordu. Header'ın hemen arkasına yumuşak bir üstten karartma koyarak
   metin/ikon kontrastını garanti et. Yalnız şeffaf durumda (ilk açılış). */
@media (min-width: 769px) {
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header::before {
        content: "";
        position: absolute;
        left: 0; right: 0; top: 0;
        height: 220%;
        background: linear-gradient(to bottom, rgba(0,0,0,.42) 0%, rgba(0,0,0,.18) 55%, transparent 100%);
        pointer-events: none;
        z-index: -1;
    }
    /* Header hover ile beyaza dönünce karartma kaybolsun */
    body.nrs-hero-ustu:not(.nrs-kaydirildi) .main-header.adx-header:hover::before { opacity: 0; }
}

/* Sayfalama "…" ayıracı */
.pagination .page-ellipsis { display:inline-flex; align-items:center; justify-content:center; min-width:42px; height:42px; color:#999; user-select:none; }

/* ── Footer ajans imzası (KOD16) — sade, soft, tema uyumlu ── */
.footer-bottom .nrs-imza {
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid currentColor;
    opacity: .55;
    font-size: .92em;
}
.footer-bottom .nrs-imza a {
    color: inherit;
    text-decoration: none;
    transition: opacity .2s ease;
}
.footer-bottom .nrs-imza:hover { opacity: .9; }
.footer-bottom .nrs-imza a:hover { text-decoration: underline; }
@media (max-width: 640px) {
    /* Mobilde alt satıra in, ayraç çizgisi kalksın */
    .footer-bottom .nrs-imza {
        display: block;
        margin: 6px 0 0;
        padding-left: 0;
        border-left: 0;
    }
}

/* ══════ ÜRÜN ŞERİDİ (Birlikte Sık Alınanlar / Son Baktıklarınız) ══════
   İki bölüm de urun-serit.php'den basılır → görünüm birebir aynıdır. */
.nrs-serit { margin: 24px 0; }
.nrs-serit-baslik {
    font-size: 18px;
    font-weight: 700;
    color: var(--renk-text, #111827);
    margin: 0 0 16px;
}
.nrs-serit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}
.nrs-serit-kart {
    display: block;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s ease, transform .2s ease;
}
.nrs-serit-kart:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-2px); }
.nrs-serit-gorsel {
    aspect-ratio: 1 / 1;
    background: #f9fafb;
    overflow: hidden;
}
.nrs-serit-gorsel img {
    width: 100%; height: 100%;
    object-fit: contain;          /* farklı oranlı ürün fotoğrafları kırpılmasın */
    box-sizing: border-box;
    padding: 6%;
    display: block;
}
.nrs-serit-govde { padding: 10px 12px; }
.nrs-serit-ad {
    font-size: 12.5px;
    font-weight: 600;
    color: #374151;
    line-height: 1.3;
    height: 34px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.nrs-serit-fiyat { margin-top: 8px; display: flex; align-items: baseline; gap: 6px; }
.nrs-serit-fiyat strong { color: #14171c; font-size: 14.5px; }
.nrs-serit-eski { text-decoration: line-through; color: #9ca3af; font-size: 12px; }

/* ══════════════════════════════════════════════════════════════════
   MOBİL ÜRÜN LİSTELEME — REFERANS (adidas) SADELİĞİ
   Yalnız ≤768px. Masaüstü düzenine dokunulmaz.
   Referansta kartın üzerinde SEPET BUTONU YOKTUR: görsel + kalp,
   altında fiyat → ad → kategori. Kart çerçevesiz, gölgesiz.
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* 1) Görsel üzerindeki sepet butonu kaldırıldı — kartı bozan asıl öğe.
          Ürüne dokunulunca detay sayfası açılır, sepete oradan eklenir. */
    body[class] .product-card .product-add-cart,
    body[class] .product-card.adx-card .product-add-cart,
    body[class] .nrs-card .product-add-cart { display: none !important; }

    /* 2) Kart çerçevesiz/gölgesiz, köşe yuvarlaması yok */
    /* plp.css'teki 'body[class] .product-card.adx-card' kuralı daha yüksek
       özgüllükte olduğu için seçici onunla eşitlendi; ui.css sonra yüklendiği
       için eşit özgüllükte bizimki kazanır. */
    body[class] .product-card.adx-card,
    body[class] .product-card.nrs-card,
    body[class] .nrs-card {
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    body[class] .nrs-card .nrs-card-media,
    body[class] .product-card .product-image {
        border-radius: 0 !important;
        background: #f5f6f7 !important;
    }

    /* 3) Kalp: çerçevesiz, sade, sağ üstte */
    body[class] .nrs-card .nrs-card-fav .favori-btn,
    body[class] .product-card .favori-btn {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        width: 40px !important;
        height: 40px !important;
    }

    /* 4) Izgara: 2 sütun, referanstaki dar aralık */
    body[class] .products-grid,
    body[class] .adx-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 4px 8px !important;
    }

    /* 5) Tipografi — fiyat üstte kalın, ad normal, kategori gri */
    body[class] .nrs-card .nrs-card-body { padding: 8px 0 14px !important; }
    body[class] .nrs-card .nrs-card-price .nrs-price { font-size: 13.5px !important; }
    body[class] .nrs-card .nrs-card-price .nrs-price-alt { font-size: 11px !important; }
    body[class] .nrs-card .nrs-card-name {
        font-size: 12.5px !important;
        line-height: 1.3 !important;
        margin-top: 5px !important;
    }
    body[class] .nrs-card .nrs-card-meta,
    body[class] .nrs-card .nrs-card-colors { font-size: 11.5px !important; }

    /* 6) Bölüm başlıkları referanstaki gibi sade */
    body[class] .adx-shelf-title,
    body[class] .section-title { font-size: 15px !important; letter-spacing: .04em; }
}

/* ══════ SEPETTE İNDİRİM KUTUSU (ürün kartı) ══════
   Normal fiyat üstte kalır; sepet kampanyası varsa altında kutulu sunum:
   üst şeritte etiket, altında sepetteki net fiyat. Tema dili: keskin köşe,
   monokrom. index + kategori + tüm kart listelerinde geçerli. */
.nrs-card .nrs-sepette {
    display: block;
    margin-top: 8px;
    border: 1px solid var(--renk-border, #e5e7eb);
    background: #fafafa;
    text-align: center;
}
.nrs-card .nrs-sepette-etiket {
    display: block;
    background: #14171c;
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 8px;
    line-height: 1.2;
}
.nrs-card .nrs-sepette-fiyat { display: block; padding: 6px 8px 9px; }
.nrs-card .nrs-sepette-fiyat small {
    display: block;
    font-size: 10.5px;
    color: #767677;
    letter-spacing: .1em;
    text-transform: lowercase;
}
.nrs-card .nrs-sepette-fiyat strong {
    display: block;
    margin-top: 1px;
    font-size: 15px;
    font-weight: 800;
    color: #14171c;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .nrs-card .nrs-sepette-etiket { font-size: 9.5px; padding: 5px 6px; }
    .nrs-card .nrs-sepette-fiyat strong { font-size: 13.5px; }
}

/* ── Kampanya ilerleme kutusu: MONOKROM ───────────────────────────────
   Renk normalde kampanyanın "etiket rengi" ayarından (--kamp-renk) gelir.
   Mağaza siyah-beyaz temada olduğu için eski kampanyalarda kayıtlı kırmızı
   (#ef4444) tema dışına düşüyordu. Vitrinde her zaman monokrom bas.
   Kampanya bazlı renge dönmek isterseniz bu bloğu silmeniz yeterli. */
.nrs-kamp,
.nrs-dw-kamp .nrs-kamp { --kamp-renk: #14171c !important; }
.nrs-kamp-baslik { color: #14171c !important; }
.nrs-kamp-ikon   { background: #14171c !important; }
.nrs-kamp-bar > i { background: #14171c !important; }
.nrs-kamp        { border-left-color: #14171c !important; }
