/* MODANNA özel stiller — template'in styles.css'inden sonra yüklenir */

/* ============================================================
   Z-INDEX HİYERARŞİSİ — Tüm sticky/floating elementler buradan
   ============================================================ */
:root {
    --z-toast: 10000;
    --z-modal: 1050;
    --z-offcanvas: 1045;
    --z-cookie-banner: 1040;
    --z-dropdown: 1030;
    --z-sticky: 1020;
    --z-header: 1000;
    --z-bottom-toolbar: 100;
    --z-pwa-banner: 95;
    --z-chatbot: 90;
    --z-scroll-top: 80;

    /* Mobil bottom widget yer ayarı (KVKK banner aktif olduğunda kaydırma yüksekliği) */
    --modanna-bottom-toolbar-h: 68px;
    --modanna-bottom-offset-base: 18px;     /* default sağ-alt margin */
    --modanna-bottom-offset-mobile: 86px;   /* mobile: toolbar üstü (68 + 18) */
    --modanna-bottom-offset-cookie: 130px;  /* mobile: cookie banner + toolbar */
}

/* KVKK banner DOM'da olduğunda body'e işaret koyacağız → bottom widget'lar daha yukarı */
body.has-cc-banner {
    --modanna-bottom-offset-mobile: var(--modanna-bottom-offset-cookie);
}

/* Modal/offcanvas açıkken floating widget'ları gizle (UX karmaşıklığı önlemek için) */
body.modal-open .modanna-cb,
body.offcanvas-active .modanna-cb,
body.modal-open #goTop,
body.modal-open .mod-pwa-banner {
    visibility: hidden !important;
}

/* Global: yatay scroll engelleme (tüm cihazlarda) */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ============================================================
   HERO (tek slide, videolu)
   ============================================================ */

.modanna-hero {
    position: relative;
    overflow: hidden;
}

.modanna-hero .slideshow-wrap {
    position: relative;
    width: 100%;
    height: 730px;
    overflow: hidden;
    background: #000;
}

.modanna-hero .sld_image.sld_video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.modanna-hero .sld_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Karartma katmanı — metin okunabilirliği için */
.modanna-hero .sld_image.sld_video-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0,0,0,0.40) 0%,
            rgba(0,0,0,0.15) 35%,
            rgba(0,0,0,0.15) 60%,
            rgba(0,0,0,0.60) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Slide content (yazılar/buton) overlay'in üstünde + dikey ortalı */
.modanna-hero .sld_content,
.modanna-hero .sld_content.pst-5,
.modanna-hero .sld_content.pst-1,
.modanna-hero .sld_content.pst-2,
.modanna-hero .sld_content.pst-3,
.modanna-hero .sld_content.pst-4 {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    transform: none !important;
    z-index: 2;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 24px;
    text-align: center;
}

.modanna-hero .sld_content .container {
    width: 100%;
}

.modanna-hero .content-sld_wrap {
    color: #fff;
    max-width: 800px;
}

.modanna-hero .title_sld {
    /* Template'in text-display clamp(36,6vw,80)'ini override et */
    font-size: clamp(44px, 4.2vw, 68px) !important;
    line-height: 1.08 !important;
    letter-spacing: 0.02em !important;
    text-shadow: 0 2px 14px rgba(0,0,0,0.55);
    margin-bottom: 0;
}
.modanna-hero .sub-text_sld {
    /* text-body-1 18px override et */
    font-size: 14px !important;
    line-height: 1.4 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0,0,0,0.5);
    margin-bottom: 18px !important;
}
.modanna-hero .heading {
    margin-bottom: 24px;
}

.modanna-hero .hero-cta {
    margin-top: 28px;
}

/* ============================================================
   MOBİL — hero viewport'tan biraz daha uzun, fontlar dengeli
   ============================================================ */

@media (max-width: 991px) {
    .modanna-hero .title_sld {
        font-size: 56px !important;
    }
}

@media (max-width: 768px) {
    .modanna-hero .slideshow-wrap,
    .tf-slideshow.modanna-hero .slideshow-wrap {
        height: 88vh !important;
        height: 88svh !important;
        min-height: 540px !important;
        max-height: 760px !important;
    }
    /* sld_content kuvvetli ortalama — template'in pst-5/translateY'sini geç */
    .modanna-hero .slideshow-wrap > .sld_content,
    .modanna-hero .sld_content.pst-5 {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 24px !important;
    }
    /* metin/title görünür ve uygun boyut */
    .modanna-hero .title_sld,
    .modanna-hero .sub-text_sld {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #fff !important;
    }
    .modanna-hero .title_sld {
        font-size: 44px !important;
        line-height: 1.15;
        margin-bottom: 0;
    }
    .modanna-hero .sub-text_sld {
        font-size: 13px !important;
        letter-spacing: 2px;
        margin-bottom: 14px !important;
    }
    .modanna-hero .heading {
        margin-bottom: 20px !important;
    }
    .modanna-hero .hero-cta {
        margin-top: 24px;
    }
}

