:root {
    --ink: #171717;
    --muted: #747474;
    --line: #e8e5e1;
    --paper: #fff;
    --soft: #f5f1ec;
    --accent: #ff6b12;
    --green: #2e8b57;
    --red: #e83a35;
    --gold: #f6a30a;
    --max: 1440px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial,Helvetica,sans-serif;
    color: var(--ink);
    background: #fff;
    font-size: 14px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.nt-wrap {
    max-width: var(--max);
    margin: auto;
    padding: 0 28px;
}

.nt-topbar {
    background: #202020;
    color: #fff;
    font-size: 12px;
}

    .nt-topbar .nt-wrap {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .nt-topbar span {
        opacity: .93;
    }

.nt-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nt-head-main {
    height: 76px;
    display: grid;
    grid-template-columns: 210px 1fr auto;
    align-items: center;
    gap: 28px;
}

.nt-logo {
    font-size: 24px;
    line-height: .8;
    font-weight: 800;
    letter-spacing: 5px;
}

    .nt-logo small {
        display: block;
        font-size: 10px;
        letter-spacing: 6px;
        margin-top: 9px;
    }

.nt-nav {
    display: flex;
    gap: 29px;
    align-items: center;
    font-weight: 600;
    font-size: 13px;
}

    .nt-nav a.active {
        color: var(--accent);
        position: relative;
    }

        .nt-nav a.active:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -15px;
            height: 2px;
            background: var(--accent);
        }



.nt-action {
    text-align: center;
    font-size: 10px;
}

    .nt-action b {
        display: block;
        font-size: 22px;
        font-weight: 400;
        margin-bottom: 3px;
    }

.nt-search-row {
    padding: 0 0 14px;
}

.nt-search {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

    .nt-search input {
        flex: 1;
        border: 0;
        outline: 0;
        padding: 14px 18px;
        font-size: 13px;
    }

    .nt-search button {
        border: 0;
        background: var(--accent);
        color: white;
        font-weight: 700;
        padding: 0 34px;
    }

.nt-menu-anchor {
    position: relative;
}

.nt-mega {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 16px 35px rgba(0,0,0,.12);
    z-index: 45;
    padding: 22px 0;
}

    .nt-mega.open {
        display: block;
    }

.nt-mega-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
    gap: 0;
}

.nt-mega-col {
    padding: 0 26px;
    border-right: 1px solid var(--line);
}

    .nt-mega-col:last-child {
        border: 0;
    }

.nt-mega h4 {
    font-size: 14px;
    margin: 0 0 14px;
}

.nt-mega a {
    display: block;
    color: #3d3d3d;
    padding: 5px 0;
    font-size: 13px;
}

    .nt-mega a:hover {
        color: var(--accent);
    }

.nt-mega-promo {
    min-height: 225px;
    border-radius: 4px;
    background: url("../Files/Images/promo-winter.jpg") center/cover;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

    .nt-mega-promo strong {
        font-family: Georgia,serif;
        font-size: 28px;
        background: rgba(255,255,255,.88);
        padding: 10px 14px;
    }

.nt-hero {
    height: 540px;
    background: url("../Files/Images/hero-main.jpg") center/cover;
    position: relative;
    overflow: hidden;
}

    .nt-hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,rgba(248,244,239,.94) 0%,rgba(248,244,239,.72) 35%,rgba(248,244,239,.08) 66%,rgba(0,0,0,0) 100%);
    }

.nt-hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 128px;
    width: 500px;
}

.nt-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #6f655a;
    font-weight: 700;
}

.nt-hero h1 {
    font: 52px/1.04 Georgia,serif;
    margin: 10px 0 16px;
}

.nt-hero p {
    font-size: 17px;
    color: #514d49;
    line-height: 1.6;
    max-width: 420px;
}

.nt-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    border-radius: 3px;
    padding: 13px 19px;
    font-weight: 700;
    cursor: pointer;
}

.nt-btn-dark {
    background: #24211f;
    color: #fff;
}

.nt-btn-orange {
    background: var(--accent);
    color: #fff;
}

.nt-features {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-bottom: 1px solid var(--line);
    padding: 25px 0;
}

.nt-feature {
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: center;
    border-right: 1px solid var(--line);
}

    .nt-feature:last-child {
        border: 0;
    }

    .nt-feature b {
        font-size: 22px;
    }

    .nt-feature strong {
        display: block;
        font-size: 13px;
    }

    .nt-feature small {
        color: var(--muted);
    }

.nt-section {
    padding: 38px 0;
}

.nt-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 22px;
}

.nt-section h2 {
    font: 700 29px Georgia,serif;
    margin: 0;
}

.nt-section-head a {
    font-weight: 700;
    font-size: 12px;
}

.nt-promos {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.nt-promo {
    height: 220px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 28px;
    overflow: hidden;
}

    .nt-promo h3 {
        font: 28px Georgia,serif;
        margin: 0 0 8px;
        max-width: 180px;
    }

    .nt-promo p {
        color: #5c5752;
        max-width: 190px;
    }

.nt-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.nt-chip {
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: #fff;
    font-size: 12px;
}

    .nt-chip.active {
        background: var(--accent);
        border-color: var(--accent);
        color: #fff;
    }


.nt-wide-banner {
    min-height: 245px;
    background: url("../Files/Images/promo-combine.jpg") center/cover;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 45px;
    margin-top: 25px;
}

    .nt-wide-banner h3 {
        font: 38px Georgia,serif;
        margin: 0 0 8px;
    }

.nt-footer {
    margin-top: 50px;
    background: #f4f0eb;
    border-top: 1px solid #e9e3dc;
}

.nt-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3,1fr) 1.4fr;
    gap: 40px;
    padding: 44px 0;
}

.nt-footer h4 {
    font-size: 13px;
    margin: 0 0 14px;
}

.nt-footer a {
    display: block;
    color: #65615d;
    padding: 4px 0;
    font-size: 12px;
}

.nt-newsletter {
    display: flex;
    margin-top: 12px;
}

    .nt-newsletter input {
        min-width: 0;
        flex: 1;
        padding: 11px;
        border: 1px solid #ddd;
    }

    .nt-newsletter button {
        background: #252525;
        color: white;
        border: 0;
        padding: 0 16px;
    }

.nt-footer-bottom {
    border-top: 1px solid #ddd6ce;
    padding: 16px 0;
    color: #777;
    font-size: 11px;
    display: flex;
    justify-content: space-between;
}

.nt-breadcrumb {
    padding: 18px 0;
    color: #8a8682;
    font-size: 11px;
}

.nt-product-layout {
    display: grid;
    grid-template-columns: minmax(0,1.05fr) minmax(420px,.95fr);
    gap: 46px;
}

