/* =============================================================================
   MAGAZA-APP.CSS — Mağaza global bileşenler ve tema3 düzeltmeleri (tema3)
   -----------------------------------------------------------------------------
   Yükleme: site.css SONRASI — site.css üzerine bileşen genişletmeleri.
   Kapsam: Sepet çekmecesi, arama, ürün kartı, ana sayfa blokları, footer,
           mega menü. Tipografi site.css dosyasındadır.
   Sayfa-özel stiller magaza-pages.css ve magaza-panel.css dosyalarındadır.
   -----------------------------------------------------------------------------
   İÇİNDEKİLER
   [genel]      page-home, logo, drawer
   [sepet]      cart-drawer, magaza-sepet-*
   [arama]      search-suggest
   [urun-kart]  product-card ölçüleri
   [ana-sayfa]  home-*, slider, vitrin
   [footer]     footer-nav, footer-newsletter, footer-widgets
   [tipografi]  site.css'te birleştirildi (bu dosyada tekrar yok)
   [mega-menu]  kategori mega menü hizalama
   ============================================================================= */

/* ----- [genel] Ana sayfa gizleme, logo, modal ----- */
.page-home .magaza-eski-blok { display: none; }

.brand-section { padding-bottom: 24px; }

.logo-img { max-height: 48px; width: auto; max-width:260px }

.magaza-gorsel-modal { z-index: 1100; }

/* Mağaza modalları — kapat ikonu sağ üst köşe */
.modal .modal-header {
    position: relative;
    padding-right: 3.5rem;
}
.modal .magaza-modal-kapat {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    margin: 0;
    border: 0;
    background: #f4f4f5;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-circle);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    color: var(--text);
    cursor: pointer;
    transition: background .15s ease;
}
.modal .magaza-modal-kapat:hover {
    background: #ececf0;
}

.drawer-body .cart-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--muted);
}

.drawer-body .cart-empty a {
    display: inline-block;
    margin-top: 1rem;
}

/* ----- [sepet] Sepet cekmecesi, toast, ucretsiz kargo ----- */
.cart-drawer--empty .drawer-foot {
    display: none !important;
}

.cart-drawer--empty .drawer-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-empty-state {
    width: 100%;
    text-align: center;
    padding: 48px 24px 32px;
}

.cart-empty-state__ikon {
    font-size: 72px;
    line-height: 1;
    color: #d5d7dc;
    margin-bottom: 18px;
}

.cart-empty-state__metin {
    margin: 0 0 22px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.cart-empty-state__btn {
    min-width: 180px;
    padding-left: 28px;
    padding-right: 28px;
}

.drawer-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: var(--radius-circle);
    background: #f2f2f3;
    color: var(--text);
    line-height: 1;
}

.drawer-close-btn i {
    font-size: 20px;
    line-height: 1;
    display: block;
}

.drawer-foot .subtotal strong,
.cart-item-price {
    color: var(--primary);
}

.drawer-kargo-wrap:empty {
    display: none;
}

.product-bottom button.magaza-sepete-ekle,
.product-track .product-bottom button.magaza-sepete-ekle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-btn);
    background: #fff;
    color: var(--primary);
    font-size: 20px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.product-bottom button.magaza-sepete-ekle:hover,
.product-bottom button.magaza-sepete-ekle:focus-visible,
.product-bottom button.magaza-sepete-ekle:active,
.product-bottom button.magaza-sepete-ekle.added,
.product-track .product-bottom button.magaza-sepete-ekle:hover,
.product-track .product-bottom button.magaza-sepete-ekle:focus-visible,
.product-track .product-bottom button.magaza-sepete-ekle:active,
.product-track .product-bottom button.magaza-sepete-ekle.added {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.magaza-toast-popup.swal2-popup {
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-ui);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .16);
}

.magaza-sepet-eklendi-host {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1085;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.magaza-sepet-eklendi-toast {
    position: relative;
    width: min(360px, calc(100vw - 24px));
    padding: 14px 14px 12px;
    border-radius: var(--radius-ui);
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .18);
    overflow: hidden;
    opacity: 0;
    transform: translate3d(120%, 0, 0);
    transition: opacity .28s ease, transform .32s cubic-bezier(.22, 1, .36, 1);
    pointer-events: auto;
}

.magaza-sepet-eklendi-toast--goster {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.magaza-sepet-eklendi-toast--kapaniyor {
    opacity: 0;
    transform: translate3d(120%, 0, 0);
}

.magaza-sepet-eklendi-toast__border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    color: var(--primary);
}

.magaza-sepet-eklendi-toast__border-rect {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation-name: magazaSepetToastBorder;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes magazaSepetToastBorder {
    to { stroke-dashoffset: 0; }
}

.magaza-sepet-eklendi-toast__kapat {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: var(--radius-pill);
    background: rgba(244, 244, 245, .92);
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.magaza-sepet-eklendi-toast__kapat:hover {
    background: #eef2ff;
    color: var(--primary);
}

.magaza-sepet-eklendi-toast__govde {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-right: 28px;
}

.magaza-sepet-eklendi-toast__gorsel {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #f4f4f5;
    border: 1px solid #ececf0;
}

.magaza-sepet-eklendi-toast__gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.magaza-sepet-eklendi-toast__metin {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 2px;
}

.magaza-sepet-eklendi-toast__durum {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #16a34a;
}

.magaza-sepet-eklendi-toast__durum .uil {
    font-size: 16px;
}

.magaza-sepet-eklendi-toast__ad {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--text);
}

.magaza-sepet-eklendi-toast__alt {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: var(--muted);
}

.magaza-sepet-eklendi-toast__aksiyon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    width: 100%;
    min-height: 40px;
    border-radius: var(--radius-btn);
    background: var(--primary);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background .2s ease, transform .2s ease;
}

.magaza-sepet-eklendi-toast__aksiyon:hover,
.magaza-sepet-eklendi-toast__aksiyon:focus {
    background: var(--primary-hover);
    color: #fff !important;
    transform: translateY(-1px);
}