@media (max-width: 575px) {
    /* Template "sub-text_sld display:none" override */
    .modanna-hero .sld_content .sub-text_sld,
    .modanna-hero .sub-text_sld {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    .modanna-hero .title_sld {
        font-size: 36px !important;
    }
    .modanna-hero .sub-text_sld {
        font-size: 12px !important;
        letter-spacing: 1.5px;
    }
    .modanna-hero .content-sld_wrap {
        padding: 0 12px;
    }
}

/* ============================================================
   HEADER LOGO — her ekranda belirgin, oranlı
   ============================================================ */

.tf-header .logo-site,
.header-center .logo-site {
    display: inline-flex;
    align-items: center;
}

.tf-header .logo-site img,
.header-center .logo-site img,
.footer-infor .logo-site img {
    height: 38px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 991px) {
    .tf-header .logo-site img,
    .header-center .logo-site img {
        height: 40px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .tf-header .logo-site img,
    .header-center .logo-site img {
        height: 34px;
        max-width: 170px;
    }
}

/* ============================================================
   ÜRÜN GRID (anasayfa Top Pick bölümleri)
   ============================================================ */

.modanna-section-products .row {
    --bs-gutter-x: 1rem;
}

.modanna-section-products .card-product {
    height: 100%;
}

.modanna-section-products .card-product_wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    aspect-ratio: 3 / 4;
    background: #f5f5f5;
}

.modanna-section-products .card-product_wrapper .img-product,
.modanna-section-products .card-product_wrapper .img-hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.modanna-section-products .card-product_info {
    padding-top: 14px;
}

.modanna-section-products .name-product {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modanna-section-products .price-wrap {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.modanna-section-products .price-new {
    font-size: 16px;
}

.modanna-section-products .price-old {
    text-decoration: line-through;
}

@media (max-width: 768px) {
    .modanna-section-products .name-product { font-size: 13px; }
    .modanna-section-products .price-new { font-size: 14px; }
    .modanna-section-products .price-old { font-size: 12px; }
}

/* ============================================================
   MOBİL: HAMBURGER MENÜ + ALT TOOLBAR
   ============================================================ */

/* Bottom toolbar: sadece mobil/tablet */
.modanna-toolbar-bottom { display: none; }
.tf-toolbar-bottom.modanna-toolbar-bottom {
    z-index: var(--z-bottom-toolbar);
}

@media (max-width: 991px) {
    .modanna-toolbar-bottom {
        display: flex;
    }
    /* Body'e padding ver — bottom toolbar sayfayı kapatmasın */
    body {
        padding-bottom: var(--modanna-bottom-toolbar-h);
    }
    /* Footer'ın son row'u toolbar altına çakışmasın */
    .tf-footer .footer-bottom {
        margin-bottom: 12px;
    }
}

/* Hamburger menü içindeki alt-açılan kategori listesi */
.modanna-mobile-menu .nav-mb-item .sub-nav-menu {
    list-style: none;
    padding: 0 0 8px 16px;
    margin: 0;
}
.modanna-mobile-menu .sub-nav-menu .sub-nav-link {
    display: block;
    padding: 8px 0;
    color: #5c3a44;
    font-size: 14px;
}
.modanna-mobile-menu .sub-nav-menu .sub-nav-link:hover {
    color: #E31B54;
}
.modanna-mobile-menu .mb-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f0e6e8;
    color: #2d0a14;
    font-size: 15px;
    font-weight: 500;
}
.modanna-mobile-menu .mb-menu-link[aria-expanded="true"] .btn-open-sub {
    transform: rotate(180deg);
}
.modanna-mobile-menu .btn-open-sub {
    transition: transform .25s;
}

/* ============================================================
   ÜRÜN KARTI — Hover varyasyon paneli + Sepete Ekle
   ============================================================ */

.modanna-card .card-product_wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f5f5f5;
}
.modanna-card .card-product_wrapper .img-product,
.modanna-card .card-product_wrapper .img-hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Overlay (görsel ÜZERİNDE alttan slide-up) — bedenler + Sepete Ekle (BEYAZ ZEMİN) */
.modanna-card-overlay {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .22s ease, transform .22s ease;
    z-index: 3;
    pointer-events: none;
}
.modanna-card:hover .modanna-card-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
/* Mobil sepet ikonu — kayan yazının ÜSTÜNDE, sağ alt yuvarlak buton */
.modanna-card-mobile-cart {
    display: none;
    position: absolute;
    bottom: 48px;
    right: 10px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    border: 0;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, transform .12s;
}
/* Marquee yoksa sepet aşağıya insin */
.modanna-card .card-product_wrapper:not(:has(.product-marquee_sale)) .modanna-card-mobile-cart {
    bottom: 10px;
}
.modanna-card-mobile-cart:hover {
    background: #2d2d2d;
    color: #fff;
    transform: scale(1.05);
}
.modanna-card-mobile-cart i { font-size: 16px; }

/* Mobil: overlay (bedenler + buton) gizli, sadece sepet ikonu görünür */
@media (hover: none), (max-width: 991px) {
    .modanna-card .modanna-card-overlay {
        display: none !important;
    }
    .modanna-card .modanna-card-mobile-cart {
        display: inline-flex;
    }
}

.modanna-card-overlay .modanna-card-sizes {
    display: flex !important;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0 0 16px 0 !important;
    padding-bottom: 4px;
    justify-content: center;
}

.modanna-card .modanna-card-cta-btn,
button.modanna-card-cta-btn,
.modanna-card-overlay button.modanna-card-cta-btn {
    width: 100%;
    background: #000 !important;
    background-color: #000 !important;
    color: #fff !important;
    border: 0;
    height: 36px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .18s;
}
.modanna-card .modanna-card-cta-btn:hover,
button.modanna-card-cta-btn:hover,
.modanna-card-overlay button.modanna-card-cta-btn:hover {
    background: #2d2d2d !important;
    background-color: #2d2d2d !important;
}
.modanna-card .modanna-card-cta-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.modanna-card .modanna-card-cta-btn i { font-size: 14px; }
.modanna-card .modanna-card-cta-btn::after,
.modanna-card .modanna-card-cta-btn::before { display: none !important; content: none !important; }

/* Beden satırı — yatay scroll'suz, küçük pill butonlar */
.modanna-card-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
    justify-content: flex-start;
    align-items: center;
}
.modanna-card-size-label {
    display: none; /* Etiket gereksiz — bedenler kendi başlarına yeterli */
}
/* Beden satırı — kart info içinde her zaman görünür, yatay scrollsuz */
.modanna-card .modanna-card-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 8px 0 0;
    align-items: center;
}

/* Beden butonları — beyaz zemin üzerinde gri pill */
.modanna-card-size {
    min-width: 30px;
    height: 26px;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 600;
    border: 1.5px solid #d0d0d0;
    background: #fff;
    color: #1a1a1a;
    border-radius: 999px;
    cursor: pointer;
    transition: all .15s ease;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.modanna-card-size:hover {
    border-color: #000;
}
.modanna-card-size.active {
    background: #000;
    border-color: #000;
    color: #fff;
}

/* Sepete ekle — koyu pill, full-width */
.modanna-card .js-card-add-to-cart {
    width: 100%;
    background: #2d0a14;
    color: #fff;
    border: 0;
    height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .18s;
}
.modanna-card .js-card-add-to-cart:hover {
    background: #E31B54;
}
.modanna-card .js-card-add-to-cart i {
    font-size: 14px;
}
.modanna-card .js-card-add-to-cart:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Shake — beden seçilmediyse */
.modanna-card-sizes.shake {
    animation: modanna-shake 0.45s cubic-bezier(.36,.07,.19,.97);
}
@keyframes modanna-shake {
    10%, 90% { transform: translateX(-2px); }
    20%, 80% { transform: translateX(3px); }
    30%, 50%, 70% { transform: translateX(-4px); }
    40%, 60% { transform: translateX(4px); }
}


/* Marquee yazı — mobilde de görünsün (template 1199px altı gizliyor) */
.modanna-card .product-marquee_sale {
    z-index: 2;
}
@media (max-width: 1199px) {
    .modanna-card .product-marquee_sale {
        display: block !important;
    }
}

/* Mobil varyasyon paneli — kart altında her zaman görünür */
@media (hover: none), (max-width: 991px) {
    .modanna-card .modanna-card-variant {
        position: static !important;
        background: transparent !important;
        backdrop-filter: none !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        padding: 10px 0 0 !important;
        display: block !important;
    }
}

/* ============================================================
   MİNİ SEPET OFFCANVAS — Mobilde rahat görünüm
   ============================================================ */

/* ============================================================
   SEPET SAYFASI — Tablo sığdırma
   ============================================================ */

/* Tablo wrapper: scroll yerine içeriği sığdır */
.section-shoping-cart .form-shop-cart .overflow-auto {
    overflow: visible !important;
}

/* Tablo: fixed layout + kolon yüzdeleri (tüm ekranlarda) */
.tf-table-page-cart {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
}
.tf-table-page-cart thead th:nth-child(1),
.tf-table-page-cart tbody td:nth-child(1) { width: 55%; }
.tf-table-page-cart thead th:nth-child(2),
.tf-table-page-cart tbody td:nth-child(2) { width: 18%; }
.tf-table-page-cart thead th:nth-child(3),
.tf-table-page-cart tbody td:nth-child(3) { width: 27%; }

/* Ürün hücresi: görsel + bilgi kolonu, taşmasın */
.tf-table-page-cart td.cart_product {
    overflow: hidden;
}
.tf-table-page-cart td.cart_product .img-prd {
    flex-shrink: 0;
}
.tf-table-page-cart td.cart_product .img-prd img {
    width: 80px;
    height: 106px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}
.tf-table-page-cart td.cart_product .infor-prd {
    min-width: 0;
    overflow: hidden;
}
.tf-table-page-cart td.cart_product .prd_name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

/* Adet kontrolü: kompakt */
.tf-table-page-cart .wg-quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #c4a0a8;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    max-width: 100%;
}
.tf-table-page-cart .wg-quantity .btn-quantity {
    width: 28px;
    height: 34px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #2d0a14;
}
.tf-table-page-cart .wg-quantity .quantity-product {
    width: 36px;
    height: 34px;
    border: 0;
    text-align: center;
    -moz-appearance: textfield;
}
.tf-table-page-cart .wg-quantity .quantity-product::-webkit-outer-spin-button,
.tf-table-page-cart .wg-quantity .quantity-product::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ============================================================
   GLOBAL — yatay scroll engelleyici (overflow: clip y'yi bozmaz)
   html/body'de overflow-x: hidden kalabilir; iç elementlerde clip kullanıyoruz.
   ============================================================ */
html, body { overflow-x: hidden; max-width: 100vw; }
/* Header HARİÇ — dropdown'lar header altında kalmasın */
#wrapper, main#wrapper, .tf-footer {
    max-width: 100vw;
    overflow: clip;
}