.nt-main-image {
    background: #f1ece6;
    border-radius: 5px;
    overflow: hidden;
    aspect-ratio: 1/1.08;
}

    .nt-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.nt-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 10px;
    margin-top: 10px;
}

    .nt-gallery-thumbs button {
        border: 1px solid transparent;
        background: #f2eee9;
        padding: 0;
        border-radius: 3px;
        overflow: hidden;
        aspect-ratio: 1;
    }

        .nt-gallery-thumbs button.active {
            border-color: var(--accent);
        }

    .nt-gallery-thumbs img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.nt-product-info {
    padding-top: 8px;
}

    .nt-product-info h1 {
        font-size: 30px;
        line-height: 1.2;
        margin: 10px 0 10px;
    }

.nt-meta {
    color: #777;
    font-size: 12px;
}

.nt-price-big {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 24px 0 22px;
}

    .nt-price-big .now {
        font-size: 32px;
        font-weight: 800;
    }

.nt-discount {
    background: var(--red);
    color: #fff;
    padding: 6px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 3px;
}

.nt-option-title {
    font-weight: 700;
    margin: 18px 0 10px;
}

.nt-variant-images {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .nt-variant-images button {
        width: 58px;
        height: 72px;
        border: 1px solid #ddd;
        padding: 0;
        background: #f2eee9;
        border-radius: 3px;
        overflow: hidden;
    }

        .nt-variant-images button.active {
            border: 2px solid var(--accent);
        }

    .nt-variant-images img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.nt-sizes {
    display: flex;
    gap: 9px;
}

.nt-size {
    width: 48px;
    height: 42px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 3px;
}

.nt-cart-row {
    display: grid;
    grid-template-columns: 115px 1fr;
    gap: 12px;
    margin: 24px 0 12px;
}

.nt-qty {
    display: flex;
    border: 1px solid #ddd;
    height: 52px;
}

    .nt-qty button, .nt-qty input {
        border: 0;
        background: #fff;
        text-align: center;
    }

    .nt-qty input {
        width: 50px;
    }

.nt-addcart {
    height: 52px;
    border: 0;
    background: var(--accent);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    border-radius: 3px;
}

.nt-stock {
    font-size: 12px;
    color: var(--green);
    margin: 10px 0 20px;
}

.nt-product-features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
}

    .nt-product-features div {
        text-align: center;
        font-size: 11px;
        color: #666;
    }

    .nt-product-features b {
        display: block;
        color: #222;
        margin-bottom: 5px;
    }

.nt-detail-tabs {
    display: flex;
    gap: 35px;
    border-bottom: 1px solid var(--line);
    margin-top: 45px;
}

    .nt-detail-tabs button {
        border: 0;
        background: none;
        padding: 16px 0;
        font-weight: 700;
        font-size: 12px;
        position: relative;
    }

        .nt-detail-tabs button.active:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            height: 2px;
            background: var(--accent);
        }

.nt-tab-panel {
    display: none;
    padding: 24px 0;
    line-height: 1.7;
    color: #5d5955;
}

    .nt-tab-panel.active {
        display: block;
    }

.nt-category-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.nt-cat {
    background: #f1ece7;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    min-height: 240px;
}

    .nt-cat img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    .nt-cat span {
        position: absolute;
        left: 15px;
        bottom: 15px;
        background: rgba(255,255,255,.92);
        padding: 9px 12px;
        font: 18px Georgia,serif;
    }

.nt-mobile-menu {
    display: none;
}

.nt-menu-toggle {
    display: none;
}


@media(max-width:980px) {
    .nt-head-main {
        grid-template-columns: 1fr auto
    }

    .nt-nav {
        display: none
    }

    .nt-menu-toggle {
        display: block
    }

    .nt-topbar span:nth-child(n /**/ +3) {
        display: none
    }

    .nt-promos {
        grid-template-columns: 1fr
    }

    .nt-product-layout {
        grid-template-columns: 1fr
    }

    .nt-footer-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .nt-category-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .nt-hero {
        height: 470px
    }

    .nt-hero-copy {
        padding-top: 100px;
        width: 58%
    }

    .nt-hero h1 {
        font-size: 42px
    }
}


@media(max-width:620px) {
    .nt-wrap {
        padding: 0 15px
    }

    .nt-topbar .nt-wrap {
        justify-content: center
    }

    .nt-topbar span:nth-child(n /**/ +2) {
        display: none
    }

    .nt-head-main {
        height: 65px
    }

    .nt-head-actions .nt-action:not(:last-child) {
        display: none
    }

    .nt-logo {
        font-size: 18px
    }

    .nt-search button {
        padding: 0 20px
    }

    .nt-hero {
        height: 420px;
        background-position: 65% center
    }

        .nt-hero:before {
            background: rgba(245,240,234,.7)
        }

    .nt-hero-copy {
        width: 90%;
        padding-top: 90px
    }

    .nt-hero h1 {
        font-size: 39px
    }

    .nt-features {
        grid-template-columns: repeat(2,1fr);
        gap: 18px
    }

    .nt-feature {
        border: 0
    }

    .nt-category-grid {
        grid-template-columns: 1fr 1fr
    }

    .nt-footer-grid {
        grid-template-columns: 1fr
    }

        .nt-footer-grid > div:nth-child(2), .nt-footer-grid > div:nth-child(3) {
            display: none
        }

    .nt-product-info h1 {
        font-size: 24px
    }

    .nt-cart-row {
        grid-template-columns: 95px 1fr
    }

    .nt-product-features {
        grid-template-columns: 1fr
    }

    .nt-detail-tabs {
        overflow: auto;
        gap: 25px
    }

    .nt-mega-grid {
        grid-template-columns: 1fr 1fr
    }

    .nt-mega-col:nth-child(4) {
        display: none
    }

    .nt-mega {
        max-height: 70vh;
        overflow: auto
    }
}


.nt-logo-image {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

    .nt-logo-image img {
        display: block;
        width: auto;
        height: 54px;
        max-width: 190px;
        object-fit: contain;
    }

.nt-footer-logo img {
    height: 50px;
    max-width: 180px;
}

@media (max-width: 760px) {
    .nt-logo-image img {
        height: 42px;
        max-width: 150px;
    }
}

.nt-content-page {
    padding: 34px 0 70px;
    background: #fff;
}

.nt-content-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 12px;
    color: #999;
}

    .nt-content-breadcrumb a {
        color: #666;
        text-decoration: none;
    }

        .nt-content-breadcrumb a:hover {
            color: #111;
        }

.nt-content-box {
    max-width: 1050px;
    margin: 0 auto;
}