@media (max-width: 575.98px) {
    .magaza-sepet-eklendi-host {
        right: 12px;
        left: 12px;
        bottom: 12px;
        align-items: stretch;
    }

    .magaza-sepet-eklendi-toast {
        width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .magaza-sepet-eklendi-toast,
    .magaza-sepet-eklendi-toast__border-rect,
    .magaza-arama-oneri.is-open,
    .magaza-arama-durum__spinner {
        animation: none !important;
        transition: none !important;
    }
}

/* ----- [arama] Header arama onerileri ----- */
.search-form,
.mobile-search {
    position: relative;
    overflow: visible;
}

.search-form-btn,
.search-form .search-form-btn {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    min-height: 42px;
    border: 0;
    border-radius: var(--radius-circle);
    background: var(--primary);
    color: #fff;
    font-size: 19px;
    margin-right: 4px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-search {
    align-items: center;
    padding-right: 4px;
    background: #fff;
    border: 1px solid var(--border);
}

.mobile-search-btn,
.mobile-search .mobile-search-btn {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    min-height: 36px;
    margin-right: 2px;
    border: 0;
    border-radius: var(--radius-circle);
    background: var(--primary);
    color: #fff;
    font-size: 18px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@keyframes magazaAramaOneriAc {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.magaza-arama-oneri {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    z-index: 700;
    display: none;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(25, 28, 33, .08);
    border-radius: var(--radius-md);
    box-shadow:
        0 4px 6px rgba(25, 28, 33, .04),
        0 18px 44px rgba(25, 28, 33, .12);
    max-height: min(440px, 72vh);
    overflow: hidden;
}

.magaza-arama-oneri.is-open {
    display: flex;
    animation: magazaAramaOneriAc .22s ease;
}

.magaza-arama-oneri__icerik {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    padding: 12px 12px 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(var(--primary-rgb), .35) transparent;
}

.magaza-arama-oneri__icerik::-webkit-scrollbar {
    width: 6px;
}

.magaza-arama-oneri__icerik::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgb), .28);
    border-radius: var(--radius-pill);
}

.magaza-arama-oneri__icerik::-webkit-scrollbar-track {
    background: transparent;
}

.magaza-arama-oneri__bolum + .magaza-arama-oneri__bolum {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(25, 28, 33, .06);
}

.magaza-arama-oneri__bolum-baslik {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 10px 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

.magaza-arama-oneri__bolum-baslik i {
    font-size: 13px;
    color: var(--primary);
}

.magaza-arama-oneri__chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.magaza-arama-oneri .magaza-arama-durum {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 28px 20px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.magaza-arama-durum__spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(var(--primary-rgb), .18);
    border-top-color: var(--primary);
    border-radius: var(--radius-circle);
    animation: magazaAramaSpinner .7s linear infinite;
}

@keyframes magazaAramaSpinner {
    to {
        transform: rotate(360deg);
    }
}

.magaza-arama-oneri__bos {
    padding: 28px 20px 24px;
    text-align: center;
}

.magaza-arama-oneri__bos-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
    border-radius: var(--radius-circle);
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
    font-size: 22px;
}

.magaza-arama-oneri__bos-baslik {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.magaza-arama-oneri__bos-metin {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--muted);
}

.magaza-arama-oneri .magaza-arama-oge {
    color: var(--text);
    text-decoration: none;
    transition:
        background .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.magaza-arama-oneri .magaza-arama-oge:hover,
.magaza-arama-oneri .magaza-arama-oge.is-active {
    color: var(--text);
    text-decoration: none;
}

.magaza-arama-oneri .magaza-arama-oge--chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border: 1px solid rgba(25, 28, 33, .08);
    border-radius: var(--radius-pill);
    background: var(--soft);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.magaza-arama-oneri .magaza-arama-oge--chip:hover,
.magaza-arama-oneri .magaza-arama-oge--chip.is-active {
    background: rgba(var(--primary-rgb), .08);
    border-color: rgba(var(--primary-rgb), .18);
    box-shadow: 0 4px 14px rgba(var(--primary-rgb), .10);
}

.magaza-arama-oneri .magaza-arama-oge__ico {
    display: inline-flex;
    color: var(--primary);
    font-size: 14px;
}

.magaza-arama-oneri .magaza-arama-oge-ad {
    min-width: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.magaza-arama-oneri .magaza-arama-oge-ad strong {
    color: var(--primary);
    font-weight: 700;
}

.magaza-arama-oneri .magaza-arama-urun {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    margin-bottom: 6px;
    border: 1px solid transparent;
    border-radius: var(--radius-ui);
}

.magaza-arama-oneri .magaza-arama-urun:last-child {
    margin-bottom: 0;
}

.magaza-arama-oneri .magaza-arama-urun:hover,
.magaza-arama-oneri .magaza-arama-urun.is-active {
    background: rgba(var(--primary-rgb), .06);
    border-color: rgba(var(--primary-rgb), .12);
    box-shadow: 0 6px 18px rgba(var(--primary-rgb), .08);
}

.magaza-arama-oneri .magaza-arama-oge-gorsel {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(25, 28, 33, .08);
    border-radius: var(--radius-ui);
    overflow: hidden;
    background: #fff;
}

.magaza-arama-oneri .magaza-arama-oge-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.magaza-arama-oneri .magaza-arama-oge-gorsel-bos {
    background: linear-gradient(135deg, #f7f7f8 0%, #ececef 100%);
}

.magaza-arama-oneri .magaza-arama-oge-metin {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.magaza-arama-oneri .magaza-arama-urun .magaza-arama-oge-ad {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.magaza-arama-oneri .magaza-arama-oge-fiyat {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -.01em;
}

.magaza-arama-oneri .magaza-arama-urun__ok {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-circle);
    color: var(--muted);
    font-size: 14px;
    opacity: 0;
    transform: translateX(-4px);
    transition:
        opacity .18s ease,
        transform .18s ease,
        background .18s ease,
        color .18s ease;
}

.magaza-arama-oneri .magaza-arama-urun:hover .magaza-arama-urun__ok,
.magaza-arama-oneri .magaza-arama-urun.is-active .magaza-arama-urun__ok {
    opacity: 1;
    transform: translateX(0);
    background: rgba(var(--primary-rgb), .10);
    color: var(--primary);
}

.magaza-arama-oneri__alt {
    flex: 0 0 auto;
    padding: 10px 12px 12px;
    border-top: 1px solid rgba(25, 28, 33, .06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(244, 244, 245, .55) 100%);
}

.magaza-arama-oneri .magaza-arama-tum-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(var(--primary-rgb), .08);
    text-decoration: none;
}

.magaza-arama-oneri .magaza-arama-tum-btn:hover,
.magaza-arama-oneri .magaza-arama-tum-btn.is-active {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(var(--primary-rgb), .24);
}

.magaza-arama-tum-btn__sayi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .82);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.magaza-arama-oneri .magaza-arama-tum-btn:hover .magaza-arama-tum-btn__sayi,
.magaza-arama-oneri .magaza-arama-tum-btn.is-active .magaza-arama-tum-btn__sayi {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

/* ----- [urun-kart] Urun karti olculeri, carousel ----- */
.product-grid > [class*="col-"],
.product-track > .product-card {
    display: flex;
}

.product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.product-card .product-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 88px;
}

.product-card .product-meta {
    flex-shrink: 0;
    min-height: 22px;
}

.product-card .product-content h3 {
    flex: 1 1 auto;
    margin: 0 0 10px;
    line-height: 1.35;
    min-height: calc(1.35em * 2);
    max-height: calc(1.35em * 2);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    text-overflow: ellipsis;
}

.product-card .product-content h3 a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Liste kartı varyant: görsel alt ortası (kart yüksekliğini artırmaz) */
.product-card .product-media {
    position: relative;
}
.product-variants-preview {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 4px 7px;
    max-width: calc(100% - 16px);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 1px 6px rgba(15, 23, 42, .12);
    backdrop-filter: blur(4px);
}
.product-variant-swatch {
    width: 16px;
    height: 16px;
    padding: 0;
    border: 1px solid rgba(15, 23, 42, .2);
    border-radius: var(--radius-circle);
    background: var(--swatch, #ccc);
    cursor: pointer;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}
.product-variant-swatch.is-image {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-chip);
    background: #fff;
}
.product-variant-swatch.is-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.product-variant-swatch:hover,
.product-variant-swatch:focus-visible {
    transform: scale(1.1);
    border-color: var(--primary);
    outline: none;
}
.product-variant-swatch.is-active {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary);
    border-color: transparent;
}
.product-variant-more {
    font-size: 11px;
    font-weight: 700;
    color: var(--bs-secondary-color, #64748b);
    line-height: 1;
    white-space: nowrap;
}

.product-card .product-bottom {
    margin-top: auto;
    flex-shrink: 0;
    gap: 8px;
}

.product-card .magaza-kart-fiyat-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.product-card .magaza-kart-eski-fiyat {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: line-through;
    line-height: 1.2;
}

.product-card .product-bottom strong {
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.2;
}

.mini-product h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

/* ----- [ana-sayfa] Banner, slider, hizmet, yorum ----- */
.home-cms-section {
    padding: 28px 0 8px;
}

.home-cms-section--wide {
    padding: 20px 0;
}

.home-promo-card {
    height: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #111;
}

.home-promo-card__shell {
    position: relative;
    height: 100%;
}

.home-promo-card__media {
    display: block;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: var(--soft);
}

.home-promo-card--wide .home-promo-card__media {
    aspect-ratio: 16 / 6;
}

.home-promo-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-promo-card__body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 22px 28px 22px 36px;
    max-width: 78%;
    background: linear-gradient(90deg, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .22) 62%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    pointer-events: none;
}

.home-promo-card__title {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    color: #fff;
}

.home-promo-card__desc {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
}

.home-promo-card__desc:empty {
    display: none;
    margin: 0;
}

.home-promo-card__btn {
    pointer-events: auto;
    margin-top: 0;
    height: 38px;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.home-promo-card__btn:hover {
    background: var(--primary-hover);
    color: #fff;
}

.home-promo-card__media {
    pointer-events: auto;
}

.home-wide-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #111;
    min-height: 160px;
}

.home-wide-banner__media {
    display: block;
}

.home-wide-banner__media img {
    width: 100%;
    height: auto;
    min-height: 160px;
    object-fit: cover;
    display: block;
}

.home-wide-banner__body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 28px 40px 28px 48px;
    max-width: 52%;
    background: linear-gradient(90deg, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .2) 70%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    pointer-events: none;
}

.home-wide-banner__title {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.home-wide-banner__desc {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
}

.home-wide-banner__desc:empty {
    display: none;
    margin: 0;
}

.home-wide-banner__btn {
    pointer-events: auto;
    height: 40px;
    padding: 0 20px;
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.home-wide-banner__btn:hover {
    background: var(--primary-hover);
    color: #fff !important;
}

.home-wide-banner__media {
    pointer-events: auto;
}

/* ----- [ana-sayfa] Slider icerik konumu ----- */
.home-slide-content {
    position: absolute;
    inset: 0;
    top: 0;
    left: 60px;
    right: auto;
    width: 52%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 32px 40px 46px 48px;
    z-index: 2;
    background: linear-gradient(90deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .15) 75%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.home-slide-content span {
    display: block;
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
}

.home-slide-content__desc {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
}

.home-slide-content__desc:empty {
    display: none;
    margin: 0;
}

.home-slide-content h1 {
    margin: 0 0 10px;
    color: #fff;
}

.home-slide-content .btn {
    margin-top: 4px;
    pointer-events: auto;
}

.home-thumbs {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    pointer-events: none;
}

.home-thumb-btn {
    pointer-events: auto;
    flex: 0 0 auto;
    width: 92px;
    height: 58px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, .55);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: rgba(0, 0, 0, .28);
    cursor: pointer;
    opacity: .78;
    transition: opacity .18s ease, border-color .18s ease, transform .18s ease;
}

.home-thumb-btn:hover,
.home-thumb-btn.active {
    opacity: 1;
    border-color: #fff;
    transform: translateY(-2px);
}

.home-thumb-btn__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.home-service-bar {
    padding: 8px 0 24px;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.home-service-item {
    min-height: 92px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-service-item__ikon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-circle);
    background: var(--soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.home-service-item__metin {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.home-service-item__metin strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.home-service-item__metin span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

.home-deals-section {
    padding-top: 36px;
}

.home-product-section {
    padding-top: 36px;
    padding-bottom: 8px;
}

.home-category-section {
    padding: 28px 0 8px;
}

.home-category-section .section-header h2,
.home-product-section .section-header h2,
.home-deals-section .section-header h2,
.home-testimonials .section-header h2,
.brand-section .section-header h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.35px;
}

.section-header__action {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
    background: rgba(var(--magaza-vurgu-rgb), 0.08);
    border: 1px solid rgba(var(--magaza-vurgu-rgb), 0.16);
    border-radius: var(--radius-pill);
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.section-header__action:hover {
    color: var(--primary-dark);
    background: rgba(var(--magaza-vurgu-rgb), 0.14);
    border-color: rgba(var(--magaza-vurgu-rgb), 0.28);
    text-decoration: none;
    transform: translateY(-1px);
}

.section-header__link {
    display: inline-block;
    margin-left: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0;
    vertical-align: middle;
}

.section-header__link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ----- [header-vitrin] Vitrin şeridi (desktop + mobil chip + drawer) ----- */
.header-vitrin-nav {
    border-top: 1px solid var(--border);
    background: transparent;
}

.header-vitrin-nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 44px;
    padding: 8px 0 10px;
}

.header-vitrin-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    color: #383b40;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-pill);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.header-vitrin-nav__link:hover,
.header-vitrin-nav__link.is-active {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(var(--magaza-vurgu-rgb), 0.32);
    text-decoration: none;
    transform: translateY(-1px);
}

.header-vitrin-nav__link.is-active {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.header-vitrin-chips {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 14px 12px;
    border-top: 1px solid var(--border);
    background: #fff;
}

.header-vitrin-chips::-webkit-scrollbar {
    display: none;
}

.header-vitrin-chips__track {
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    min-width: 100%;
    padding-bottom: 2px;
}

.header-vitrin-chips__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    color: #383b40;
    background: #f4f4f5;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.header-vitrin-chips__chip:hover,
.header-vitrin-chips__chip.is-active {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 3px 12px rgba(var(--magaza-vurgu-rgb), 0.28);
    text-decoration: none;
    transform: translateY(-1px);
}

.header-vitrin-chips__chip.is-active {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.mobile-vitrin-group {
    border-top: 1px solid var(--border);
    margin-top: 4px;
    padding-top: 4px;
}

.mobile-vitrin-group__title {
    padding: 10px 18px 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.mobile-accordion-menu .mobile-single-link.is-active {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .mobile-header {
        border-bottom: none;
        padding-bottom: 0;
    }

    .mobile-header > .container-fluid {
        padding-left: 14px;
        padding-right: 14px;
    }

    .header-vitrin-chips {
        border-top: none;
        padding: 6px 0 5px;
        margin-top: 0;
    }

    .header-vitrin-chips__track {
        padding-bottom: 0;
        min-width: 0;
        width: max-content;
    }

    .hero-wrap.hero-slider-section,
    .hero-slider-section {
        padding-top: 12px;
    }

    .hero-wrap.hero-slider-section {
        padding-bottom: 24px;
    }

    .hero-wrap.hero-slider-section.hero-slider-section--band,
    .hero-slider-section.hero-slider-section--band {
        padding-top: 0;
        padding-bottom: var(--hdr-slider-pad);
    }
}

@media (max-width: 767.98px) {
    .home-category-section .section-header h2,
    .home-product-section .section-header h2,
    .home-deals-section .section-header h2,
    .home-testimonials .section-header h2,
    .brand-section .section-header h2 {
        font-size: 18px;
        letter-spacing: -0.25px;
    }
}

.category-carousel-wrap {
    position: relative;
    margin-top: 24px;
}

.home-category-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 2px 4px;
}

.home-category-track.is-jump {
    scroll-behavior: auto !important;
}

.home-category-track::-webkit-scrollbar {
    display: none;
}

.home-category-track .home-category-card {
    flex: 0 0 calc((100% - 126px) / 8);
    scroll-snap-align: start;
    min-width: 0;
}

.category-carousel-wrap .category-prev {
    left: -56px;
}

.category-carousel-wrap .category-next {
    right: -56px;
}

.home-category-tabs-section .section-header {
    align-items: center;
}

.home-category-tab-panel {
    display: none;
}

.home-category-tab-panel.is-active {
    display: flex;
}

.product-track--carousel {
    scroll-snap-type: x mandatory;
}

.product-track--carousel .carousel-product {
    scroll-snap-align: start;
}

@media (max-width: 1399.98px) {
    .category-carousel-wrap .category-prev {
        left: 8px;
    }

    .category-carousel-wrap .category-next {
        right: 8px;
    }

    .home-category-track .home-category-card {
        flex: 0 0 calc((100% - 90px) / 6);
    }
}

@media (max-width: 767.98px) {
    .category-carousel-wrap {
        padding: 0;
    }

    .home-category-track .home-category-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }

    .category-carousel-wrap .category-prev {
        left: -12px;
    }

    .category-carousel-wrap .category-next {
        right: -12px;
    }

    .product-track--carousel .carousel-product {
        flex: 0 0 calc((100% - 16px) / 2) !important;
        min-width: calc((100% - 16px) / 2);
    }

    .product-card .product-content h3,
    .product-track .product-content h3 {
        font-size: 12px;
    }

    .product-card .product-bottom strong,
    .product-track .product-bottom strong {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.home-category-card {
    height: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
}

.home-category-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: #fff;
    overflow: hidden;
}

.home-category-card__media img,
.home-category-card__media .home-category-card__img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    padding: 10px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    background: #fff;
}

.home-category-card__media img[src$=".svg"],
.home-category-card__media .home-category-card__img[src$=".svg"] {
    padding: 18px !important;
}

.home-category-card__body {
    padding: 14px 12px 18px;
    text-align: center;
}

.home-category-card__title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}

.home-category-card__title:hover {
    color: var(--primary);
}

.home-category-product-block {
    margin-bottom: 28px;
}

.home-category-product-block:last-child {
    margin-bottom: 0;
}

.home-testimonials {
    padding: 56px 0 20px;
}

.testimonial-carousel-wrap {
    position: relative;
    margin-top: 8px;
}

.testimonial-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding: 4px 2px 8px;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc((100% - 54px) / 4);
    scroll-snap-align: start;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-card__metin {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #4a4f57;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    word-break: break-word;
}

.testimonial-card__author {
    margin-top: 0;
}

.testimonial-card__ad {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.testimonial-prev {
    left: -56px;
}

.testimonial-next {
    right: -56px;
}

@media (max-width: 1399.98px) {
    .testimonial-prev { left: 8px; }
    .testimonial-next { right: 8px; }
    .testimonial-card { flex: 0 0 calc((100% - 36px) / 3); }
}

@media (max-width: 1199.98px) {
    .home-service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .testimonial-card { flex: 0 0 calc((100% - 18px) / 2); }
}

@media (max-width: 991.98px) {
    .home-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-promo-card__body {
        padding: 18px 22px 18px 28px;
        max-width: 88%;
    }
    .home-promo-card__title { font-size: 16px; }
    .home-promo-card__desc { font-size: 13px; margin-bottom: 12px; }
    .home-wide-banner__body {
        max-width: 72%;
        padding: 22px 28px 22px 32px;
    }
    .home-wide-banner__title { font-size: 20px; }
    .home-slide-content {
        width: 72%;
        padding: 24px 28px 88px 32px;
    }

    .home-thumbs {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 18px 14px;
        gap: 10px;
    }

    .home-thumb-btn {
        width: 78px;
        height: 50px;
    }
    .testimonial-card { flex-basis: 82vw; }
}

@media (max-width: 767.98px) {
    .home-promo-card__body {
        max-width: 100%;
        padding: 16px 18px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .72) 100%);
        justify-content: flex-end;
    }

    .home-wide-banner__body {
        max-width: 100%;
        padding: 18px 20px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .72) 100%);
        justify-content: flex-end;
    }

    .home-slide-content {
        width: 100%;
        max-width: none;
        padding: 20px 22px 88px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .65) 100%);
        justify-content: flex-end;
    }

    .home-thumbs {
        bottom: 12px;
        padding: 0 14px 10px;
    }
}