/* ============================================================
   SEPET — Template'in tf-table-page-cart yapısı + <a href> linkler
   ============================================================ */
/* Buton <a> olduğu için link altı çizgisi & text-decoration kapat */
.tf-table-page-cart .wg-quantity a.btn-quantity,
.tf-table-page-cart .wg-quantity a.btn-quantity:hover,
.tf-table-page-cart .wg-quantity a.btn-quantity:focus {
    text-decoration: none;
    color: #2d0a14;
}
.tf-table-page-cart .wg-quantity a.btn-quantity i { line-height: 1; }
/* Tema input'a pointer-events:none vermişti — manuel girişe izin ver */
.tf-table-page-cart .wg-quantity .quantity-product {
    pointer-events: auto;
    user-select: text;
}
/* Kaldır link — altı çizili olmasın */
.tf-cart_item .cart_remove,
.tf-cart_item a.cart_remove {
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}
.tf-cart_item a.cart_remove:hover { color: var(--primary, #c4a0a8); }

/* Mobil: tablo kart düzenine geç + tema absolute img-prd kuralını sıfırla */
@media (max-width: 768px) {
    body { overflow-x: hidden; }

    /* Container'a tam genişlik — yan boşluk daralt */
    .section-shoping-cart > .container,
    .section-shoping-cart .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
        max-width: 100% !important;
    }
    .section-shoping-cart .row { --bs-gutter-x: 12px; }
    .section-shoping-cart [class*="col-"] {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    /* Tablo → kart düzenine geç */
    .tf-table-page-cart { table-layout: auto; }
    .tf-table-page-cart,
    .tf-table-page-cart tbody,
    .tf-table-page-cart tr,
    .tf-table-page-cart td {
        display: block !important;
        width: 100% !important;
    }
    .tf-table-page-cart thead { display: none !important; }

    /* TR — tema 94px padding-inline-start kuralını sıfırla, normal kart yap */
    .tf-table-page-cart tr.tf-cart_item,
    .tf-cart_item {
        border: 1px solid #f0e6e8 !important;
        border-radius: 10px !important;
        padding: 12px !important;          /* tema 94px padding-inline-start'i ezilir */
        padding-inline-start: 12px !important;
        margin-bottom: 12px !important;
        background: #fff !important;
        min-height: 0 !important;
        position: relative !important;
        display: block !important;
    }

    /* TD — tema flex'ini ez */
    .tf-table-page-cart td,
    .tf-cart_item td {
        padding: 6px 0 !important;
        border: 0 !important;
        text-align: left !important;
        display: block !important;
        flex: none !important;
    }
    .tf-cart_item td:not(:last-child) { border-bottom: 0 !important; }
    .tf-cart_item td[data-cart-title]:before { content: none !important; }

    /* CART_PRODUCT TD: img + infor yan yana FLEX */
    .tf-table-page-cart td.cart_product,
    .tf-cart_item .cart_product {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 0 0 10px 0 !important;
        margin-bottom: 8px !important;
        border-bottom: 1px dashed #f0e6e8 !important;
    }

    /* IMG-PRD — tema absolute kuralını sıfırla, normal akış */
    .tf-table-page-cart td.cart_product .img-prd,
    .tf-cart_item .img-prd {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 80px !important;
        max-width: 80px !important;
        min-width: 80px !important;
        height: auto !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }
    .tf-table-page-cart td.cart_product .img-prd img,
    .tf-cart_item .img-prd img {
        width: 80px !important;
        height: 107px !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* INFOR-PRD — flex item, kalan alanı al */
    .tf-table-page-cart td.cart_product .infor-prd,
    .tf-cart_item .infor-prd {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
        padding: 0 !important;
    }

    /* Fiyat ve adet satırları: solda label : sağda değer */
    .tf-table-page-cart td.cart_price,
    .tf-table-page-cart td.cart_quantity,
    .tf-cart_item .cart_price,
    .tf-cart_item .cart_quantity {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 8px 0 !important;
    }
    .tf-table-page-cart td.cart_price[data-cart-title]:before,
    .tf-table-page-cart td.cart_quantity[data-cart-title]:before {
        content: attr(data-cart-title) !important;
        color: #8c6872 !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        flex: 0 0 auto !important;
    }

    /* Sipariş özeti kutusu */
    .section-shoping-cart .fl-sidebar-cart .box-order-summary { padding: 14px !important; }

    .cart-actions { flex-direction: column !important; }
    .cart-actions .tf-btn { width: 100% !important; }

    /* Footer: yan boşluk daralt, taşmayı engelle */
    .tf-footer .container { padding-left: 14px !important; padding-right: 14px !important; max-width: 100% !important; }
    .tf-footer .row { --bs-gutter-x: 16px; margin-left: 0 !important; margin-right: 0 !important; }
    .tf-footer [class*="col-"] { padding-left: 6px !important; padding-right: 6px !important; }
    /* word-break sadece metin elementlerine — img/svg width'ini bozma */
    .tf-footer p, .tf-footer a, .tf-footer span, .tf-footer li {
        word-break: break-word;
        max-width: 100%;
    }
    .tf-footer img, .tf-footer svg {
        max-width: none;
    }

    /* Header: yan padding sıkıştır, sağda boşluk olmasın */
    .tf-header .container,
    .header-default .container,
    header .container { padding-left: 12px !important; padding-right: 12px !important; max-width: 100% !important; }
}

/* Modanna onay modal (confirmModal) — primary buton stili */
.modanna-confirm-modal .modal-content { border-radius: 12px; border: 0; }
.modanna-confirm-modal .tf-btn.btn-primary {
    background: #2d0a14;
    color: #fff;
    border-color: #2d0a14;
}
.modanna-confirm-modal .tf-btn.btn-primary:hover {
    background: #4a1320;
    border-color: #4a1320;
}

/* Mini-cart qty butonları */
#shoppingCart .qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #e8d8db;
    background: #fff;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}
#shoppingCart .qty-btn:hover {
    border-color: #2d0a14;
}
#shoppingCart .qty-num {
    -moz-appearance: textfield;
}
#shoppingCart .qty-num::-webkit-outer-spin-button,
#shoppingCart .qty-num::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 768px) {
    #shoppingCart.offcanvas-end {
        width: 100% !important;
        max-width: 420px !important;
    }
    #shoppingCart .canvas-wrapper {
        padding: 14px !important;
    }
    #shoppingCart .tf-mini-cart-image img {
        width: 80px !important;
        height: 106px !important;
        object-fit: cover;
        border-radius: 6px;
    }
    #shoppingCart .tf-mini-cart-item .name {
        font-size: 13px !important;
        line-height: 1.3 !important;
    }
    #shoppingCart .tf-mini-cart-view-checkout .tf-btn {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    #shoppingCart.offcanvas-end {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ============================================================
   KARGO TAKİP
   ============================================================ */