.nt-content-header {
    padding-bottom: 25px;
    margin-bottom: 28px;
    border-bottom: 1px solid #eee;
}

    .nt-content-header h1 {
        margin: 0;
        font-size: 34px;
        line-height: 1.2;
        font-weight: 600;
        color: #171717;
    }

.nt-content-summary {
    max-width: 800px;
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.7;
    color: #777;
}

.nt-content-body {
    color: #444;
    font-size: 15px;
    line-height: 1.9;
}

    .nt-content-body h2 {
        margin: 35px 0 15px;
        font-size: 24px;
        color: #171717;
    }

    .nt-content-body h3 {
        margin: 28px 0 10px;
        font-size: 18px;
        color: #171717;
    }

    .nt-content-body p {
        margin: 0 0 18px;
    }

    .nt-content-body ul,
    .nt-content-body ol {
        padding-left: 22px;
        margin: 0 0 20px;
    }

    .nt-content-body a {
        color: #111;
        text-decoration: underline;
    }

@media (max-width: 760px) {

    .nt-content-page {
        padding: 20px 0 45px;
    }

    .nt-content-header h1 {
        font-size: 27px;
    }

    .nt-content-body {
        font-size: 14px;
        line-height: 1.8;
    }

        .nt-content-body h2 {
            font-size: 21px;
        }
}
/* =========================================================
   NEDEN TEKSTIL - HEADER / MEGA MENU / MOBILE MENU
   2026-09-15
   ========================================================= */


/* Mobil menü JS tarafından oluşturulur. MasterPage'e dokunmaya gerek yok. */
.nt-mobile-toggle,
.nt-mobile-drawer,
.nt-mobile-overlay {
    display: none;
}

@media (max-width: 980px) {
    body.nt-mobile-menu-open {
        overflow: hidden;
    }

    .nt-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .nt-head-main {
        height: 66px;
        display: grid;
        grid-template-columns: 44px 1fr auto;
        gap: 10px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .nt-nav {
        display: none !important;
    }

    .nt-mobile-toggle {
        display: inline-flex;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        padding: 0;
        cursor: pointer;
        border-radius: 50%;
        color: #171717;
    }

    .nt-mobile-toggle-lines {
        width: 22px;
        height: 16px;
        position: relative;
        display: block;
    }

        .nt-mobile-toggle-lines:before,
        .nt-mobile-toggle-lines:after,
        .nt-mobile-toggle-lines span {
            content: "";
            position: absolute;
            left: 0;
            width: 22px;
            height: 2px;
            border-radius: 2px;
            background: currentColor;
        }

        .nt-mobile-toggle-lines:before {
            top: 0;
        }

        .nt-mobile-toggle-lines span {
            top: 7px;
        }

        .nt-mobile-toggle-lines:after {
            top: 14px;
        }

    .nt-logo {
        justify-self: start;
        min-width: 0;
    }

    .nt-logo-image img {
        height: 44px;
        max-width: 155px;
    }

    .nt-head-actions {
        gap: 12px;
        align-items: center;
    }

    .nt-action {
        font-size: 9px;
    }

        .nt-action b {
            font-size: 20px;
        }

    .nt-search-row {
        padding: 0 15px 11px;
    }

    .nt-search input {
        min-width: 0;
        padding: 12px 13px;
    }

    .nt-search button {
        padding: 0 22px;
    }

    /* Masaüstü mega menüyü mobilde doğrudan göstermiyoruz. */
    .nt-mega {
        display: none !important;
    }

    .nt-mobile-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1998;
        background: rgba(0,0,0,.38);
        opacity: 0;
        visibility: hidden;
        transition: opacity .22s ease, visibility .22s ease;
    }

        .nt-mobile-overlay.open {
            opacity: 1;
            visibility: visible;
        }

    .nt-mobile-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        z-index: 1999;
        left: 0;
        top: 0;
        bottom: 0;
        width: min(88vw,390px);
        background: #fff;
        transform: translateX(-102%);
        transition: transform .24s ease;
        box-shadow: 18px 0 45px rgba(0,0,0,.16);
        overflow: hidden;
    }

        .nt-mobile-drawer.open {
            transform: translateX(0);
        }

    .nt-mobile-drawer-head {
        flex: 0 0 auto;
        min-height: 66px;
        padding: 10px 15px 10px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #ededed;
    }

    .nt-mobile-drawer-title {
        font-size: 18px;
        font-weight: 800;
        color: #171717;
    }

    .nt-mobile-close {
        width: 42px;
        height: 42px;
        border: 0;
        background: #f6f6f6;
        border-radius: 50%;
        cursor: pointer;
        font-size: 27px;
        line-height: 1;
        color: #222;
    }

    .nt-mobile-drawer-body {
        flex: 1 1 auto;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding-bottom: 28px;
    }

    .nt-mobile-main-links {
        padding: 7px 18px 10px;
        border-bottom: 1px solid #ededed;
    }

        .nt-mobile-main-links > a {
            display: flex;
            align-items: center;
            min-height: 45px;
            padding: 4px 0;
            font-size: 14px;
            font-weight: 700;
            border-bottom: 1px solid #f2f2f2;
        }

            .nt-mobile-main-links > a:last-child {
                border-bottom: 0;
            }

            .nt-mobile-main-links > a.active {
                color: var(--accent);
            }

    .nt-mobile-categories {
        padding: 18px;
    }

    .nt-mobile-categories-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 9px;
    }

        .nt-mobile-categories-head strong {
            font-size: 16px;
            color: #171717;
        }

    .nt-mobile-category-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 20px;
    }

        .nt-mobile-category-list a {
            display: flex;
            align-items: center;
            min-height: 41px;
            padding: 7px 0;
            border-bottom: 1px solid #f0f0f0;
            color: #333;
            font-size: 13px;
            line-height: 1.25;
        }

            .nt-mobile-category-list a:after {
                content: "›";
                margin-left: auto;
                padding-left: 8px;
                color: #aaa;
                font-size: 18px;
            }

    .nt-mobile-promo {
        margin: 8px 18px 0;
    }

        .nt-mobile-promo .nt-mega-promo {
            display: flex !important;
            min-height: 150px;
            border-radius: 7px;
            background-position: center;
            background-size: cover;
            padding: 15px;
        }

            .nt-mobile-promo .nt-mega-promo strong {
                font-size: 21px;
                padding: 7px 10px;
            }
}