@media (max-width: 575.98px) {
    .home-service-grid { grid-template-columns: 1fr; }
    .product-card .product-content { min-height: 74px; }
    .product-card .product-content h3 {
        min-height: calc(1.35em * 2);
        max-height: calc(1.35em * 2);
    }
    .product-card .product-bottom strong,
    .product-track .product-bottom strong {
        font-size: 12px;
    }
}

/* ----- [footer] Footer genisletme, bulten bandi ----- */
.footer-social {
    margin-top: 22px;
}

.footer-social__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social__link {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-circle);
    background: #fff;
    border: 1px solid #e3e6ea;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    line-height: 1;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-social__link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-social__x {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -.04em;
    font-family: Arial, Helvetica, sans-serif;
}

/* Eski footer-social yapisina geriye uyum */
.footer-social strong {
    display: none;
}

.footer-social ul:not(.footer-social__list) {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social ul:not(.footer-social__list) a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-circle);
    background: #fff;
    border: 1px solid #e3e6ea;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    overflow: hidden;
}

.footer-nav--rich ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav--rich a {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
}

.footer-nav--rich a:hover {
    color: var(--primary);
}

.footer-categories-row {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #ddd;
}

.footer-categories-title {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
    margin: 0 0 14px;
}

.footer-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.footer-category-links a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.footer-category-links a:hover {
    color: var(--primary);
}