.modanna-cargo-track .modanna-track-card,
.modanna-cargo-track .modanna-track-info {
    background: #fff;
    border: 1px solid #f0e6e8;
    border-radius: 12px;
    padding: 24px;
}
.modanna-cargo-track .modanna-track-info { margin-bottom: 14px; }
.modanna-cargo-track .modanna-track-info i { color: #E31B54; margin-right: 6px; }

.modanna-cargo-track .modanna-track-label {
    display: block;
}
.modanna-cargo-track .track-label-text {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2d0a14;
    margin-bottom: 6px;
}
.modanna-cargo-track input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #c4a0a8;
    border-radius: 8px;
    font-size: 15px;
    background: #faf5f5;
}
.modanna-cargo-track input[type="text"]:focus {
    outline: none;
    border-color: #2d0a14;
    background: #fff;
}
.modanna-cargo-track .modanna-track-supports {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px dashed #f0e6e8;
}
.modanna-cargo-track .modanna-track-supports img {
    height: 28px;
    object-fit: contain;
    filter: grayscale(0.15);
    opacity: 0.85;
}

/* Sonuç */
.modanna-track-result {
    background: #faf5f5;
    border-radius: 12px;
    padding: 20px;
}
.modanna-track-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8d8db;
    margin-bottom: 16px;
}
.modanna-track-badge {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.modanna-track-badge.delivered { background: #d4edda; color: #155724; }
.modanna-track-badge.on-way    { background: #fff3cd; color: #856404; }

.modanna-track-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    padding-bottom: 12px;
}
@media (max-width: 575px) { .modanna-track-info-grid { grid-template-columns: 1fr; } }
.modanna-track-info-item { display: flex; flex-direction: column; gap: 2px; font-size: 14px; }
.modanna-track-info-item span { font-size: 12px; }
.modanna-track-info-item strong { color: #2d0a14; }

/* Timeline */
.modanna-track-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 2px solid #f0e6e8;
}
.modanna-track-timeline li {
    position: relative;
    padding: 10px 0 10px 22px;
}
.modanna-track-timeline li::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 16px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c4a0a8;
    border: 2px solid #fff;
}
.modanna-track-timeline li.is-latest::before {
    background: #E31B54;
    box-shadow: 0 0 0 4px rgba(227, 27, 84, 0.18);
}
.modanna-track-timeline .when {
    font-size: 12px;
    color: #8c6872;
    margin-bottom: 2px;
}
.modanna-track-timeline .what strong {
    color: #2d0a14;
    font-size: 14px;
}

.modanna-track-error {
    text-align: center;
    padding: 30px 16px;
}

/* ============================================================
   ÜRÜN DETAY — Tab başlıkları mobilde wrap
   ============================================================ */
@media (max-width: 991px) {
    .section-product-description .tab-btn-wrap-v1 {
        overflow-x: visible !important;
        flex-wrap: wrap !important;
        white-space: normal !important;
        gap: 8px 18px !important;
        margin-bottom: 24px !important;
    }
    .section-product-description .tab-btn-wrap-v1 .tf-btn-tab .h5 {
        font-size: 14px !important;
        font-weight: 500;
    }
    /* Sticky-top'u mobilde kapat: galeri ve info uzun olduğunda layout taşmasın */
    .section-product-single .tf-product-media-wrap.sticky-top,
    .section-product-single .tf-zoom-main.sticky-top {
        position: static !important;
        top: auto !important;
    }
}
@media (max-width: 480px) {
    .section-product-description .tab-btn-wrap-v1 { gap: 4px 12px !important; }
    .section-product-description .tab-btn-wrap-v1 .tf-btn-tab .h5 { font-size: 13px !important; }
}

/* Tek görsellik galerilerde nav okları gizle */
.tf-product-media-main.single-image .swiper-button-next,
.tf-product-media-main.single-image .swiper-button-prev,
.tf-product-media-main.single-image .swiper-pagination {
    display: none !important;
}
.tf-product-media-thumbs.single-image {
    display: none !important;
}

/* Description tab box-desc şıklaştırma */
.section-product-description .tab-content_desc .box-desc {
    background: #fff;
    border: 1px solid #f0e6e8;
    border-radius: 12px;
    padding: 24px;
}
.section-product-description .tab-content_desc .box-desc .desc_title {
    margin-bottom: 14px;
    color: #2d0a14;
}
.section-product-description .tab-content_desc .box-desc .list li + li {
    margin-top: 6px;
}
@media (max-width: 575px) {
    .section-product-description .tab-content_desc .box-desc {
        padding: 16px;
    }
}


/* Sipariş durum adımları (timeline bar) */
.modanna-order-status {
    background: #faf5f5;
    border-radius: 12px;
    padding: 20px;
}
.modanna-step-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 10px 0;
    counter-reset: step;
}
.modanna-step-bar::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: #e8d8db;
    z-index: 0;
}
.modanna-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}
.modanna-step .step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #c4a0a8;
    color: #c4a0a8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 8px;
    transition: all .25s;
}
.modanna-step .step-label {
    font-size: 12px;
    color: #8c6872;
    line-height: 1.3;
}
.modanna-step.is-done .step-dot {
    background: #E31B54;
    border-color: #E31B54;
    color: #fff;
}
.modanna-step.is-done .step-label {
    color: #2d0a14;
    font-weight: 500;
}
.modanna-step.is-current .step-dot {
    box-shadow: 0 0 0 4px rgba(227, 27, 84, 0.18);
}
.modanna-track-badge.cancelled {
    background: #f8d7da;
    color: #721c24;
}

@media (max-width: 575px) {
    .modanna-step .step-label { font-size: 10px; }
    .modanna-step .step-dot { width: 28px; height: 28px; font-size: 12px; }
    .modanna-step-bar::before { top: 22px; }
}