@media (max-width: 620px) {
    .nt-topbar .nt-wrap {
        min-height: 31px;
    }

    .nt-head-main {
        grid-template-columns: 40px 1fr auto;
        gap: 7px;
    }

    .nt-logo-image img {
        height: 39px;
        max-width: 135px;
    }

    .nt-head-actions {
        gap: 7px;
    }

        .nt-head-actions .nt-action {
            display: none !important;
        }

            .nt-head-actions .nt-action:last-child {
                display: block !important;
            }

    .nt-search-row {
        padding-left: 15px;
        padding-right: 15px;
    }

    .nt-mobile-category-list {
        grid-template-columns: 1fr;
    }

    .nt-mobile-drawer {
        width: min(91vw,370px);
    }
}




/* =========================================================
   NEDEN TEKSTIL - MEGA MENU FINAL DB YERLESIMI
   ust_id = hiyerarsi, metin1 = gorsel adres
   ========================================================= */
@media (min-width:981px) {
    .nt-header .nt-mega {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        z-index: 90;
        background: #fff;
        border-top: 1px solid #ece9e5;
        box-shadow: 0 18px 42px rgba(0,0,0,.10);
        padding: 0 !important
    }

        .nt-header .nt-mega.open {
            display: block !important
        }

    .nt-header .nt-mega-shell {
        display: grid !important;
        grid-template-columns: minmax(0,1fr) !important;
        gap: 0 !important;
        align-items: start !important;
        padding: 20px 0 24px !important
    }

    .nt-mega-content {
        min-width: 0;
        width: 100%
    }

    .nt-mega-title {
        display: flex;
        align-items: center;
        gap: 9px;
        font-size: 16px;
        font-weight: 800;
        color: #151515;
        padding: 0 0 11px;
        border-bottom: 1px solid #ece8e3;
        margin-bottom: 15px
    }

        .nt-mega-title:before {
            content: "";
            width: 4px;
            height: 18px;
            border-radius: 8px;
            background: var(--accent)
        }

    .nt-mega-main-root {
        margin: 0
    }

    .nt-mega-root-title {
        display: block !important;
        color: #111 !important;
        font-size: 14px !important;
        font-weight: 800 !important;
        line-height: 1.3 !important;
        margin: 0 0 10px !important;
        padding: 0 !important;
        text-decoration: none !important;
        transform: none !important
    }

    .nt-mega-main-root > .nt-mega-root-title {
        font-size: 15px !important;
        margin-bottom: 12px !important
    }

    .nt-mega-main-layout {
        display: grid;
        grid-template-columns: minmax(0,2.15fr) minmax(210px,.85fr);
        gap: 34px;
        align-items: start
    }

    .nt-mega-main-left {
        min-width: 0
    }

    .nt-mega-main-right {
        display: grid;
        gap: 14px;
        align-content: start;
        min-width: 0;
        padding-left: 24px;
        border-left: 1px solid #eee9e4
    }

    .nt-mega-branch {
        margin: 0;
        min-width: 0
    }

    .nt-mega-branch-title {
        display: block !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        color: #222 !important;
        margin: 0 0 7px !important;
        padding: 0 !important;
        transform: none !important;
        text-decoration: none !important
    }

    .nt-mega-branch-wide .nt-mega-leaves {
        display: grid !important;
        grid-template-columns: repeat(2,minmax(0,1fr));
        column-gap: 28px;
        row-gap: 0
    }

    .nt-mega-leaves, .nt-mega-small-links {
        display: grid;
        gap: 0
    }

    .nt-mega-leaf {
        display: block !important;
        padding: 4px 0 !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
        color: #555 !important;
        text-decoration: none !important;
        transition: color .15s ease,transform .15s ease
    }

        .nt-mega-leaf:hover {
            color: var(--accent) !important;
            transform: translateX(2px) !important
        }

    .nt-mega-single-leaf {
        font-weight: 600 !important;
        color: #333 !important
    }

    .nt-mega-bottom-roots {
        display: grid;
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 28px;
        margin-top: 17px;
        padding-top: 14px;
        border-top: 1px solid #eee9e4
    }

    .nt-mega-small-root {
        min-width: 0;
        margin: 0
    }

        .nt-mega-small-root .nt-mega-root-title {
            margin-bottom: 5px !important
        }
}

@media (max-width:980px) {
    .nt-mega {
        display: none !important
    }

    .nt-mobile-main-links {
        padding: 7px 18px 10px;
        border-bottom: 0 !important
    }

        .nt-mobile-main-links > a {
            display: flex;
            align-items: center;
            min-height: 45px;
            padding: 4px 0;
            font-size: 14px;
            font-weight: 700;
            border-bottom: 1px solid #f2f2f2
        }

            .nt-mobile-main-links > a.active {
                color: inherit !important
            }

    .nt-mobile-all-categories {
        border-bottom: 1px solid #ededed
    }

    .nt-mobile-all-button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 52px;
        padding: 5px 0;
        border: 0;
        background: #fff;
        text-align: left;
        font-size: 16px;
        font-weight: 800;
        color: #171717;
        cursor: pointer
    }

        .nt-mobile-all-button .nt-mobile-all-label {
            display: flex;
            align-items: center;
            gap: 8px
        }

            .nt-mobile-all-button .nt-mobile-all-label:before {
                content: "";
                width: 4px;
                height: 18px;
                border-radius: 8px;
                background: var(--accent)
            }

    .nt-mobile-all-content {
        display: none;
        padding: 0 0 8px 10px
    }

    .nt-mobile-all-categories.open > .nt-mobile-all-content {
        display: block
    }

    .nt-mobile-all-categories.open > .nt-mobile-all-button .nt-mobile-chevron {
        transform: rotate(90deg)
    }

    .nt-mobile-root {
        border-bottom: 1px solid #ececec
    }

    .nt-mobile-root-button, .nt-mobile-branch-button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 0;
        background: #fff;
        text-align: left;
        cursor: pointer;
        color: #222
    }

    .nt-mobile-root-button {
        padding: 13px 0;
        font-size: 14px;
        font-weight: 800
    }

    .nt-mobile-branch-button {
        padding: 10px 0;
        font-size: 13px;
        font-weight: 700
    }

    .nt-mobile-chevron {
        font-size: 20px;
        color: #999;
        transition: transform .18s ease
    }

    .nt-mobile-root.open > .nt-mobile-root-button .nt-mobile-chevron, .nt-mobile-branch.open > .nt-mobile-branch-button .nt-mobile-chevron {
        transform: rotate(90deg)
    }

    .nt-mobile-root-content, .nt-mobile-branch-content {
        display: none
    }

    .nt-mobile-root.open > .nt-mobile-root-content, .nt-mobile-branch.open > .nt-mobile-branch-content {
        display: block
    }

    .nt-mobile-root-content {
        padding: 0 0 9px 12px
    }

    .nt-mobile-branch {
        border-left: 2px solid #f0ebe6;
        padding-left: 11px;
        margin: 0 0 5px
    }

    .nt-mobile-branch-content {
        padding: 0 0 7px 8px
    }

    .nt-mobile-leaf {
        display: block;
        padding: 8px 0;
        color: #626262;
        font-size: 13px;
        border-bottom: 1px solid #f5f5f5;
        text-decoration: none
    }

    .nt-mobile-direct {
        display: block;
        padding: 10px 0;
        font-size: 13px;
        font-weight: 600;
        color: #333;
        text-decoration: none
    }

    .nt-mobile-promo {
        margin: 15px 18px 0
    }

        .nt-mobile-promo .nt-mega-promo {
            display: flex !important;
            height: 150px !important;
            min-height: 150px !important;
            border-radius: 8px;
            background-size: cover;
            background-position: center;
            padding: 13px !important
        }
}
/* =========================================================
   ANASAYFA HERO SLIDER
   ========================================================= */