.footer-widgets {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #ddd;
}

.newsletter small {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    opacity: .92;
}

.newsletter small a {
    color: #fff;
    text-decoration: underline;
}

.footer-newsletter-band {
    margin-top: 70px;
    background: var(--hdr-newsletter-bg);
    color: #fff;
}

.footer-newsletter-band > .site-container {
    padding-left: 22px;
    padding-right: 22px;
}

.footer-newsletter-band__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
    padding: 36px 0;
}

.footer-newsletter-band__text {
    min-width: 0;
    max-width: 640px;
}

.footer-newsletter-band__text h3 {
    margin: 0 0 8px;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    color: #fff;
}

.footer-newsletter-band__text p {
    margin: 0;
    font-size: 14px;
    opacity: .95;
}

.footer-newsletter-band__form-wrap {
    justify-self: end;
    width: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-newsletter-band__form,
.footer-newsletter-band .magaza-bulten-form {
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0;
}

.footer-newsletter-field {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-end;
    gap: 10px;
    width: auto;
    max-width: 100%;
}

.footer-newsletter-input,
.footer-newsletter-band__form .footer-newsletter-input,
.footer-newsletter-band .magaza-bulten-form .footer-newsletter-input,
.footer-newsletter-field .footer-newsletter-input {
    flex: 0 0 auto;
    width: 360px;
    max-width: min(360px, calc(100vw - 120px));
    min-width: 0;
    height: 50px;
    border: 0;
    border-radius: var(--radius-pill);
    padding: 0 20px;
    font-size: 15px;
    font-family: inherit;
    font-weight: 600;
    color: var(--text);
    background: #fff;
    box-shadow: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.footer-newsletter-input::placeholder {
    color: #8a8f98;
}

.footer-newsletter-input:focus {
    outline: 2px solid rgba(255, 255, 255, .45);
    outline-offset: 2px;
}

.footer-newsletter-btn,
.footer-newsletter-band__form .footer-newsletter-btn,
.footer-newsletter-band .magaza-bulten-form .footer-newsletter-btn {
    flex: 0 0 auto;
    height: 50px;
    border: 0;
    border-radius: var(--radius-pill);
    background: #fff;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 0 24px;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.footer-newsletter-btn:hover {
    background: #f4f4f5;
}

.footer-newsletter-band__form-wrap small {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    opacity: .92;
    text-align: right;
}

.footer-newsletter-band__form-wrap small a {
    color: #fff;
    text-decoration: underline;
}

.site-footer > .site-container {
    padding-left: 22px;
    padding-right: 22px;
}

.footer-main-row {
    align-items: flex-start;
}

.footer-main-row > .footer-col h3 {
    margin-bottom: 16px;
}

.footer-col--brand {
    padding-right: 8px;
}

@media (max-width: 767.98px) {
    .footer-newsletter-band > .site-container,
    .site-footer > .site-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .footer-newsletter-band__inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 28px 0;
    }

    .footer-newsletter-band__form-wrap {
        width: 100%;
        align-items: stretch;
        justify-self: stretch;
    }

    .footer-newsletter-band__form-wrap small {
        text-align: left;
    }

    .footer-newsletter-field {
        flex-direction: column;
        width: 100%;
    }

    .footer-newsletter-input,
    .footer-newsletter-band__form .footer-newsletter-input,
    .footer-newsletter-band .magaza-bulten-form .footer-newsletter-input,
    .footer-newsletter-field .footer-newsletter-input {
        width: 100%;
        max-width: 100%;
    }

    .footer-newsletter-btn,
    .footer-newsletter-band__form .footer-newsletter-btn,
    .footer-newsletter-band .magaza-bulten-form .footer-newsletter-btn,
    .footer-newsletter-field .footer-newsletter-btn {
        width: 100%;
    }
}

/* Footer accordion — masaüstü açık; mobil kapalı (kupon toggle diline yakın) */
.footer-acc__toggle {
    display: none;
}

.footer-widgets-acc {
    margin-top: 8px;
}

@media (max-width: 991.98px) {
    .footer-newsletter-band.footer-acc {
        margin-top: 28px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .footer-newsletter-band.footer-acc > .site-container {
        padding-top: 0;
        padding-bottom: 0;
    }

    .footer-acc__toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        margin: 0;
        padding: 14px 0;
        border: 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        background: transparent;
        color: var(--text);
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
        text-align: left;
        cursor: pointer;
        appearance: none;
    }

    .footer-newsletter-band .footer-acc__toggle {
        color: #fff;
        border-bottom-color: rgba(255, 255, 255, 0.22);
    }

    .footer-newsletter-band .footer-acc__toggle .footer-acc__ok {
        color: rgba(255, 255, 255, 0.85);
    }

    .footer-newsletter-band.footer-acc.is-open > .site-container > .footer-acc__toggle {
        color: #fff;
    }

    .footer-newsletter-band.footer-acc.is-open > .site-container > .footer-acc__toggle .footer-acc__ok {
        color: #fff;
    }

    .footer-acc__ok {
        flex: 0 0 auto;
        font-size: 18px;
        line-height: 1;
        color: var(--muted);
        transition: transform 0.2s ease;
    }

    .footer-acc.is-open > .footer-acc__toggle .footer-acc__ok,
    .footer-acc.is-open > .site-container > .footer-acc__toggle .footer-acc__ok {
        transform: rotate(180deg);
        color: var(--primary);
    }

    .footer-acc.is-open > .footer-acc__toggle,
    .footer-acc.is-open > .site-container > .footer-acc__toggle {
        color: var(--primary);
        border-bottom-color: transparent;
    }

    .footer-acc > .footer-acc__panel,
    .footer-newsletter-band.footer-acc > .site-container > .footer-acc__panel {
        display: none;
        padding: 0 0 14px;
    }

    .footer-acc.is-open > .footer-acc__panel,
    .footer-newsletter-band.footer-acc.is-open > .site-container > .footer-acc__panel {
        display: block;
    }

    .footer-acc__desktop-baslik {
        display: none !important;
    }

    .footer-main-row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
        row-gap: 0;
    }

    .footer-main-row > .footer-col.footer-acc {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .footer-main-row > .footer-col--brand {
        margin-bottom: 8px;
        padding-bottom: 8px;
    }

    .footer-newsletter-band.footer-acc .footer-newsletter-band__inner {
        padding: 4px 0 8px;
        gap: 14px;
    }

    .footer-newsletter-band.footer-acc .footer-newsletter-band__text p {
        margin: 0 0 4px;
        font-size: 13px;
    }

    .site-footer {
        padding-top: 24px;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .footer-acc .footer-acc__panel nav {
        gap: 10px;
        padding-top: 2px;
    }

    .footer-widgets-acc {
        margin-top: 0;
    }
}

/* ----- [kategori-facet] Sol panel + mobil drawer kategori ağacı ----- */
.magaza-kategori-v2-kategori-facet .magaza-facet-baslik--vurgu {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: normal;
    text-transform: none;
    color: #1e293b;
}

.magaza-kategori-facet-kok {
    padding: 10px 16px 18px;
}

.magaza-kategori-v2-kategori-facet .magaza-kategori-facet-liste {
    margin: 0;
    padding: 0;
    list-style: none;
}

.magaza-kategori-v2-kategori-facet .magaza-kategori-facet-item + .magaza-kategori-facet-item {
    margin-top: 2px;
}

.magaza-kategori-v2-kategori-facet .magaza-kategori-facet-satir {
    display: flex;
    align-items: center;
    gap: 6px;
}

.magaza-kategori-v2-kategori-facet .magaza-kategori-facet-link {
    flex: 1 1 auto;
    min-width: 0;
    display: block;
    padding: 7px 0;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
}

.magaza-kategori-v2-kategori-facet .magaza-kategori-facet-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.magaza-kategori-v2-kategori-facet .magaza-kategori-facet-toggle {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: var(--radius-xs);
    background: #f1f5f9;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, transform .32s ease;
}

.magaza-kategori-v2-kategori-facet .magaza-kategori-facet-toggle:hover {
    background: #ede9fe;
    color: var(--primary);
}

.magaza-kategori-v2-kategori-facet .magaza-kategori-facet-item.is-open > .magaza-kategori-facet-satir .magaza-kategori-facet-toggle {
    background: #ede9fe;
    color: var(--primary);
    transform: rotate(180deg);
}

/* CSS grid 0fr→1fr: tek kademeli aç/kapa (JS height ölçümü yok) */
.magaza-kategori-facet-alt {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .28s cubic-bezier(0.4, 0, 0.2, 1);
}

.magaza-kategori-facet-item.is-open > .magaza-kategori-facet-alt {
    grid-template-rows: 1fr;
}

.magaza-kategori-facet-item:not(.is-open) > .magaza-kategori-facet-alt {
    pointer-events: none;
}

.magaza-kategori-facet-item.is-instant > .magaza-kategori-facet-alt {
    transition: none !important;
}

.magaza-kategori-facet-alt-ic {
    overflow: hidden;
    min-height: 0;
}

.magaza-kategori-facet-alt-ic > ul {
    margin: 2px 0 8px;
    padding: 4px 0 4px 12px;
    border-left: 2px solid #e2e8f0;
    list-style: none;
}

.magaza-kategori-v2-kategori-facet .magaza-kategori-facet-alt .magaza-kategori-facet-item {
    margin-top: 2px;
}

.magaza-kategori-v2-kategori-facet .magaza-kategori-facet-alt .magaza-kategori-facet-link {
    font-size: 13px;
    padding: 6px 0;
}

.magaza-kategori-v2-kategori-facet .magaza-kategori-facet-alt-link {
    display: block;
    padding: 6px 8px;
    border-radius: var(--radius-xs);
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
}

.magaza-kategori-v2-kategori-facet .magaza-kategori-facet-alt-link:hover {
    color: var(--primary);
    background: #f8f7ff;
    text-decoration: none;
}

.magaza-kategori-facet-kok.mobile-category-menu {
    display: block;
}

.magaza-kategori-facet-kok.mobile-category-menu a {
    min-height: 0;
    width: auto;
    border: 0;
    background: transparent;
    text-align: left;
}

/* ----- [mega-menu] Desktop mega menu hizalama ----- */
@media (min-width: 992px) {
    /* Vitrin şeridinin üst border'ında açılsın (header-row altı) */
    .main-header > .site-container {
        position: static;        
    }

    .main-header .header-row {
        position: relative;
        z-index: 2;
    }

    .category-menu-root {
        position: static;
    }

    .category-menu-root::after {
        display: none !important;
    }

    .category-menu-root .mega-menu {
        left: 0 !important;
        right: 0 !important;
        top: 100% !important;
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        margin-top: 0;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        border-top: 1px solid var(--border);
        box-shadow: 0 28px 70px rgba(0, 0, 0, .2);
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
        z-index: 602;
    }

    body.mega-menu-open .category-menu-root .mega-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto;
    }

    body.mega-menu-open .topbar,
    body.mega-menu-open .main-header {
        position: relative;
        z-index: 601;
    }

    body.mega-menu-open .main-header {
        position: sticky;
    }

    .mega-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .44);
        z-index: 600;
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s ease, visibility .2s ease;
        pointer-events: none;
    }

    body.mega-menu-open .mega-menu-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mega-left a:first-child {
        border-top-left-radius: 0;
    }

    .category-menu-root .mega-menu {
        max-height: min(82vh, 720px);
        align-items: stretch;
    }

    .mega-left {
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
    }

    .mega-left::-webkit-scrollbar {
        width: 6px;
    }

    .mega-left::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, .35);
        border-radius: var(--radius-pill);
    }

    .mega-content {
        overflow-y: auto;
        overscroll-behavior: contain;
    }
}