/* Mobilde overlay (bedenler + Sepete Ekle bant) TAM gizli + ürün adı 2 satır truncate */
@media (hover: none), (max-width: 991px) {
    .modanna-card .modanna-card-overlay,
    .modanna-card-overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        top: -9999px !important;
    }
    .modanna-card .modanna-card-mobile-cart { display: inline-flex !important; }

    /* Ürün adı 2 satır truncate — title kesilme sorunu */
    .modanna-card .name-product,
    .modanna-section-products .card-product .name-product {
        font-size: 13px !important;
        line-height: 1.35 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        white-space: normal !important;
        min-height: 35px;
    }
    .modanna-card .card-product_info { padding-top: 8px; }
    .modanna-card .card-product_wrapper { overflow: hidden !important; }

    /* Sepet — html/body overflow + tüm container max-width 100% */
    body { overflow-x: hidden; }
    .section-shoping-cart,
    .section-shoping-cart .container,
    .section-shoping-cart .row,
    .section-shoping-cart [class*="col-"] {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    .section-shoping-cart .form-shop-cart,
    .section-shoping-cart .form-shop-cart .overflow-auto {
        overflow: visible !important;
        overflow-x: visible !important;
        max-width: 100% !important;
    }
}

/* ============================================================
   HEADER — yatay scroll engeli ama dropdown'ları kesmesin
   ============================================================ */
.tf-header,
.tf-topbar {
    overflow: visible !important;  /* dropdown header altından taşabilsin */
    max-width: 100vw;
    position: relative;
    z-index: 100;                  /* hero ve içerikten yukarı */
}
.tf-header { z-index: 1000; }
.modanna-locale-menu { z-index: 2000 !important; }
.tf-header .container-full,
.tf-header .container { max-width: 100% !important; padding-left: 16px; padding-right: 16px; }
@media (max-width: 991px) {
    .tf-header .container-full,
    .tf-header .container { padding-left: 12px !important; padding-right: 12px !important; }
    .tf-header .header-inner { min-width: 0; }
    .tf-header .header-right { gap: 8px; }
}
.tf-topbar .container { max-width: 100% !important; }

/* ============================================================
   FOOTER — Ödeme logoları (inline SVG, currentColor)
   ============================================================ */