.nt-home-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .nt-home-hero-slider .nt-home-hero-slide {
        display: none;
        width: 100%;
    }

        .nt-home-hero-slider .nt-home-hero-slide.active {
            display: block;
        }

.nt-home-hero-prev,
.nt-home-hero-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.90);
    color: #111;
    font-size: 30px;
    line-height: 46px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0,0,0,.12);
}

.nt-home-hero-prev {
    left: 24px;
}

.nt-home-hero-next {
    right: 24px;
}

.nt-home-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 10;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.nt-home-hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

    .nt-home-hero-dot.active {
        background: #fff;
    }

@media (max-width: 980px) {

    .nt-home-hero-prev,
    .nt-home-hero-next {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 25px;
    }

    .nt-home-hero-prev {
        left: 10px;
    }

    .nt-home-hero-next {
        right: 10px;
    }

    .nt-home-hero-dots {
        bottom: 12px;
    }
}
/* ORTAK AVANTAJ İKONLARI */

.nt-topbar-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nt-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.nt-topbar-icon,
.nt-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #a66b42;
}

    .nt-topbar-icon svg {
        width: 15px;
        height: 15px;
        display: block;
    }

.nt-feature-icon {
    width: 32px;
    height: 32px;
}

    .nt-feature-icon svg {
        width: 24px;
        height: 24px;
        display: block;
    }

@media (max-width: 760px) {
    .nt-topbar-items {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .nt-topbar-item {
        font-size: 10px;
    }

    .nt-topbar-icon svg {
        width: 13px;
        height: 13px;
    }
}
/* HEADER HESAP / FAVORİ / SEPET */

.nt-head-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
}

    .nt-head-actions .nt-action {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-width: 55px;
        color: #26211e;
        text-decoration: none;
        font-size: 11px;
        font-weight: 500;
        transition: color .2s ease;
    }

        .nt-head-actions .nt-action svg {
            width: 23px;
            height: 23px;
            display: block;
            flex-shrink: 0;
            transition: transform .2s ease;
        }

        .nt-head-actions .nt-action:hover {
            color: #a66b42;
        }

            .nt-head-actions .nt-action:hover svg {
                transform: translateY(-2px);
            }

        .nt-head-actions .nt-action span {
            white-space: nowrap;
        }

@media (max-width: 760px) {
    .nt-head-actions {
        gap: 14px;
    }

        .nt-head-actions .nt-action {
            min-width: 35px;
            font-size: 10px;
        }

            .nt-head-actions .nt-action svg {
                width: 21px;
                height: 21px;
            }
}

/* NEDEN TEKSTIL - SOSYAL MEDYA FOOTER */



.nt-footer .nt-footer-social h4 {
    margin: 0 0 12px;
    color: #202020;
    font-size: 14px;
    font-weight: 700;
}



.nt-footer .nt-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(150, 110, 80, .10);
    transition: transform .2s ease;
}

    .nt-footer .nt-social-link:last-child {
        border-bottom: none;
    }

    .nt-footer .nt-social-link:hover {
        transform: translateX(3px);
    }

.nt-social-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a6547;
    border-right: 1px solid #ded5cd;
    padding-right: 9px;
    box-sizing: content-box;
}

    .nt-social-icon svg {
        display: block;
        width: 26px;
        height: 26px;
    }

.nt-social-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

    .nt-social-info strong {
        color: #242424;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.3;
    }

    .nt-social-info small {
        color: #817b75;
        font-size: 11px;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

.nt-footer .nt-social-link:hover .nt-social-icon,
.nt-footer .nt-social-link:hover .nt-social-info strong {
    color: #ff6b12;
}

/* Sosyal alanına biraz daha geniş yer ayır. */
@media (min-width: 981px) {
    .nt-footer-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(180px, 1.3fr) minmax(0, 1.3fr);
        gap: 25px;
    }
}

@media (max-width: 620px) {
    .nt-footer .nt-footer-social {
        display: block !important;
    }

    .nt-footer .nt-social-link {
        padding: 9px 0;
    }
}

/* ============================================================
   FOOTER - YENİ DÜZEN
   ============================================================ */





/* ============================================================
   PAZARYERİ ALANI
   ============================================================ */



.nt-footer-marketplaces h4 {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    color: #29221e;
}

.nt-marketplace-description {
    margin: 0 0 16px;
    color: #81766e;
    font-size: 11px;
    line-height: 1.6;
}





.nt-marketplace-card:hover {
    border-color: #c9aa91;
    box-shadow: 0 3px 12px rgba(60, 40, 20, .06);
    transform: translateY(-2px);
}



/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .nt-footer .nt-footer-grid-new {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
        gap: 26px;
    }

    .nt-footer-marketplaces {
        grid-column: 1 / -1;
    }

    .nt-marketplace-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* ============================================================
   MOBİL
   ============================================================ */