/* ----- [genel] Magaza buton dikey hizalama (Bootstrap + ASP.NET input.btn) ----- */
.btn,
a.btn,
button.btn,
label.btn,
input.btn,
input[type="submit"].btn,
input[type="button"].btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    line-height: 1.25;
    text-align: center;
    vertical-align: middle;
}

.btn-sm {
    min-height: 32px;
}

.btn-lg {
    min-height: 48px;
}

.btn:not(.btn-sm):not(.btn-lg) {
    min-height: 40px;
}

/* ----- [header] Hesap açılır menü (v2) ----- */
.magaza-header-hesap-v2 {
    position: relative;
}

.magaza-header-hesap-v2 .head-icon {
    cursor: pointer;
}

.magaza-header-hesap-v2:hover .head-icon,
.magaza-header-hesap-v2:focus-within .head-icon {
    background: #f3f0ff;
    color: var(--primary);
}

.magaza-header-hesap-v2__panel {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 248px;
    background: #fff;
    border-radius: var(--radius-ui);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.14);
    border: 1px solid var(--border);
    padding: 8px 0;
    z-index: 320;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    pointer-events: none;
}

.magaza-header-hesap-v2__panel::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}

.magaza-header-hesap-v2:hover .magaza-header-hesap-v2__panel,
.magaza-header-hesap-v2:focus-within .magaza-header-hesap-v2__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.magaza-hesap-nav-v2--header {
    gap: 0;
}