.tf-footer { overflow: clip; max-width: 100vw; }
.footer-bottom .payment-list {
    display: flex !important;
    gap: 14px !important;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--text-2, #8c6872);
}
.footer-bottom .payment-list li {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.footer-bottom .payment-list svg {
    display: block;
    height: auto;
    width: auto;
    max-width: none;
    fill: currentColor;
}
@media (max-width: 767px) {
    .footer-bottom .payment-list {
        justify-content: center !important;
        width: 100%;
        margin-top: 12px;
    }
}

/* Ürün detay — trust-seal inline SVG (currentColor) */
.tf-product-info-wrap .tf-product-trust-seal {
    color: #2d0a14;
}
.tf-product-info-wrap .tf-product-trust-seal .list-card {
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}
.tf-product-info-wrap .tf-product-trust-seal .card-item {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    padding: 0;
}
.tf-product-info-wrap .tf-product-trust-seal .card-item svg {
    display: block;
    fill: currentColor;
    max-width: none;
    height: auto;
    width: auto;
    aspect-ratio: auto !important;
}

/* ============================================================
   HEADER — Dil + Para birimi dropdown (bayrak ikonu)
   ============================================================ */
.modanna-locale { position: relative; display: inline-flex; align-items: center; }
.modanna-locale-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--black, #2d0a14);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    line-height: 1;
    transition: background .15s ease, border-color .15s ease;
}
.modanna-locale-toggle:hover { background: #f8f0f2; border-color: #f0e6e8; }
.modanna-locale-toggle[aria-expanded="true"] { background: #f8f0f2; border-color: #c4a0a8; }
.modanna-locale-toggle img {
    display: block;
    width: 22px; height: 15px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
.modanna-locale-text { letter-spacing: 0.02em; }

.modanna-locale-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 200px;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: #fff;
    border: 1px solid #f0e6e8;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    z-index: 1050;
    display: none;
}
.modanna-locale-menu.is-open { display: block; }
.modanna-locale-menu li { margin: 0; }
.modanna-locale-opt {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: #2d0a14;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}
.modanna-locale-opt:hover { background: #f8f0f2; }
.modanna-locale-opt.is-active { background: #f8f0f2; color: #c4a0a8; }
.modanna-locale-opt img {
    width: 22px; height: 15px;
    border-radius: 2px; object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
    flex-shrink: 0;
}
.modanna-locale-opt > span:first-of-type { flex: 1; }
.modanna-locale-opt .cl-text-3 { font-size: 12px; }

/* ============================================================
   SEPET TABLOSU — PC çizgi hizalama
   ============================================================ */
@media (min-width: 769px) {
    .tf-table-page-cart {
        border-collapse: collapse !important;
        width: 100%;
    }
    .tf-table-page-cart thead th {
        padding: 10px 12px !important;
        border-bottom: 1px solid #e8d9dc !important;
    }
    .tf-table-page-cart tbody td {
        padding: 18px 12px !important;
        border-bottom: 1px solid #f0e6e8 !important;
        vertical-align: middle !important;
    }
    .tf-table-page-cart tbody tr:last-child td {
        border-bottom: 0 !important;
    }
    .tf-table-page-cart td.cart_quantity { text-align: right; }
    .tf-table-page-cart .wg-quantity {
        display: inline-flex;
        align-items: center;
    }
}

/* ============================================================
   SHOP — Sort dropdown ve column switcher (vanilla JS ile çalışır)
   ============================================================ */
.tf-dropdown-sort { position: relative; cursor: pointer; }
.tf-dropdown-sort .dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 200px;
    background: #fff;
    border: 1px solid #f0e6e8;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    padding: 6px;
    z-index: 1050;
    margin: 0;
    list-style: none;
}
.tf-dropdown-sort .dropdown-menu.show,
.tf-dropdown-sort.show .dropdown-menu { display: block; }
.tf-dropdown-sort .select-item {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    color: #2d0a14;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}
.tf-dropdown-sort .select-item:hover { background: #f8f0f2; }
.tf-dropdown-sort .select-item.active { background: #f8f0f2; color: #c4a0a8; }

.tf-view-layout-switch { cursor: pointer; user-select: none; transition: color .15s ease; }
.tf-view-layout-switch.active,
.tf-view-layout-switch:hover { color: #c4a0a8; }

/* ============================================================
   MODANNA — 2026-06 yeni özellikler (rating + urgency + tier)
   ============================================================ */

/* Ürün kartı rating */
.modanna-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 4px 0 6px;
    font-size: 12px;
    color: #4a4a4a;
    line-height: 1.2;
}
.modanna-card-stars { display: inline-flex; gap: 1px; }
.modanna-card-stars .icon { font-size: 12px; color: #d8d8d8; }
.modanna-card-stars .icon.is-on { color: #f4b400; }
.modanna-card-rating-num { font-weight: 600; color: #1A1A1A; margin-left: 2px; }
.modanna-card-rating-count { color: #888; font-size: 11px; }

/* Stok urgency badge */
.modanna-urgency {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-weight: 600;
}
.modanna-urgency-critical {
    background: #E31B54 !important;
    color: #fff !important;
    animation: modanna-pulse 1.5s ease-in-out infinite;
}
.modanna-urgency-fast {
    background: #f4b400 !important;
    color: #1A1A1A !important;
}
.modanna-urgency-out {
    background: #666 !important;
    color: #fff !important;
}
@keyframes modanna-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}

/* Hızlı bakış buton row in overlay */
.modanna-card-cta-row {
    display: flex;
    gap: 6px;
    align-items: stretch;
}
.modanna-card-cta-row .modanna-card-cta-btn { flex: 1; }
.modanna-card-quick-view {
    background: #fff;
    border: 1px solid #2d0a14;
    color: #2d0a14;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: background .15s;
}
.modanna-card-quick-view:hover { background: #f8f0f2; }

/* Ürün detayda stok urgency */
.modanna-stock-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff5f8;
    border: 1px solid #E31B54;
    color: #9F0E3A;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0;
}
.modanna-stock-urgency .icon { color: #E31B54; animation: modanna-pulse 1.5s ease-in-out infinite; }

/* Tier kartı (hesabım) */
.modanna-tier-card {
    background: linear-gradient(135deg, #2d0a14 0%, #9F0E3A 100%);
    color: #fff;
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
.modanna-tier-card.tier-bronze   { background: linear-gradient(135deg, #5d3a1a 0%, #cd7f32 100%); }
.modanna-tier-card.tier-silver   { background: linear-gradient(135deg, #555 0%, #9aa0a6 100%); }
.modanna-tier-card.tier-gold     { background: linear-gradient(135deg, #8a6914 0%, #d4af37 100%); color: #1A1A1A; }
.modanna-tier-card.tier-platinum { background: linear-gradient(135deg, #1A1A1A 0%, #4a4a4a 100%); }

.modanna-tier-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.modanna-tier-name { font-size: 20px; font-weight: 700; margin: 0; }
.modanna-tier-points { font-size: 14px; opacity: 0.95; }
.modanna-tier-progress {
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 0 8px;
}
.modanna-tier-progress-bar {
    height: 100%;
    background: #fff;
    transition: width .4s ease;
}
.modanna-tier-card.tier-gold .modanna-tier-progress-bar { background: #1A1A1A; }
.modanna-tier-meta { font-size: 12px; opacity: 0.92; }
.modanna-tier-benefits {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.7;
}
.modanna-tier-benefits li::before { content: "✓ "; opacity: 0.9; font-weight: 700; }

.modanna-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.modanna-tier-badge.tier-bronze   { background: #cd7f32; color: #fff; }
.modanna-tier-badge.tier-silver   { background: #9aa0a6; color: #fff; }
.modanna-tier-badge.tier-gold     { background: #d4af37; color: #1A1A1A; }
.modanna-tier-badge.tier-platinum { background: #1A1A1A; color: #fff; }

/* Adres etiket badge */
.modanna-address-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: #fff5f8;
    color: #9F0E3A;
    border: 1px solid #f4d8e0;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
}

/* Marka grid */
.modanna-brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.modanna-brand-card {
    background: #fff;
    border: 1px solid #f0e6e8;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: transform .15s, box-shadow .15s;
    display: block;
    text-decoration: none;
    color: inherit;
    aspect-ratio: 1.4;
}
.modanna-brand-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(45,10,20,.08); }
.modanna-brand-card img { max-height: 60px; max-width: 100%; object-fit: contain; margin-bottom: 10px; }
.modanna-brand-card .brand-name { font-weight: 600; font-size: 14px; }

/* Aynı modelin diğer renkleri */
.modanna-model-colors {
    margin: 18px 0;
}
.modanna-model-colors-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}
.modanna-model-colors-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.modanna-model-color-thumb {
    width: 56px;
    height: 70px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    background: #f6f3f4;
    display: block;
    transition: border-color .15s;
}
.modanna-model-color-thumb.is-current { border-color: #E31B54; }
.modanna-model-color-thumb:hover { border-color: #9F0E3A; }
.modanna-model-color-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   GLOBAL FONT — OUTFIT (tüm tema overrride)
   ============================================================ */
:root {
    --body-font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --heading-font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html, body,
input, select, textarea, button,
.btn, .tf-btn, .tf-btn-line,
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.title-pop, .title, .heading,
.cus-text, .text, p, span, a, li, td, th,
.product-infor-name, .name-product, .prd_name,
.price-new, .price-old, .price,
.modanna-card, .adm-card, .modanna-hero,
.tf-product-info-list, .tf-product-info-wrap {
    font-family: "Outfit", sans-serif !important;
}

/* Heading'lerde biraz daha sıkı letter-spacing (Outfit'e uygun) */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.title-pop, .heading, .product-infor-name {
    letter-spacing: -0.02em;
    font-weight: 600;
}

/* Body biraz daha sıkı tracking */
body { letter-spacing: -0.005em; }

/* ============================================================
   STICKY / FLOATING ELEMENT POZİSYONLAR
   - Z-index hiyerarşi tablosu + mobil çakışma çözümü
   ============================================================ */

/* Scroll-top — sağ alt, z-index variable */
#goTop {
    z-index: var(--z-scroll-top);
    transition: opacity .2s ease, transform .2s ease;
}
#goTop:not(.show) {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}
#goTop.show {
    opacity: 1;
    pointer-events: auto;
}

/* Header z-index */
.tf-header { z-index: var(--z-header); }

/* Bootstrap offcanvas / modal — varsayılan değerleri ölçeğimize uydur */
.offcanvas { z-index: var(--z-offcanvas); }
.modal { z-index: var(--z-modal); }
.modal-backdrop { z-index: calc(var(--z-modal) - 1); }
.offcanvas-backdrop { z-index: calc(var(--z-offcanvas) - 1); }

/* Chatbot widget — sağ alt, mobile'da bottom-toolbar üstünde */
.modanna-cb {
    z-index: var(--z-chatbot) !important;
    right: var(--modanna-bottom-offset-base) !important;
    bottom: var(--modanna-bottom-offset-base) !important;
}
@media (max-width: 991px) {
    .modanna-cb {
        right: 14px !important;
        bottom: var(--modanna-bottom-offset-mobile) !important;
    }
    /* chatbot açıkken panel ekrana sığacak biçimde — daha az tepe boşluk */
    .modanna-cb-panel {
        bottom: 60px !important;
        max-height: calc(100vh - var(--modanna-bottom-offset-mobile) - 70px) !important;
    }
}

/* PWA install banner — bottom-toolbar + KVKK ile çakışmasın */
.mod-pwa-banner {
    z-index: var(--z-pwa-banner) !important;
}
@media (max-width: 991px) {
    .mod-pwa-banner {
        bottom: var(--modanna-bottom-offset-mobile) !important;
    }
}

/* KVKK çerez banner — diğer widget'ların üzerinde (kullanıcı önce bunu kapatmalı) */
.mod-cc-banner {
    z-index: var(--z-cookie-banner) !important;
}
@media (max-width: 991px) {
    .mod-cc-banner {
        bottom: calc(var(--modanna-bottom-toolbar-h) + 12px) !important;
    }
}

/* Tawk.to — chatbot aktifken gizle (ikisi aynı işi yapıyor) */
body.has-modanna-chatbot iframe[title*="chat" i],
body.has-modanna-chatbot iframe[id^="tawk-"],
body.has-modanna-chatbot iframe[src*="tawk.to"],
body.has-modanna-chatbot div[id^="tawk-"] {
    display: none !important;
    visibility: hidden !important;
}

/* "Yukarı" buton — scroll > 600 sonra fade-in (JS class koyacak) */
@media (max-width: 991px) {
    /* mobil: chatbot ile çakışmasın, daha sol konumda */
    #goTop {
        bottom: var(--modanna-bottom-offset-mobile) !important;
        right: calc(14px + 60px) !important; /* chatbot toggle ~50px + boşluk */
    }
}

/* ============================================================
   TOAST CONTAINER — max 3 toast, dikey stack, üstte en yeni
   ============================================================ */
#modanna-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
    pointer-events: none;
    max-width: 360px;
    width: calc(100vw - 32px);
}
.modanna-toast {
    background: #2d0a14;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(45, 10, 20, 0.22);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: auto;
    word-wrap: break-word;
}
.modanna-toast.show {
    opacity: 1;
    transform: translateY(0);
}
.modanna-toast-success { background: #1f7a4d; }
.modanna-toast-error   { background: #c01548; }
.modanna-toast-warning { background: #d77a00; }
.modanna-toast-info    { background: #2d0a14; }

@media (max-width: 575px) {
    #modanna-toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
        width: auto;
        max-width: none;
    }
}

/* ============================================================
   ÜRÜN KARTI BADGE — Üst limit 2, marquee öncelik
   (PHP zaten max 2 badge gönderir; CSS guard)
   ============================================================ */
.product-badge_list {
    max-height: 60px;
    overflow: hidden;
}
.product-badge_list .product-badge_item {
    /* nothing extra; PHP slice yapıyor */
}

/* ============================================================
   ÜRÜN DETAY — Uyarı CHIP butonları (Favori/Stok uyarı/Fiyat uyarı)
   ============================================================ */
.modanna-product-alerts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}
.modanna-product-alert-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e8d8db;
    color: #2d0a14;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, border-color .15s, color .15s;
}
.modanna-product-alert-chip:hover {
    background: #fff5f8;
    border-color: #E31B54;
    color: #9F0E3A;
}
.modanna-product-alert-chip i {
    font-size: 14px;
}
.modanna-product-alert-chip.is-active {
    background: #fff5f8;
    border-color: #E31B54;
    color: #9F0E3A;
}

/* "Beden Rehberi" küçük link — variant size satırının yanında zaten var */

/* ============================================================
   FOOTER — Mobil 2 sütun split (YARDIM + HUKUKİ)
   ============================================================ */
.modanna-footer-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 575px) {
    .modanna-footer-split {
        gap: 16px;
    }
}

/* ============================================================
   HEADER TOPBAR — Mobil slim + kapatma butonu
   ============================================================ */
.tf-topbar {
    position: relative;
    transition: max-height .25s ease, opacity .25s ease;
}
.tf-topbar.is-closed {
    max-height: 0 !important;
    overflow: hidden;
    opacity: 0;
    padding: 0 !important;
}
.modanna-topbar-close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    color: #fff;
    padding: 4px 8px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity .15s;
}
.modanna-topbar-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .tf-topbar {
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .tf-topbar .swiper-topbar { height: 22px; }
    .tf-topbar .swiper-slide p {
        font-size: 11px !important;
        line-height: 22px !important;
    }
}

/* ============================================================
   CARDS - Min-height (CLS önleme)
   ============================================================ */
@media (min-width: 768px) {
    .modanna-section-products .card-product {
        min-height: 480px;
    }
}
@media (max-width: 767px) {
    .modanna-section-products .card-product {
        min-height: 320px;
    }
}

/* ============================================================
   STICKY ATC BAR — Ürün detay alttan sticky (mobil sığma)
   ============================================================ */
.tf-sticky-btn-atc .tf-sticky-atc-product .prd_img img {
    width: 50px;
    height: 66px;
    object-fit: cover;
    border-radius: 6px;
}
.tf-sticky-btn-atc .tf-sticky-atc-infos form {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}
.tf-sticky-btn-atc .tf-sticky-atc-infos .btn-add-to-cart {
    margin-left: auto;
    white-space: nowrap;
    padding: 10px 18px;
    flex-shrink: 0;
}
.tf-sticky-btn-atc .tf-sticky-atc-variant-price,
.tf-sticky-btn-atc .tf-product-info-quantity {
    margin-bottom: 0;
}
.tf-sticky-btn-atc .tf-sticky-atc-variant-price .title,
.tf-sticky-btn-atc .tf-product-info-quantity .title {
    font-size: 11px;
    margin-bottom: 4px;
    color: #8c6872;
}

@media (max-width: 767.98px) {
    .tf-sticky-btn-atc { padding: 8px 0; }
    .tf-sticky-btn-atc .container { padding: 0 10px; }
    .tf-sticky-btn-atc .tf-sticky-atc-product .prd_img img { width: 42px; height: 56px; }
    .tf-sticky-btn-atc .tf-height-observer {
        display: flex !important;
        align-items: center;
        gap: 8px;
    }
    .tf-sticky-btn-atc .tf-sticky-atc-infos {
        flex: 1;
        min-width: 0;
    }
    .tf-sticky-btn-atc .tf-sticky-atc-infos form { gap: 6px; }
    /* Beden ve adet daraltılır */
    .tf-sticky-btn-atc .tf-sticky-atc-variant-price { flex: 0 0 80px; }
    .tf-sticky-btn-atc .tf-sticky-atc-variant-price select {
        font-size: 13px; padding: 4px 6px; max-width: 80px;
    }
    .tf-sticky-btn-atc .tf-product-info-quantity { flex: 0 0 90px; }
    .tf-sticky-btn-atc .wg-quantity {
        min-width: 0;
        padding: 4px 6px;
    }
    .tf-sticky-btn-atc .wg-quantity .quantity-product {
        width: 26px;
        font-size: 13px;
    }
    .tf-sticky-btn-atc .wg-quantity .btn-quantity { padding: 0 4px; font-size: 14px; }
    .tf-sticky-btn-atc .btn-add-to-cart {
        padding: 10px 12px !important;
        font-size: 13px !important;
        flex: 1;
    }
    /* Bottom-toolbar üzerinde durulması için */
    .tf-sticky-btn-atc {
        bottom: 68px !important;  /* toolbar height */
        z-index: 95;
    }
}

@media (max-width: 480px) {
    /* Çok dar — beden seçici gizle, ürün adı ile aynı kolonda kal */
    .tf-sticky-btn-atc .tf-sticky-atc-product .prd_img { display: none; }
    .tf-sticky-btn-atc .tf-sticky-atc-variant-price { flex: 0 0 70px; }
    .tf-sticky-btn-atc .tf-product-info-quantity { flex: 0 0 80px; }
    .tf-sticky-btn-atc .btn-add-to-cart {
        padding: 9px 10px !important;
        font-size: 12px !important;
    }
}

/* ============================================================
   BOTTOM TOOLBAR — SVG + sayaç badge konum
   ============================================================ */
.modanna-toolbar-bottom .toolbar-item .toolbar-icon { position: relative; display: inline-flex; }
.modanna-toolbar-bottom .toolbar-icon svg { display: block; }
.modanna-toolbar-bottom .toolbar-count {
    position: absolute;
    top: -6px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #E31B54;
    color: #fff;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 0 0 2px #fff;
}
.modanna-toolbar-bottom .toolbar-count[hidden] { display: none; }

/* ============================================================
   SEPET CROSS-SELL — Sepet altı "Bunları da alabilirsiniz"
   ============================================================ */
.modanna-sepet-cross {
    background: #fff;
    border: 1px solid #f0e2e8;
    border-radius: 16px;
    padding: 24px;
}
.modanna-sepet-cross-head {
    text-align: center;
    margin-bottom: 20px;
}
.modanna-sepet-cross-head h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2d0a14;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}
.modanna-sepet-cross-head p {
    font-size: 13px;
    margin: 0;
}
.modanna-sepet-cross-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 991px) {
    .modanna-sepet-cross-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575px) {
    .modanna-sepet-cross { padding: 16px; }
    .modanna-sepet-cross-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ============================================================
   PUAN KAZANIMI — MODANNA premium kart
   Beyaz arka plan + sol bordo accent + altın yıldız ikon
   ============================================================ */
.modanna-reward-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px 14px 22px;
    background: linear-gradient(135deg, #fffdfb 0%, #fff8f4 100%);
    border: 1px solid #f0e2e8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(45, 10, 20, 0.04);
}
.modanna-reward-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2d0a14 0%, #E31B54 100%);
}
.modanna-reward-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    color: #c8a86e;  /* şampanya altın — kadın giyime uygun */
    background: #fbf5ec;
    border-radius: 50%;
    border: 1px solid #f1e5cd;
}
.modanna-reward-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}
.modanna-reward-card-title {
    font-size: 14px;
    font-weight: 500;
    color: #2d0a14;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.modanna-reward-card-title strong {
    font-weight: 700;
    color: #2d0a14;
    font-size: 18px;
    margin-right: 2px;
    letter-spacing: -0.02em;
}
.modanna-reward-card-sub {
    font-size: 12px;
    color: #8c6872;
    line-height: 1.4;
    letter-spacing: 0;
}
.modanna-reward-card-sub strong {
    color: #2d0a14;
    font-weight: 600;
    background: linear-gradient(180deg, transparent 60%, rgba(227, 27, 84, 0.15) 60%);
    padding: 0 2px;
}

@media (max-width: 480px) {
    .modanna-reward-card {
        padding: 12px 14px 12px 18px;
        gap: 10px;
    }
    .modanna-reward-card-icon {
        width: 34px;
        height: 34px;
    }
    .modanna-reward-card-icon svg { width: 18px; height: 18px; }
    .modanna-reward-card-title { font-size: 13px; }
    .modanna-reward-card-title strong { font-size: 17px; }
    .modanna-reward-card-sub { font-size: 11px; }
}

/* ============================================================
   PUAN KAZANIMI — Minimal Beyaz (modern, ferah, ince)
   ============================================================ */
.modanna-pts {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #f0e2e8;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 460px;
}
.modanna-pts:hover {
    border-color: #E31B54;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(227, 27, 84, 0.08);
    color: inherit;
    text-decoration: none;
}
.modanna-pts-star {
    flex-shrink: 0;
    color: #E31B54;
}
.modanna-pts-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
}
.modanna-pts-title {
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2d0a14;
    line-height: 1.25;
    letter-spacing: -0.015em;
}
.modanna-pts-desc {
    font-size: 12px;
    color: #8c6872;
    line-height: 1.35;
    letter-spacing: 0;
}
.modanna-pts-arrow {
    flex-shrink: 0;
    color: #c4a0a8;
    margin-left: auto;
    transition: transform 0.2s, color 0.2s;
}
.modanna-pts:hover .modanna-pts-arrow {
    color: #E31B54;
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .modanna-pts { gap: 10px; padding: 10px 12px; }
    .modanna-pts-title { font-size: 14px; }
    .modanna-pts-desc { font-size: 11px; }
}

/* ============================================================
   PUAN ROZETİ — Kompakt pill, gradient bordo→pembe, beyaz metin
   ============================================================ */
.modanna-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px 6px 11px;
    background: linear-gradient(135deg, #2d0a14 0%, #9F0E3A 55%, #E31B54 100%);
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    box-shadow:
        0 2px 8px rgba(227, 27, 84, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
/* Shine highlight overlay (premium polish efekti) */
.modanna-badge::before {
    content: '';
    position: absolute;
    top: 0; left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: -1;
}
.modanna-badge:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow:
        0 4px 14px rgba(227, 27, 84, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.modanna-badge:hover::before {
    left: 130%;
}
.modanna-badge-star {
    color: #fbd84a;  /* altın yıldız */
    filter: drop-shadow(0 0 4px rgba(251, 216, 74, 0.5));
    flex-shrink: 0;
}
.modanna-badge-text {
    white-space: nowrap;
}
.modanna-badge-text b {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
    margin-right: 2px;
}
.modanna-badge-tier {
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-left: 2px;
    backdrop-filter: blur(4px);
}

@media (max-width: 480px) {
    .modanna-badge { padding: 5px 12px 5px 10px; font-size: 12px; }
    .modanna-badge-text b { font-size: 13px; }
}

/* ============================================================
   PUAN ROZETİ — Tam yuvarlak madalyon
   ============================================================ */
.modanna-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 72px;
    height: 72px;
    padding: 6px;
    background: radial-gradient(circle at 30% 25%, #c4244f 0%, #9F0E3A 55%, #2d0a14 100%);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    line-height: 1;
    box-shadow:
        0 4px 14px rgba(227, 27, 84, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    isolation: isolate;
    border: 2px solid rgba(251, 216, 74, 0.4);  /* altın halka */
}
.modanna-badge::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}
.modanna-badge:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px) scale(1.04);
    box-shadow:
        0 8px 22px rgba(227, 27, 84, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 6px rgba(0, 0, 0, 0.2);
}
.modanna-badge-star {
    color: #fbd84a;
    filter: drop-shadow(0 0 3px rgba(251, 216, 74, 0.7));
    flex-shrink: 0;
    margin-bottom: 1px;
}
.modanna-badge-num {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #fff;
}
.modanna-badge-label {
    font-size: 8.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fbd84a;
    margin-top: 2px;
}

@media (max-width: 480px) {
    .modanna-badge {
        width: 64px;
        height: 64px;
        padding: 5px;
    }
    .modanna-badge-num { font-size: 16px; }
    .modanna-badge-label { font-size: 8px; }
}

/* ============================================================
   ÜRÜN AÇIKLAMA — Üst preview + tab içi detay (tekrar yok, ferah)
   ============================================================ */
/* Üst preview: ürün adı altında 2 satır truncate */
.modanna-desc-preview {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.55;
    font-size: 14px;
    max-width: 100%;
}

/* Tab içeriği: lead (short_description) öne çıkar, body normal akış */
.modanna-desc-full { line-height: 1.6; }
.modanna-desc-lead {
    font-size: 15px;
    font-weight: 500;
    color: #2d0a14;
    line-height: 1.55;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0e2e8;
    letter-spacing: -0.005em;
}
.modanna-desc-body {
    font-size: 14px;
    line-height: 1.7;
    color: #6b4a55;
    max-width: 60ch;  /* okuma rahatı için satır uzunluğu sınırı */
}
.modanna-desc-body p,
.modanna-desc-body br + br { margin-bottom: 10px; }

@media (max-width: 575px) {
    .modanna-desc-preview { font-size: 13px; }
    .modanna-desc-lead { font-size: 14px; }
    .modanna-desc-body { font-size: 13px; max-width: 100%; }
}