@media (max-width: 620px) {

    .nt-footer .nt-footer-grid-new {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .nt-footer-grid-new > div {
        display: block !important;
    }

    .nt-footer-brand {
        grid-column: 1 / -1;
    }

    .nt-footer-marketplaces {
        grid-column: 1 / -1;
    }

    .nt-marketplace-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .nt-marketplace-card {
        height: 56px;
        padding: 8px;
    }

        .nt-marketplace-card img {
            max-height: 34px;
        }
}
/* ============================================================
   FOOTER - GRUPLU PAZARYERLERİ
   ============================================================ */





.nt-footer-marketplaces > h4 {
    margin-bottom: 18px;
}

/* GRUPLAR */





.nt-marketplace-group-title {
    letter-spacing: .2px;
}



/* LOGO IZGARASI */



/* KARTLAR */





/* SADECE LINKLİ KARTLAR */







/* TABLET */

@media (max-width: 1100px) {

    .nt-footer .nt-footer-grid-new {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .nt-footer-marketplaces {
        grid-column: 1 / -1;
    }

    .nt-marketplace-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* MOBİL */

@media (max-width: 620px) {

    .nt-footer .nt-footer-grid-new {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nt-footer-marketplaces {
        grid-column: 1 / -1;
    }

    .nt-marketplace-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .nt-marketplace-card {
        height: 46px;
        padding: 8px;
    }

        .nt-marketplace-card img {
            max-width: 90px;
            max-height: 26px;
        }

    .nt-marketplace-group {
        margin-bottom: 20px;
    }
}

/* ============================================================
   NEDEN TEKSTİL - FOOTER SON DÜZEN
   ============================================================ */

/* ÜÇ ANA SÜTUN */

.nt-footer .nt-footer-grid-new {
    display: grid;
    grid-template-columns: minmax(175px, 1fr) minmax(195px, 1.1fr) minmax(0, 3.6fr);
    gap: 34px;
    align-items: start;
    padding-top: 45px;
    padding-bottom: 45px;
}

.nt-footer-grid-new > div {
    min-width: 0;
}

/* ============================================================
   LOGO + KURUMSAL
   ============================================================ */

.nt-footer-brand {
    min-width: 0;
}

.nt-footer-slogan {
    color: #777;
    font-size: 12px;
    line-height: 1.7;
    margin: 20px 0 0;
}

.nt-footer-brand-menu {
    margin-top: 25px;
    padding-top: 19px;
    border-top: 1px solid #e8ded4;
}

    .nt-footer-brand-menu h4 {
        margin: 0 0 12px;
        color: #29221e;
        font-size: 13px;
        font-weight: 700;
    }

    .nt-footer-brand-menu a {
        display: block;
        padding: 4px 0;
        color: #65615d;
        font-size: 12px;
        line-height: 1.55;
        text-decoration: none;
    }

        .nt-footer-brand-menu a:hover {
            color: #a66b42;
        }

/* ============================================================
   SOSYAL MEDYA
   ============================================================ */

.nt-footer-social {
    min-width: 0;
}

    .nt-footer-social h4 {
        margin: 0 0 12px;
        font-size: 13px;
        font-weight: 700;
        color: #29221e;
    }

.nt-social-description {
    margin: 0 0 18px;
    color: #81766e;
    font-size: 12px;
    line-height: 1.7;
}

.nt-footer-social .nt-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 4px;
    border-bottom: 1px solid #e8ded4;
    color: #29221e;
    text-decoration: none;
}

    .nt-footer-social .nt-social-link:last-child {
        border-bottom: 0;
    }

.nt-footer-social .nt-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    min-width: 36px;
    height: 34px;
    border-right: 1px solid #e8ded4;
    color: #a66b42;
}

    .nt-footer-social .nt-social-icon svg {
        width: 21px;
        height: 21px;
    }

.nt-footer-social .nt-social-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

    .nt-footer-social .nt-social-info strong {
        font-size: 12px;
        font-weight: 700;
        color: #29221e;
    }

    .nt-footer-social .nt-social-info small {
        font-size: 11px;
        color: #81766e;
    }

.nt-footer-social .nt-social-link:hover strong {
    color: #a66b42;
}

/* ============================================================
   PAZARYERLERİ
   ============================================================ */

.nt-footer-marketplaces {
    min-width: 0;
}

    .nt-footer-marketplaces > h4 {
        margin: 0 0 18px;
        color: #29221e;
        font-size: 13px;
        font-weight: 700;
    }

/* GRUP BAŞLIKLARI */

.nt-marketplace-group {
    margin-bottom: 19px;
}

    .nt-marketplace-group:last-child {
        margin-bottom: 0;
    }

.nt-marketplace-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
    color: #84664f;
    font-size: 11px;
    font-weight: 700;
}

    .nt-marketplace-group-title::after {
        content: "";
        height: 1px;
        flex: 1;
        background: #e8ded4;
    }

/* LOGO IZGARASI */

.nt-marketplace-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
}

/* LOGO KARTLARI */

.nt-marketplace-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 43px;
    padding: 7px 9px;
    background: #fffdfb;
    border: 1px solid #e9e0d7;
    border-radius: 6px;
    box-sizing: border-box;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

    .nt-marketplace-card img {
        display: block;
        width: 100%;
        height: 100%;
        max-width: 88px;
        max-height: 25px;
        object-fit: contain;
    }

.nt-marketplace-link {
    cursor: pointer;
}

    .nt-marketplace-link:hover {
        background: #fff;
        border-color: #bc9678;
        transform: translateY(-2px);
    }

    .nt-marketplace-link:focus-visible {
        outline: 2px solid #a66b42;
        outline-offset: 2px;
    }

/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .nt-footer .nt-footer-grid-new {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 28px;
    }

    .nt-footer-marketplaces {
        grid-column: 1 / -1;
    }

    .nt-marketplace-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* ============================================================
   MOBİL
   ============================================================ */

@media (max-width: 620px) {

    .nt-footer .nt-footer-grid-new {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
        padding-top: 32px;
        padding-bottom: 32px;
    }

        .nt-footer .nt-footer-grid-new > div {
            display: block !important;
            grid-column: 1 / -1;
        }

    .nt-footer-brand-menu {
        margin-top: 20px;
    }

    .nt-marketplace-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .nt-marketplace-card {
        height: 46px;
        padding: 8px;
    }

        .nt-marketplace-card img {
            max-width: 90px;
            max-height: 26px;
        }

    .nt-footer-bottom {
        flex-wrap: wrap;
        gap: 8px;
    }
}
/* PAZARYERLERİ - METİN TASARIMI */

.nt-footer-marketplaces .nt-marketplace-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
}