.magaza-hesap-nav-v2--header .magaza-hesap-nav-v2__oge {
    border-left: none;
    padding: 11px 18px;
    border-radius: 0;
}

.magaza-hesap-nav-v2--header .magaza-hesap-nav-v2__oge.is-active {
    border-left: none;
    background: #f3f0ff;
}

.magaza-hesap-nav-v2--header .magaza-hesap-nav-v2__oge--cikis {
    margin-top: 4px;
    border-top: 1px solid var(--border);
    color: #64748b;
}

.magaza-hesap-nav-v2--header .magaza-hesap-nav-v2__oge--cikis:hover {
    color: #dc2626;
    background: #fef2f2;
}

.mobile-acc-item--hesap.open > .mobile-acc-content {
    max-height: 720px;
}

.mobile-acc-item--hesap .mobile-acc-content a {
    gap: 10px;
}

.mobile-acc-item--hesap .mobile-acc-content a i {
    width: 22px;
    text-align: center;
    font-size: 18px;
    color: #64748b;
}

.mobile-acc-item--hesap .mobile-acc-content a.is-active {
    color: var(--primary);
    font-weight: 600;
}

.mobile-acc-item--hesap .mobile-acc-content a.is-active i {
    color: var(--primary);
}

.mobile-acc-item--hesap .mobile-acc-content a.mobile-acc-link--cikis {
    color: #64748b;
    border-top: 1px solid #e8e8e8;
    margin-top: 4px;
    padding-top: 4px;
}

.mobile-cat-head {
    display: flex;
    align-items: stretch;
    min-height: 55px;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
}

.mobile-cat-link {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px 0 20px;
    min-height: 55px;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.mobile-cat-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.mobile-cat-link i {
    width: 22px;
    text-align: center;
    font-size: 18px;
    color: #333;
}

.mobile-cat-toggle {
    flex: 0 0 52px;
    width: 52px;
    border: 0;
    border-left: 1px solid #e5e5e5;
    background: #fff;
    color: #555;
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-cat-head--sub {
    min-height: 48px;
}

.mobile-cat-head--sub .mobile-cat-link {
    padding-left: 30px;
    min-height: 48px;
    color: #7f8790;
    font-size: 15px;
    background: #fbfbfb;
}

.mobile-cat-sub.open > .mobile-cat-head--sub .mobile-cat-link {
    color: #555;
}

.mobile-cat-leaf {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 20px 0 44px;
    border-bottom: 1px solid #e8e8e8;
    color: #7f8790;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.mobile-cat-leaf--l2 {
    padding-left: 34px;
}

.mobile-cat-leaf:hover {
    color: var(--primary);
    text-decoration: none;
}

.mobile-cat-root.open > .mobile-acc-content {
    max-height: 2400px;
}

.mobile-cat-sub.open > .mobile-acc-content {
    max-height: 900px;
}

/* kargot takip modal */
.magaza-kargo-takip-modal .modal-dialog {
    max-width: 560px;
}

.magaza-kargo-takip-modal .modal-content {
    overflow: hidden;
    border: none;
    border-radius: var(--radius-ui);
    background: #fff;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
}

.magaza-kargo-takip-modal .modal-header {
    padding: 14px 18px;
    border-bottom: 1px solid #eef2f7;
    background: #fff;
}

.magaza-kargo-takip-modal .modal-title {
    margin: 0;
    color: #1e293b;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.magaza-kargo-takip-modal .modal-body {
    padding: 16px 18px;
    background: #fafbfc;
}

.magaza-kargo-takip-modal .modal-footer {
    padding: 12px 18px;
    border-top: 1px solid #eef2f7;
    background: #fff;
}

.magaza-kargo-takip-modal .magaza-modal-kapat {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-xs);
    font-size: 22px;
}

.magaza-modal-kapat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    border-radius: var(--radius-btn);
    background: #f8fafc;
    color: #64748b;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

    .magaza-modal-kapat:hover {
        background: #eef2f7;
        color: #1e293b;
    }

    .magaza-modal-kapat:active {
        transform: scale(.96);
    }

.magaza-kargo-takip-ozet {
    margin-bottom: 14px;
    padding: 12px 14px;
    border: 1px solid #edf1f5;
    border-radius: var(--radius-btn);
    background: #fff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
}

.magaza-kargo-takip-modal .magaza-kargo-takip-ozet__satir {
    padding: 8px 0;
}

.magaza-kargo-takip-modal .magaza-etiket,
.magaza-kargo-takip-modal .magaza-deger {
    font-size: 13px;
}

.magaza-kargo-takip-ozet__satir {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
}

    .magaza-kargo-takip-ozet__satir:not(:last-child) {
        border-bottom: 1px dashed #eceff4;
    }

.magaza-etiket {
    flex: 0 0 130px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.magaza-deger {
    min-width: 0;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-align: right;
    overflow-wrap: anywhere;
}

.magaza-deger--vurgu {
    color: #2563eb;
}

.magaza-kargo-takip-dis-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

    .magaza-kargo-takip-dis-link:hover {
        color: #1d4ed8;
        text-decoration: underline;
    }

/* Kargo takip modalı: kompakt timeline (diğer sayfalar etkilenmez) */
.magaza-kargo-takip-modal .magaza-kargo-timeline {
    margin: 12px 0 0;
    padding: 2px 0 0;
}

.magaza-kargo-takip-modal .magaza-kargo-timeline__oge {
    min-width: 76px;
    padding: 0 4px 2px;
}

.magaza-kargo-takip-modal .magaza-kargo-timeline__oge:not(:last-child)::after {
    top: 12px;
    left: calc(50% + 14px);
    width: calc(100% - 28px);
    height: 2px;
}

.magaza-kargo-takip-modal .magaza-kargo-timeline__nokta {
    width: 24px;
    height: 24px;
    border-width: 2px;
    font-size: 12px;
    box-shadow: 0 0 0 4px #fff;
}

.magaza-kargo-takip-modal .magaza-kargo-timeline__oge.is-tamam .magaza-kargo-timeline__nokta,
.magaza-kargo-takip-modal .magaza-kargo-timeline__oge.is-aktif .magaza-kargo-timeline__nokta {
    box-shadow: 0 0 0 4px var(--surec-tamam-soft);
}

.magaza-kargo-takip-modal .magaza-kargo-timeline__oge.is-aktif .magaza-kargo-timeline__nokta {
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 16%, transparent);
}

.magaza-kargo-takip-modal .magaza-kargo-timeline__metin,
.magaza-kargo-takip-modal .magaza-kargo-timeline__govde {
    margin-top: 7px;
}

.magaza-kargo-takip-modal .magaza-kargo-timeline__metin strong,
.magaza-kargo-takip-modal .magaza-kargo-timeline__govde strong {
    font-size: 11px;
    line-height: 1.3;
}

.magaza-kargo-takip-modal .magaza-kargo-timeline__tarih {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.3;
}

.magaza-kargo-takip-modal .magaza-kargo-hareket-toggle {
    padding: 11px 13px;
    font-size: 13px;
    border-radius: var(--radius-btn);
}

.magaza-kargo-takip-modal .magaza-kargo-hareket-toggle__ok {
    font-size: 18px;
}

.magaza-kargo-takip-modal .magaza-kargo-hareket-govde {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-btn);
}

.magaza-kargo-takip-modal .magaza-kargo-hareket__oge {
    padding: 8px 0;
    gap: 12px;
    font-size: 13px;
}

.magaza-kargo-timeline {
    --surec-tamam: #22c55e;
    --surec-tamam-soft: rgba(34, 197, 94, .16);
    --surec-bekliyor: #d1d5db;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    margin: 22px 0 0;
    /* overflow-x:auto → overflow-y da auto olur; nokta halkası (box-shadow 6px) üstten kesilmesin */
    padding: 10px 2px 4px;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: thin;
}