.nt-marketplace-text-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    min-width: 0;
    min-height: 37px;
    padding: 8px 10px;
    box-sizing: border-box;
    background: #fffdfb;
    border: 1px solid #e8ded4;
    border-radius: 6px;
    color: #57483e !important;
    font-size: 11px !important;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none !important;
    transition: background .2s, border-color .2s, color .2s;
}

    .nt-marketplace-text-link > span:first-child {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .nt-marketplace-text-link:hover {
        background: #f2e7db;
        border-color: #b58a68;
        color: #865632 !important;
    }

    .nt-marketplace-text-link:focus-visible {
        outline: 2px solid #a66b42;
        outline-offset: 2px;
    }

.nt-marketplace-arrow {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 400;
    color: #a66b42;
}

.nt-marketplace-disabled {
    opacity: .55;
    cursor: default;
}

    .nt-marketplace-disabled:hover {
        background: #fffdfb;
        border-color: #e8ded4;
    }

@media (max-width: 1100px) {
    .nt-footer-marketplaces .nt-marketplace-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .nt-footer-marketplaces .nt-marketplace-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* Tüm pazaryeri kartları aynı görünümde */

.nt-footer-marketplaces .nt-marketplace-text-link,
.nt-footer-marketplaces .nt-marketplace-no-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 37px;
    padding: 8px 11px;
    background: #fffdfb;
    border: 1px solid #e8ded4;
    border-radius: 6px;
    color: #57483e !important;
    font-size: 11px !important;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none !important;
    opacity: 1 !important;
    box-sizing: border-box;
}

/* Bağlantısı olmayanlar soluk görünmesin */

.nt-footer-marketplaces .nt-marketplace-no-link {
    cursor: default;
}

/* Ok işaretlerini gizle */

.nt-footer-marketplaces .nt-marketplace-arrow {
    display: none !important;
}

/* Yalnızca bağlantısı olanlarda hover */

.nt-footer-marketplaces a.nt-marketplace-text-link:hover {
    background: #f2e7db;
    border-color: #b58a68;
    color: #865632 !important;
}
/* TÜM ÜRÜNLER - ZARİF TASARIM */

.nt-mega .nt-mega-title {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    width: auto;
    min-width: 0;
    padding: 10px 16px;
    margin: 0 0 12px 0;
    background: #fffaf6;
    border: 1px solid #f2d5c3;
    border-radius: 5px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    box-shadow: none;
    transition: all .2s ease;
}

    .nt-mega .nt-mega-title::after {
        content: "→";
        color: #ff681c;
        font-size: 18px;
        font-weight: 400;
        transition: transform .2s ease;
    }

    .nt-mega .nt-mega-title:hover {
        background: #fff2e9;
        border-color: #ff681c;
        color: #e85a12;
        box-shadow: none;
    }

        .nt-mega .nt-mega-title:hover::after {
            transform: translateX(3px);
        }


/* FOOTER - KOMPAKT İLETİŞİM */

.nt-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #eee4dc;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: inherit;
}

.nt-footer-contact-address {
    color: inherit;
}

.nt-footer-contact a {
    display: block;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
}

    .nt-footer-contact a:hover {
        color: #d59b23;
    }


.nt-footer-payments {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
}

    .nt-footer-payments img {
        width: 55px;
        height: 28px;
        object-fit: contain;
        display: block;
    }

@media (max-width: 767px) {
    .nt-footer-payments {
        justify-content: center;
        gap: 5px;
    }

        .nt-footer-payments img {
            width: 48px;
            height: 25px;
        }
}


/* AVANTAJLAR - 5 SÜTUN DÜZENİ */

.nt-features {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    padding: 20px 0;
}

.nt-feature {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 12px;
    border-right: 1px solid var(--line);
}

    .nt-feature:last-child {
        border-right: 0;
    }

    .nt-feature > div {
        min-width: 0;
    }

    .nt-feature strong {
        display: block;
        font-size: 12px;
        line-height: 1.35;
    }

    .nt-feature small {
        display: block;
        font-size: 11px;
        line-height: 1.4;
    }

.nt-feature-icon {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
}

    .nt-feature-icon svg {
        width: 23px;
        height: 23px;
    }

@media (min-width: 621px) and (max-width: 980px) {
    .nt-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 20px;
    }

    .nt-feature:nth-child(3n) {
        border-right: 0;
    }
}

@media (max-width: 620px) {
    .nt-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 0;
    }

    .nt-feature {
        justify-content: flex-start;
        padding: 0 8px;
        border-right: 0;
    }
}

/* ==========================================
   YENİ ÜST BAR
   Sol: Kargo / Sağ: Sosyal medya
========================================== */

.nt-topbar.nt-topbar-new {
    background: #222222;
    color: #ffffff;
    padding: 0;
}

.nt-topbar-new .nt-topbar-new-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 40px;
}

.nt-topbar-new-message {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.nt-topbar-new-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

    .nt-topbar-new-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 24px;
        color: #ffffff;
        text-decoration: none;
        transition: opacity .2s ease;
    }

        .nt-topbar-new-social a:hover {
            color: #ffffff;
            opacity: .7;
        }

    .nt-topbar-new-social svg {
        display: block;
        width: 16px;
        height: 16px;
        stroke: currentColor;
    }

@media (max-width: 767px) {

    .nt-topbar-new .nt-topbar-new-inner {
        min-height: 38px;
        gap: 8px;
    }

    .nt-topbar-new-message {
        font-size: 10px;
        line-height: 1.3;
    }

    .nt-topbar-new-social {
        gap: 6px;
    }

        .nt-topbar-new-social a {
            width: 17px;
            height: 22px;
        }

        .nt-topbar-new-social svg {
            width: 13px;
            height: 13px;
        }
}

/* =========================================
   MASTER HEADER - SEPET ROZETİ
========================================= */

.nt-head-actions .nt-cart-action {
    position: relative;
}

.nt-cart-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.nt-head-actions .nt-cart-icon-wrap svg {
    width: 23px;
    height: 23px;
}

.nt-head-actions .nt-cart-badge {
    position: absolute;
    top: -7px;
    right: -12px;
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 19px;
    height: 19px;
    padding: 0 4px;
    border-radius: 20px;
    border: 2px solid #fff;
    background: #f26a16;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    z-index: 2;
}

/* =========================================
   MOBİL - HESABIM / FAVORİLERİM / SEPETİM
========================================= */

@media (max-width: 980px) {

    .nt-head-main {
        grid-template-columns: 40px minmax(0, 1fr) auto;
        gap: 8px;
    }

    .nt-head-actions {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        min-width: 0;
    }

        .nt-head-actions .nt-action,
        .nt-head-actions .nt-action:not(:last-child),
        .nt-head-actions .nt-action:last-child {
            display: inline-flex !important;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            gap: 4px;
            font-size: 9px;
            text-align: center;
        }

            .nt-head-actions .nt-action svg {
                width: 21px;
                height: 21px;
            }
}