.magaza-kargo-timeline__oge {
    position: relative;
    flex: 1 1 0;
    min-width: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px 4px;
}

.magaza-kargo-timeline__oge:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 18px;
    left: calc(50% + 20px);
    width: calc(100% - 40px);
    height: 3px;
    background: var(--surec-bekliyor);
    border-radius: var(--radius-pill);
}

.magaza-kargo-timeline__oge.is-tamam:not(:last-child)::after {
    background: var(--surec-tamam);
}

.magaza-kargo-timeline__nokta {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-circle);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--surec-bekliyor);
    background: #fff;
    color: transparent;
    font-size: 17px;
    line-height: 1;
    box-shadow: 0 0 0 6px #fff;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.magaza-kargo-timeline__nokta i {
    display: none;
}

.magaza-kargo-timeline__oge.is-tamam .magaza-kargo-timeline__nokta {
    border-color: var(--surec-tamam);
    background: var(--surec-tamam);
    color: #fff;
    box-shadow: 0 0 0 6px var(--surec-tamam-soft);
}

.magaza-kargo-timeline__oge.is-tamam .magaza-kargo-timeline__nokta i {
    display: block;
}

.magaza-kargo-timeline__oge.is-aktif .magaza-kargo-timeline__nokta {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--primary) 16%, transparent);
}

.magaza-kargo-timeline__oge.is-aktif .magaza-kargo-timeline__nokta i {
    display: block;
}

.magaza-kargo-timeline__metin {
    margin-top: 12px;
    width: 100%;
    min-width: 0;
}

.magaza-kargo-timeline__metin strong {
    display: block;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.magaza-kargo-timeline__oge.is-tamam .magaza-kargo-timeline__metin strong {
    color: #1f2937;
}

.magaza-kargo-timeline__oge.is-aktif .magaza-kargo-timeline__metin strong {
    color: var(--primary);
}

.magaza-kargo-timeline__tarih {
    display: block;
    margin-top: 4px;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.35;
}

@media (max-width: 767px) {
    .magaza-kargo-timeline__oge {
        min-width: 96px;
    }

    .magaza-kargo-timeline__metin strong {
        font-size: 12px;
    }
}

.magaza-kargo-hareket-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid #edf1f5;
    border-radius: var(--radius-sm);
    background: #fff;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

    .magaza-kargo-hareket-toggle:hover {
        border-color: #dbe4ef;
        background: #f8fafc;
        box-shadow: 0 4px 12px rgba(15, 23, 42, .04);
    }

    .magaza-kargo-hareket-toggle:focus {
        outline: none;
        box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
    }

.magaza-kargo-hareket-toggle__ok {
    flex: 0 0 auto;
    color: #64748b;
    font-size: 22px;
    transition: transform .25s ease;
}

.magaza-kargo-hareket-toggle[aria-expanded="true"]
.magaza-kargo-hareket-toggle__ok {
    transform: rotate(180deg);
}

.magaza-kargo-hareket-govde {
    margin-top: 14px;
    padding: 18px;
    border: 1px solid #edf1f5;
    border-radius: var(--radius-sm);
    background: #fff;
}

.magaza-kargo-hareket-liste {
    margin: 0;
    padding: 0;
    list-style: none;
}

.magaza-kargo-hareket__oge {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

    .magaza-kargo-hareket__oge:first-child {
        padding-top: 0;
    }

    .magaza-kargo-hareket__oge:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

.magaza-kargo-hareket__tarih {
    flex: 0 0 145px;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.5;
}

.magaza-kargo-hareket__aciklama {
    min-width: 0;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-align: right;
    overflow-wrap: anywhere;
}

.magaza-uyari {
    padding: 14px 16px;
    border-radius: var(--radius-btn);
    font-size: 14px;
    line-height: 1.5;
}

.magaza-uyari--uyari {
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #92400e;
}

.magaza-kargo-takip-modal .modal-footer .btn {
    min-width: 88px;
    padding: 7px 14px;
    border-radius: var(--radius-xs);
    font-size: 13px;
    font-weight: 600;
}

.magaza-kargo-takip-modal .modal-footer .btn-light {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #334155;
}

    .magaza-kargo-takip-modal .modal-footer .btn-light:hover {
        border-color: #cbd5e1;
        background: #eef2f7;
        color: #1e293b;
    }

@media (max-width: 767.98px) {
    .magaza-kargo-takip-modal .modal-dialog {
        max-width: none;
        margin: 12px;
    }

    .magaza-kargo-takip-modal .modal-content {
        border-radius: var(--radius-ui);
    }

    .magaza-kargo-takip-modal .modal-header {
        padding: 12px 16px;
    }

    .magaza-kargo-takip-modal .modal-title {
        font-size: 16px;
    }

    .magaza-kargo-takip-modal .modal-body {
        padding: 14px 16px;
    }

    .magaza-kargo-takip-modal .modal-footer {
        padding: 10px 16px;
    }

    .magaza-kargo-takip-modal .magaza-kargo-takip-ozet {
        padding: 10px 12px;
    }

    .magaza-kargo-takip-ozet__satir {
        flex-direction: column;
        gap: 4px;
    }

    .magaza-etiket {
        flex-basis: auto;
    }

    .magaza-deger {
        text-align: left;
    }

    .magaza-kargo-timeline__oge {
        padding-left: 42px;
    }

        .magaza-kargo-timeline__oge::after,
        .magaza-kargo-timeline__nokta {
            left: 12px;
        }

    .magaza-kargo-timeline__govde {
        min-height: 68px;
        padding: 13px 15px;
    }

    .magaza-kargo-hareket__oge {
        flex-direction: column;
        gap: 4px;
    }

    .magaza-kargo-hareket__tarih {
        flex-basis: auto;
    }

    .magaza-kargo-hareket__aciklama {
        text-align: left;
    }
}

/* =============================================================================
   [header-brand] Header / vitrin / slider chrome
   Renk tokenleri: site.css :root (--hdr-*). Burada yalnızca bileşen kuralları.
   ============================================================================= */

/* ----- Topbar ----- */
.topbar.topbar--brand {
    background: var(--hdr-topbar-bg);
    border-bottom: 0;
    color: var(--hdr-topbar-fg);
}

.topbar.topbar--brand .topbar-left,
.topbar.topbar--brand .topbar-left a,
.topbar.topbar--brand .topbar-left span {
    color: var(--hdr-topbar-fg);
}

.topbar.topbar--brand .topbar-links a {
    color: var(--hdr-topbar-fg);
    border-left-color: rgba(255, 255, 255, 0.18);
}

.topbar.topbar--brand .topbar-links a:hover {
    color: #fff;
}

/* ----- Ana header ----- */
.main-header.main-header--brand {
    background: var(--hdr-main-bg);
    border-bottom: 0;
}

.main-header.main-header--brand .category-toggle {
    background: var(--hdr-cat-bg);
    color: #fff;
}

    .main-header.main-header--brand .search-form-btn,
    .main-header.main-header--brand .search-form button {
        background: var(--hdr-search-bg);
        color: #fff;
    }

.main-header.main-header--brand .discount-link {
    background: var(--hdr-teklif-bg);
    border-color: var(--hdr-teklif-bg);
    color: #fff;
}

.main-header.main-header--brand .discount-link:hover {
    color: #fff;
    opacity: 0.92;
}

.main-header.main-header--brand .head-icon span,
.main-header.main-header--brand .head-icon.has-badge span {
    background: var(--hdr-badge-bg);
    color: #fff;
    box-shadow: none;
}

.main-header.main-header--brand .head-icon.cart span {
    background: var(--hdr-badge-bg);
    color: #fff;
}

/* ----- Vitrin şeridi (kırmızı bant, boydan boya, ortalı) ----- */
.header-vitrin-nav.header-vitrin-nav--band {
    border-top: 0;
    background: var(--hdr-band-bg);
    width: 100%;
    margin: 0;
    height: var(--hdr-vitrin-h);
}

.header-vitrin-nav.header-vitrin-nav--band .header-vitrin-nav__inner {
    width: 100%;
    max-width: 1530px;
    height: 100%;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    gap: 0;
    min-height: 0;
    box-sizing: border-box;
}

@media (min-width: 1600px) {
    .header-vitrin-nav.header-vitrin-nav--band .header-vitrin-nav__inner {
        max-width: 1580px;
    }
}

@media (max-width: 767.98px) {
    .header-vitrin-nav.header-vitrin-nav--band .header-vitrin-nav__inner {
        padding: 0 14px;
    }
}

.header-vitrin-nav.header-vitrin-nav--band .header-vitrin-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--hdr-band-fg);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0 10px;
    height: 100%;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.header-vitrin-nav.header-vitrin-nav--band .header-vitrin-nav__link i {
    font-size: 16px;
    line-height: 1;
}

.header-vitrin-nav.header-vitrin-nav--band .header-vitrin-nav__link:hover,
.header-vitrin-nav.header-vitrin-nav--band .header-vitrin-nav__link.is-active {
    color: #fff;
    background: var(--hdr-band-hover);
    box-shadow: none;
    transform: none;
}

.header-vitrin-chips.header-vitrin-chips--band {
    border-top: 0;
    border-radius: 0;
    background: var(--hdr-band-bg);
    width: 100%;
    max-width: none;
    margin: 0;
    height: var(--hdr-vitrin-h);
    padding: 0 14px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.header-vitrin-chips.header-vitrin-chips--band .header-vitrin-chips__track {
    align-items: center;
    gap: 18px;
    min-height: 0;
    padding: 0;
    margin: 0;
}

.header-vitrin-chips.header-vitrin-chips--band .header-vitrin-chips__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--hdr-band-fg);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-pill);
    box-shadow: none;
    height: 28px;
    padding: 0 12px;
    font-size: 12px;
}

.header-vitrin-chips.header-vitrin-chips--band .header-vitrin-chips__chip i {
    font-size: 14px;
}

.header-vitrin-chips.header-vitrin-chips--band .header-vitrin-chips__chip:hover,
.header-vitrin-chips.header-vitrin-chips--band .header-vitrin-chips__chip.is-active {
    color: #fff;
    background: var(--hdr-band-hover);
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.mobile-header.mobile-header--brand {
    background: var(--hdr-main-bg);
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
}

.mobile-header.mobile-header--brand > .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
}

.mobile-header.mobile-header--brand .mobile-search button,
.mobile-header.mobile-header--brand .mobile-search-btn {
    background: var(--hdr-search-bg);
}

/* ----- Ana sayfa slider bandı (vitrin ile aynı kırmızı, üst boşluk yok) ----- */
.hero-wrap.hero-slider-section.hero-slider-section--band,
.hero-slider-section.hero-slider-section--band {
    background: var(--hdr-slider-pad);
    padding-top: 0;
    padding-bottom: var(--hdr-slider-pad);
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.hero-slider-section.hero-slider-section--band > .site-container {
    padding-top: 0;
}

.hero-slider-section.hero-slider-section--band .home-slider {
    background: #111;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* Ana slayt (~2/3) + sağ fırsat (~1/3, üçlü banner dilimi ile aynı oran) */
.hero-home-layout {
    display: block;
    width: 100%;
}

.hero-home-layout__slider {
    width: 100%;
    min-width: 0;
}

.hero-home-layout--firsat {
    display: grid;
    /* Bootstrap col-md-4 / col-md-8 ile aynı mantık: 2/3 + 1/3, gap ≈ g-4 */
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.hero-home-layout--firsat .home-slider {
    height: 100%;
    min-height: 440px;
}

.hero-home-layout__firsat {
    min-width: 0;
    display: flex;
}

.hero-firsat {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    box-sizing: border-box;
}

.hero-firsat__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-shrink: 0;
}

.hero-firsat__baslik {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text, #222);
}

.hero-firsat__nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.hero-firsat__btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border, #e8e8ea);
    border-radius: var(--radius-circle);
    background: #fff;
    color: var(--text, #222);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
}

.hero-firsat__btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-firsat__btn i {
    font-size: 18px;
    line-height: 1;
}

/* Kart alanı: kalan yüksekliği doldurur → ürün altı = slayt altı */
.hero-firsat__body {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
}

.hero-firsat__track {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    gap: 12px;
    padding: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.hero-firsat__track::-webkit-scrollbar {
    display: none;
}

.hero-firsat__track .carousel-product {
    flex: 0 0 calc((100% - 12px) / 2) !important;
    width: auto;
    max-width: none;
    height: 100%;
    align-self: stretch;
}

.hero-firsat__track .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-firsat__track .product-media {
    flex: 1 1 auto;
    min-height: 0;
}

.hero-firsat__track .product-image {
    height: 100%;
    min-height: 140px;
    padding: 14px 12px 10px;
}

.hero-firsat__track .product-content {
    flex-shrink: 0;
    padding: 0 12px 10px;
}

.hero-firsat__track .product-meta {
    font-size: 11px;
    margin-bottom: 4px;
}

.hero-firsat__track .product-content h3 {
    font-size: 12px;
    line-height: 1.35;
    min-height: calc(1.35em * 2);
    max-height: calc(1.35em * 2);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-firsat__track .product-bottom {
    flex-shrink: 0;
    height: 50px;
    padding: 0 12px;
    margin-top: auto;
}

.hero-firsat__track .product-bottom strong {
    font-size: 13px;
}

.hero-firsat__track .product-bottom button.magaza-sepete-ekle {
    width: 34px;
    height: 34px;
    font-size: 16px;
    border-radius: var(--radius-xs);
}

@media (max-width: 991.98px) {
    .hero-home-layout--firsat {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-home-layout--firsat .home-slider {
        min-height: 390px;
    }

    .hero-firsat {
        height: auto;
    }

    .hero-firsat__body {
        min-height: 0;
        height: auto;
    }

    /* site.css mobil grid'i hero fırsat kaydırmasını bozmasın; sabit yükseklik fiyat/sepeti kesmesin */
    .hero-firsat__track {
        display: flex !important;
        gap: 10px;
        overflow-x: auto;
        scroll-behavior: smooth;
        grid-template-columns: none !important;
        align-items: stretch;
        height: auto;
        min-height: 0;
    }

    .hero-firsat__track .carousel-product {
        flex: 0 0 calc((100% - 10px) / 2) !important;
        width: auto;
        height: auto;
    }

    .hero-firsat__track .product-card {
        height: auto;
    }

    .hero-firsat__track .product-media {
        flex: 0 0 auto;
    }

    .hero-firsat__track .product-image {
        height: 140px !important;
        min-height: 0;
        padding: 12px 10px 8px !important;
    }

    .hero-firsat__track .product-content {
        padding: 0 10px 8px !important;
    }

    .hero-firsat__track .product-content h3 {
        margin-bottom: 0 !important;
    }

    .hero-firsat__track .product-bottom {
        height: 48px !important;
        padding: 0 10px !important;
        flex-shrink: 0;
    }

    .hero-firsat__track .carousel-product:nth-child(n+7) {
        display: block !important;
    }
}

@media (max-width: 575.98px) {
    .hero-firsat__baslik {
        font-size: 16px;
    }

    .hero-firsat__track .product-image {
        height: 120px !important;
    }

    .hero-firsat__track .product-bottom strong {
        font-size: 12px;
    }
}

.hero-slider-section.hero-slider-section--band .home-slide-content h1,
.hero-slider-section.hero-slider-section--band .home-slide-content p,
.hero-slider-section.hero-slider-section--band .home-slide-content__desc {
    color: #fff;
}

.hero-slider-section.hero-slider-section--band .btn-primary {
    background: #fff;
    border-color: #fff;
    color: var(--hdr-slide-btn-text);
}

.hero-slider-section.hero-slider-section--band .btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: var(--hdr-slide-btn-text);
    opacity: 0.92;
}

.hero-slider-section.hero-slider-section--band .home-thumb-btn.active,
.hero-slider-section.hero-slider-section--band .home-thumbs button.active {
    color: #fff;
}

@media (max-width: 991.98px) {
    .hero-wrap.hero-slider-section.hero-slider-section--band,
    .hero-slider-section.hero-slider-section--band {
        padding-top: 0;
        padding-bottom: var(--hdr-slider-pad);
    }

    .hero-slider-section.hero-slider-section--band .home-slider {
        border-radius: var(--radius-lg);
    }
}