@media (max-width: 620px) {

    .nt-head-main {
        grid-template-columns: 36px minmax(0, 1fr) auto;
        gap: 5px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .nt-mobile-toggle {
        width: 36px;
        height: 40px;
    }

    .nt-logo-image {
        min-width: 0;
    }

        .nt-logo-image img {
            max-width: 110px;
            height: auto;
            max-height: 39px;
            object-fit: contain;
        }

    .nt-head-actions {
        gap: 3px;
    }

        .nt-head-actions .nt-action,
        .nt-head-actions .nt-action:not(:last-child),
        .nt-head-actions .nt-action:last-child {
            display: inline-flex !important;
            min-width: 39px;
            font-size: 8px;
        }

            .nt-head-actions .nt-action svg {
                width: 20px;
                height: 20px;
            }

    .nt-cart-icon-wrap {
        width: 24px;
        height: 24px;
    }

    .nt-head-actions .nt-cart-badge {
        top: -7px;
        right: -9px;
    }
}

/* ==========================================
   HEADER - HESABIM / FAVORİLERİM / SEPETİM
   ========================================== */

.nt-head-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-shrink: 0;
}

    .nt-head-actions .nt-action {
        position: relative;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        min-width: 58px;
        min-height: 55px;
        padding: 5px 3px;
        color: #252525;
        font-size: 11px;
        font-weight: 600;
        text-decoration: none;
        transition: color .2s ease;
    }

        .nt-head-actions .nt-action > svg {
            display: block;
            width: 25px;
            height: 25px;
        }

        .nt-head-actions .nt-action:hover {
            color: #e66a13;
        }

    /* SEPET İKON ALANI */

    .nt-head-actions .nt-cart-icon-wrap {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 30px;
        flex-shrink: 0;
    }

        .nt-head-actions .nt-cart-icon-wrap svg {
            display: block;
            width: 27px;
            height: 27px;
            flex-shrink: 0;
            overflow: visible;
        }

    /* ADET ROZETİ */

    .nt-head-actions .nt-cart-badge {
        position: absolute;
        top: -8px;
        right: -13px;
        z-index: 2;
        min-width: 23px;
        height: 23px;
        padding: 0 5px;
        align-items: center;
        justify-content: center;
        border: 2px solid #fff;
        border-radius: 999px;
        background: #f36b16;
        color: #fff;
        font-family: Arial, sans-serif;
        font-size: 12px;
        font-weight: 800;
        line-height: 1;
        letter-spacing: -.3px;
        box-shadow: 0 2px 5px rgba(0,0,0,.18);
        white-space: nowrap;
    }

    .nt-head-actions .nt-cart-label {
        font-size: 11px;
        font-weight: 600;
    }

/* TABLET VE MOBİL */

@media (max-width: 980px) {

    .nt-head-actions {
        gap: 8px;
    }

        .nt-head-actions .nt-action {
            display: inline-flex !important;
            min-width: 48px;
            min-height: 52px;
            padding: 4px 2px;
            font-size: 10px;
        }
}

@media (max-width: 620px) {

    /* Eski CSS'teki diğer ikonları gizleyen kuralları geçersiz kıl */

    .nt-head-actions .nt-action,
    .nt-head-actions .nt-action:not(:last-child),
    .nt-head-actions .nt-action:last-child {
        display: inline-flex !important;
    }

    .nt-head-actions {
        gap: 3px;
    }

        .nt-head-actions .nt-action {
            min-width: 43px;
            padding: 4px 1px;
            font-size: 9px;
        }

            .nt-head-actions .nt-action > svg {
                width: 22px;
                height: 22px;
            }

        .nt-head-actions .nt-cart-icon-wrap {
            width: 29px;
            height: 26px;
        }

            .nt-head-actions .nt-cart-icon-wrap svg {
                width: 25px;
                height: 25px;
            }

        .nt-head-actions .nt-cart-badge {
            top: -8px;
            right: -11px;
            min-width: 21px;
            height: 21px;
            font-size: 11px;
        }

        .nt-head-actions .nt-cart-label {
            font-size: 9px;
        }
}

/* PROFİL MENÜSÜ */

.nt-profile {
    position: relative;
    display: flex;
    align-items: center;
}

.nt-profile-button {
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    background: transparent;
    border: 0;
}

.nt-profile-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 205px;
    padding: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,.13);
    z-index: 99999;
}

    .nt-profile-menu[hidden] {
        display: none !important;
    }

    .nt-profile-menu a,
    .nt-profile-logout {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 12px 13px;
        border: 0;
        border-radius: 7px;
        background: transparent;
        color: #263244;
        text-align: left;
        text-decoration: none;
        font: 500 13px Arial, sans-serif;
        cursor: pointer;
    }

        .nt-profile-menu a:hover,
        .nt-profile-logout:hover {
            background: #f3f5f7;
        }

.nt-profile-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 6px 0;
}

.nt-profile-logout {
    color: #dc2626;
}

@media (max-width: 768px) {

    .nt-profile-menu {
        width: 190px;
        right: -10px;
    }
}
/* =========================================================
   NEDEN TEKSTİL - WHATSAPP DESTEK
   ========================================================= */

.nt-whatsapp-support {
    position: fixed !important;
    right: 22px !important;
    bottom: 22px !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 8px 13px 8px 8px !important;
    background: #25D366 !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 14px !important;
    text-decoration: none !important;
    box-shadow: 0 8px 28px rgba(0,0,0,.18), 0 2px 6px rgba(0,0,0,.10) !important;
    transition: transform .18s ease, box-shadow .18s ease !important;
}

    .nt-whatsapp-support:hover {
        color: #fff !important;
        text-decoration: none !important;
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(0,0,0,.22), 0 3px 8px rgba(0,0,0,.12) !important;
    }


/* WHATSAPP İKONU */

.nt-whatsapp-support-icon {
    width: 36px !important;
    height: 36px !important;
    flex: 0 0 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,.16) !important;
    border-radius: 50% !important;
    color: #fff !important;
}

    .nt-whatsapp-support-icon svg {
        display: block !important;
        width: 25px !important;
        height: 25px !important;
        fill: currentColor !important;
    }


/* YAZILAR */

.nt-whatsapp-support-text {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    color: #fff !important;
    line-height: 1.2 !important;
}

    .nt-whatsapp-support-text strong {
        display: block !important;
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
    }

    .nt-whatsapp-support-text small {
        display: block !important;
        margin-top: 3px !important;
        color: rgba(255,255,255,.90) !important;
        font-size: 10px !important;
        font-weight: 400 !important;
        white-space: nowrap !important;
    }


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 768px) {

    .nt-whatsapp-support {
        right: 10px !important;
        bottom: 12px !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 7px 11px 7px 7px !important;
        gap: 6px !important;
        border-radius: 12px !important;
    }

    .nt-whatsapp-support-icon {
        width: 34px !important;
        height: 34px !important;
        flex: 0 0 34px !important;
    }

        .nt-whatsapp-support-icon svg {
            width: 24px !important;
            height: 24px !important;
        }

    .nt-whatsapp-support-text strong {
        font-size: 11px !important;
        white-space: nowrap !important;
    }

    .nt-whatsapp-support-text small {
        font-size: 8px !important;
        white-space: nowrap !important;
    }
}