/* =========================================================
   YENİ TEMA - MODERN LIGHT + MOR VURGU
   ========================================================= */

:root {
    --renk-siyah: #0a0a0a;
    --renk-beyaz: #ffffff;
    --renk-bg: #fafafa;
    --renk-bg2: #f4f4f4;
    --renk-border: #e8e8e8;
    --renk-text: #1a1a1a;
    --renk-text2: #6b6b6b;
    --renk-text3: #9a9a9a;
    --renk-indirim: #d62828;
    --renk-basari: #1a7a3e;
    --renk-mor: #6d28d9;
    --renk-mor-koyu: #5b21b6;
    --renk-mor-acik: #8b5cf6;
    --renk-mor-soft: #f5f3ff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 2px 12px rgba(0,0,0,0.04);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.08);
    --font: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font);
    color: var(--renk-text);
    background: var(--renk-beyaz);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.7; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.nt-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TOPBAR ========== */
.nt-topbar {
    background: #fafafa;
    border-bottom: 1px solid var(--renk-border);
    font-size: 12.5px;
    color: var(--renk-text2);
}
.nt-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 16px;
}
.nt-topbar-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--renk-text);
    max-width: 55%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.nt-topbar-left svg {
    color: var(--renk-mor);
    flex-shrink: 0;
}
.nt-topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
    white-space: nowrap;
    flex-shrink: 0;
}
.nt-topbar-right a {
    color: var(--renk-text2);
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}
.nt-topbar-right a:hover {
    color: var(--renk-mor);
    opacity: 1;
}
.nt-topbar-lang {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: var(--renk-text);
    cursor: pointer;
    white-space: nowrap;
}

/* ========== ANA HEADER ========== */
.nt-header-main {
    background: white;
    border-bottom: 1px solid var(--renk-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nt-header-main-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 18px 0;
}
.nt-header-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.nt-logo { display: inline-flex; align-items: center; }
.nt-logo img { max-height: 50px; width: auto; }
.nt-logo-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--renk-mor);
}

.nt-search {
    position: relative;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
}
.nt-search-form {
    display: flex;
    align-items: center;
    background: #f4f4f5;
    border: 1.5px solid transparent;
    border-radius: 14px;
    padding: 4px 4px 4px 20px;
    transition: all 0.2s;
}
.nt-search-form:focus-within {
    background: white;
    border-color: var(--renk-mor);
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
}
.nt-search-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 11px 0;
    font-size: 14px;
    outline: none;
    color: var(--renk-text);
}
.nt-search-form input::placeholder { color: var(--renk-text3); }
.nt-search-btn {
    background: var(--renk-mor);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}
.nt-search-btn:hover { background: var(--renk-mor-koyu); }

.nt-icons {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nt-icon-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--renk-text);
    transition: color 0.2s;
    min-width: 56px;
}
.nt-icon-btn:hover { color: var(--renk-mor); opacity: 1; }
.nt-icon-btn svg { width: 26px; height: 26px; }
.nt-icon-label {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--renk-text2);
}
.nt-icon-btn:hover .nt-icon-label { color: var(--renk-mor); }
.nt-badge {
    position: absolute;
    top: -4px;
    right: 6px;
    background: var(--renk-mor);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* ========== NAV ========== */
.nt-nav {
    background: white;
    border-bottom: 1px solid var(--renk-border);
    position: relative;
    z-index: 60;
}
.nt-nav-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0;
    overflow: visible;
}
.nt-megabtn-wrap { position: relative; }
.nt-megabtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--renk-mor-soft);
    color: var(--renk-mor);
    border: none;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    margin: 8px 0;
    transition: all 0.2s;
}
.nt-megabtn:hover,
.nt-megabtn-wrap.open .nt-megabtn {
    background: var(--renk-mor);
    color: white;
}
.nt-mega-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: white;
    min-width: 320px;
    border: 1px solid var(--renk-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 80;
}
.nt-megabtn-wrap.open .nt-mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nt-mega-item { position: relative; }
.nt-mega-main {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--renk-text);
    border-radius: 8px;
    transition: all 0.15s;
}
.nt-mega-main img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}
.nt-mega-main span { flex: 1; }
.nt-mega-arrow { color: var(--renk-text3); flex-shrink: 0; }
.nt-mega-item:hover .nt-mega-main {
    background: var(--renk-mor-soft);
    color: var(--renk-mor);
    opacity: 1;
}
.nt-mega-item:hover .nt-mega-arrow { color: var(--renk-mor); }
.nt-mega-sub {
    position: absolute;
    top: 0;
    left: calc(100% + 8px);
    background: white;
    min-width: 220px;
    border: 1px solid var(--renk-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: all 0.2s;
}
.nt-mega-item:hover .nt-mega-sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.nt-mega-sub a {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--renk-text);
    border-radius: 6px;
    transition: all 0.15s;
}
.nt-mega-sub a:hover {
    background: var(--renk-mor-soft);
    color: var(--renk-mor);
    opacity: 1;
}
.nt-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}
.nt-nav-item {
    position: relative;
    padding: 18px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--renk-text);
    white-space: nowrap;
    transition: color 0.2s;
}
.nt-nav-item:hover { color: var(--renk-mor); opacity: 1; }
.nt-nav-item.active { color: var(--renk-mor); font-weight: 600; }
.nt-deals-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fee2e2;
    color: #dc2626;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    margin: 8px 0;
}
.nt-deals-btn:hover {
    background: #dc2626;
    color: white;
    opacity: 1;
}

/* ========== HERO ========== */
.nt-hero { padding: 32px 0; }
.nt-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.nt-hero-main {
    position: relative;
    width: 100%;
    padding-bottom: 35%;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--renk-bg);
}
@media (max-width: 900px) {
    .nt-hero-main { padding-bottom: 50%; }
}
.nt-hero-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nt-hero-side { display: none !important; }
.nt-hero-small {
    flex: 1;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--renk-bg);
}
.nt-hero-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.nt-hero-small:hover img { transform: scale(1.03); }

.nt-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 60px;
    pointer-events: none;
    z-index: 4;
}
.nt-hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.75) 30%, rgba(255,255,255,0.3) 55%, transparent 70%);
    pointer-events: none;
}
.nt-hero-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
    pointer-events: auto;
}
.nt-hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--renk-mor);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.nt-hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--renk-text);
    margin: 0 0 16px;
}
.nt-hero-desc {
    font-size: 15px;
    color: var(--renk-text2);
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 400px;
}
.nt-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--renk-mor);
    color: white;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s;
}
.nt-hero-btn:hover {
    background: var(--renk-mor-koyu);
    opacity: 1;
    gap: 14px;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.3);
}

@media (max-width: 900px) {
    .nt-hero-overlay { padding: 0 30px; }
    .nt-hero-title { font-size: 28px; }
    .nt-hero-desc { font-size: 13px; }
    .nt-hero-btn { padding: 12px 24px; font-size: 12px; }
}
/* hero mobil ana kural - sona taşındı */

/* ========== CATEGORY PILLS (oval daire stil) ========== */
.nt-cat-pills {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
    padding: 16px 0 32px;
}
@media (max-width: 900px) {
    .nt-cat-pills { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}
@media (max-width: 500px) {
    .nt-cat-pills { grid-template-columns: repeat(3, 1fr); }
}
.nt-cat-pill {
    text-align: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.nt-cat-pill:hover {
    background: transparent;
    color: var(--renk-text);
    opacity: 1;
    transform: translateY(-3px);
}
.nt-cat-pill img {
    width: 100%;
    max-width: 130px;
    aspect-ratio: 1;
    height: auto;
    margin: 0;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    padding: 0;
    transition: all 0.25s;
    box-shadow: none;
}
.nt-cat-pill:hover img {
    background: transparent;
    box-shadow: none;
    transform: scale(1.06);
}
.nt-cat-pill-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--renk-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.nt-cat-pill:hover .nt-cat-pill-name {
    color: var(--renk-mor);
}

/* ========== SECTION ========== */
.nt-section { padding: 40px 0; }
.nt-section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
}
.nt-section-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
}
.nt-section-subtitle {
    font-size: 13px;
    color: var(--renk-text2);
    margin-top: 4px;
}
.nt-section-more {
    font-size: 13px;
    color: var(--renk-mor);
    border-bottom: 1px solid var(--renk-mor);
    padding-bottom: 2px;
    font-weight: 600;
}

/* ========== PRODUCT CARD ========== */
.nt-products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
@media (max-width: 1100px) { .nt-products { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px) { .nt-products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .nt-products { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.nt-product {
    position: relative;
    background: white;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.nt-product:hover {
    transform: translateY(-4px);
    border-color: var(--renk-mor);
    box-shadow: 0 8px 24px rgba(109, 40, 217, 0.12);
}
.nt-product-image {
    position: relative;
    width: 100%;
    padding-bottom: 115%;
    background: var(--renk-bg);
    overflow: hidden;
    border-radius: 0;
    border-bottom: 1px solid var(--renk-border);
}
.nt-product-image > a:first-child {
    position: absolute;
    inset: 0;
    display: block;
    padding: 12px;
}
.nt-product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.5s;
}
.nt-product:hover .nt-product-image img { transform: scale(1.05); }

.nt-product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}
.nt-badge-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nt-badge-sale { background: var(--renk-indirim); color: white; }
.nt-badge-new { background: var(--renk-mor); color: white; }
.nt-badge-hot { background: #ff6b35; color: white; }

.nt-product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
}
.nt-product:hover .nt-product-actions {
    opacity: 1;
    transform: translateX(0);
}
.nt-product-action-btn {
    width: 34px;
    height: 34px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--renk-text);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s;
}
.nt-product-action-btn:hover {
    background: var(--renk-mor);
    color: white;
    opacity: 1;
}
.nt-product-action-btn svg { width: 16px; height: 16px; stroke-width: 1.8; }

.nt-product-quick {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: var(--renk-mor);
    color: white;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 2;
}
.nt-product:hover .nt-product-quick {
    opacity: 1;
    transform: translateY(0);
}

.nt-product-info {
    padding: 14px 14px 16px;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.nt-product-brand {
    font-size: 10px;
    font-weight: 600;
    color: var(--renk-text3);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.nt-product-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--renk-text);
    margin: 0 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
    flex: 1;
}
.nt-product-title a { color: inherit; }

.nt-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--renk-border);
    margin-top: auto;
}
.nt-price-new {
    font-size: 15px;
    font-weight: 700;
    color: var(--renk-text);
}
.nt-price-sale { color: var(--renk-indirim); }
.nt-price-old {
    font-size: 12px;
    color: var(--renk-text3);
    text-decoration: line-through;
}

/* ========== PROMO BANNER ========== */
.nt-promo {
    background: var(--renk-mor);
    background: linear-gradient(135deg, var(--renk-mor) 0%, var(--renk-mor-koyu) 100%);
    color: white;
    border-radius: var(--radius);
    padding: 40px 48px;
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.nt-promo-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #fde68a;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}
.nt-promo-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: -0.5px;
}
.nt-promo-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.nt-countdown {
    display: flex;
    gap: 10px;
}
.nt-countdown-box {
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    text-align: center;
    min-width: 56px;
}
.nt-countdown-num {
    font-size: 22px;
    font-weight: 700;
    display: block;
}
.nt-countdown-label {
    font-size: 9px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}
.nt-promo-btn {
    background: white;
    color: var(--renk-mor);
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}
.nt-promo-btn:hover { transform: translateX(4px); opacity: 1; }

/* Kategori showcase */
.nt-cat-showcase {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 16px;
    padding: 40px 0;
    border-top: 1px solid var(--renk-border);
}
.nt-cat-showcase-banner {
    position: sticky;
    top: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--renk-siyah);
    display: block;
    line-height: 0;
    align-self: start;
}
.nt-cat-showcase-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}
@media (max-width: 900px) {
    .nt-cat-showcase { grid-template-columns: 1fr; }
    .nt-cat-showcase-banner { position: static; top: auto; }
}
.nt-cat-showcase-banner:hover img { transform: scale(1.05); }
.nt-cat-showcase-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}
.nt-cat-showcase-banner:hover .overlay { opacity: 1; }
.nt-cat-showcase-banner h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
}
.nt-cat-showcase-banner .more {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
    display: inline-block;
    align-self: flex-start;
}
.nt-cat-showcase-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (max-width: 900px) {
    .nt-cat-showcase-products { grid-template-columns: repeat(2, 1fr); }
}

/* ========== BRANDS ========== */
.nt-brands {
    padding: 40px 0;
    border-top: 1px solid var(--renk-border);
    border-bottom: 1px solid var(--renk-border);
}
.nt-brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: center;
}
@media (max-width: 700px) { .nt-brands-grid { grid-template-columns: repeat(3, 1fr); } }
.nt-brand {
    text-align: center;
    padding: 16px;
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.3s;
}
.nt-brand:hover { filter: grayscale(0); opacity: 1; }
.nt-brand img { max-height: 40px; margin: 0 auto; width: auto; }

/* ========== BLOG ========== */
.nt-blog {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .nt-blog { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .nt-blog { grid-template-columns: 1fr; } }

.nt-blog-item { display: block; }
.nt-blog-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--renk-bg);
    margin-bottom: 14px;
}
.nt-blog-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.nt-blog-item:hover .nt-blog-image img { transform: scale(1.05); }
.nt-blog-date {
    font-size: 11px;
    color: var(--renk-text3);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.nt-blog-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.4;
}
.nt-blog-excerpt {
    font-size: 13px;
    color: var(--renk-text2);
    line-height: 1.5;
}

/* ========== FEATURES ========== */
.nt-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px 0;
}
@media (max-width: 700px) { .nt-features { grid-template-columns: repeat(2, 1fr); } }
.nt-feature {
    text-align: center;
    padding: 20px 12px;
}
.nt-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--renk-mor-soft);
    color: var(--renk-mor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.nt-feature-icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.nt-feature-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
}
.nt-feature-desc {
    font-size: 12px;
    color: var(--renk-text2);
}

/* ========== NEWSLETTER ========== */
.nt-newsletter {
    background: var(--renk-mor-soft);
    border-radius: var(--radius);
    padding: 48px 40px;
    margin: 40px 0;
    text-align: center;
}
.nt-newsletter h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
    color: var(--renk-text);
}
.nt-newsletter p {
    color: var(--renk-text2);
    margin: 0 0 24px;
    font-size: 14px;
}
.nt-newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 8px;
}
.nt-newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--renk-border);
    border-radius: 999px;
    font-size: 14px;
    background: white;
    outline: none;
}
.nt-newsletter-form input:focus { border-color: var(--renk-mor); }
.nt-newsletter-form button {
    background: var(--renk-mor);
    color: white;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.2s;
}
.nt-newsletter-form button:hover { background: var(--renk-mor-koyu); }

/* ========== FOOTER (mor temaya uyumlu, açık zemin) ========== */
.nt-footer {
    background: #fafafa;
    color: var(--renk-text);
    padding: 60px 0 0;
    border-top: 1px solid var(--renk-border);
}
.nt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
@media (max-width: 900px) { .nt-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .nt-footer-grid { grid-template-columns: 1fr; } }
.nt-footer h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 20px;
    color: var(--renk-text);
}
.nt-footer-about p {
    font-size: 13px;
    color: var(--renk-text2);
    line-height: 1.7;
    margin: 16px 0;
    max-width: 360px;
}
.nt-footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--renk-mor);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}
.nt-footer ul { list-style: none; padding: 0; margin: 0; }
.nt-footer ul li { margin-bottom: 10px; }
.nt-footer ul li a {
    color: var(--renk-text2);
    font-size: 13px;
    transition: color 0.2s;
}
.nt-footer ul li a:hover { color: var(--renk-mor); opacity: 1; }
.nt-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.nt-footer-social a {
    width: 38px;
    height: 38px;
    background: white;
    border: 1px solid var(--renk-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--renk-text2);
    transition: all 0.2s;
}
.nt-footer-social a:hover {
    background: var(--renk-mor);
    color: white;
    border-color: var(--renk-mor);
    opacity: 1;
    transform: translateY(-2px);
}
.nt-footer-social svg { width: 15px; height: 15px; stroke-width: 1.8; }
.nt-footer-bottom {
    border-top: 1px solid var(--renk-border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--renk-text2);
    flex-wrap: wrap;
    gap: 16px;
}
.nt-footer-payment img { max-height: 24px; opacity: 0.6; }
.nt-tags {
    padding: 24px 0 32px;
    border-top: 1px solid var(--renk-border);
}
.nt-tags-label {
    font-size: 11px;
    color: var(--renk-text2);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}
.nt-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nt-tags-list a {
    font-size: 11px;
    padding: 6px 12px;
    background: white;
    border: 1px solid var(--renk-border);
    border-radius: 999px;
    color: var(--renk-text2);
    transition: all 0.2s;
}
.nt-tags-list a:hover {
    background: var(--renk-mor);
    color: white;
    border-color: var(--renk-mor);
    opacity: 1;
}

/* ========== MOBILE BOTTOM BAR ========== */
.nt-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--renk-border);
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
    z-index: 99;
    justify-content: space-around;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.04);
}
@media (max-width: 768px) {
    .nt-mobile-bar { display: flex; }
    body { padding-bottom: 72px; }
}
.nt-mobile-bar a {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: var(--renk-text);
    padding: 6px 4px;
    font-weight: 500;
}
.nt-mobile-bar svg {
    width: 20px;
    height: 20px;
    margin: 0 auto 4px;
    display: block;
    stroke-width: 1.8;
}
.nt-mobile-bar a.active { color: var(--renk-mor); font-weight: 600; }

/* ========== MOBILE MENU TOGGLE ========== */
.nt-mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--renk-text);
    background: var(--renk-bg);
    border-radius: 8px;
}
.nt-mobile-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1100px) {
    .nt-nav-links { gap: 18px; }
    .nt-nav-item { font-size: 13px; }
    .nt-icons { gap: 16px; }
}

@media (max-width: 900px) {
    .nt-mobile-toggle { display: inline-flex; }
    .nt-topbar { display: none; }
    .nt-header-main-inner {
        grid-template-columns: auto auto 1fr auto;
        gap: 12px;
        padding: 14px 0;
    }
    .nt-logo img { max-height: 38px; }
    .nt-search { order: 10; grid-column: 1 / -1; margin-top: 4px; }
    .nt-search-btn { width: 38px; height: 38px; }
    .nt-icons { gap: 10px; }
    .nt-icon-btn { min-width: auto; }
    .nt-icon-label { display: none; }
    .nt-icon-btn svg { width: 24px; height: 24px; }
    .nt-nav-inner { padding: 0; gap: 0; }
    .nt-megabtn,
    .nt-nav-links,
    .nt-deals-btn { display: none; }
    .nt-hero-grid { grid-template-columns: 1fr; }
    .nt-section-title { font-size: 20px; }
    .nt-promo { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
    .nt-promo-title { font-size: 22px; }
}

/* ========== MOBILE DRAWER ========== */
.nt-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.nt-drawer-overlay.open { opacity: 1; visibility: visible; }
.nt-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    z-index: 201;
    transition: left 0.3s;
    overflow-y: auto;
}
.nt-drawer.open { left: 0; }
.nt-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--renk-border);
}
.nt-drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nt-drawer-nav { padding: 12px 0; }
.nt-drawer-nav a {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--renk-border);
}

.nt-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ========== ÜRÜN DETAY ========== */
.nu-breadcrumb-section {
    padding: 16px 0;
    border-bottom: 1px solid var(--renk-border);
    background: white;
}
.nu-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: var(--renk-text2);
}
.nu-breadcrumb a { color: var(--renk-text2); }
.nu-breadcrumb a:hover { color: var(--renk-mor); opacity: 1; }
.nu-breadcrumb .nu-sep { color: var(--renk-text3); }
.nu-breadcrumb .nu-current { color: var(--renk-text); font-weight: 500; }

.nu-product .nt-container,
.nu-breadcrumb-section .nt-container,
.nu-tabs-section .nt-container {
    max-width: 1200px;
}

.nu-product { padding: 40px 0; }
.nu-product-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
}
@media (max-width: 900px) {
    .nu-product-grid { grid-template-columns: 1fr; gap: 32px; }
}

.nu-gallery-main {
    background: var(--renk-bg);
    border-radius: var(--radius);
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nu-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
}

.nu-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
@media (max-width: 500px) {
    .nu-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}
.nu-thumb {
    aspect-ratio: 1;
    background: var(--renk-bg);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}
.nu-thumb.active { border-color: var(--renk-mor); }
.nu-thumb:hover { border-color: var(--renk-text2); }
.nu-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.nu-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 520px;
}
.nu-sku {
    font-size: 11px;
    color: var(--renk-text3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}
.nu-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
    color: var(--renk-text);
}

.nu-ratings {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}
.nu-stars {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #e0e0e0;
    letter-spacing: 2px;
    line-height: 1;
}
.nu-stars::before { content: '★★★★★'; }
.nu-stars-fill {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    color: #ffa41c;
    white-space: nowrap;
}
.nu-stars-fill::before { content: '★★★★★'; }
.nu-review-link {
    font-size: 12px;
    color: var(--renk-text2);
    border-bottom: 1px solid var(--renk-text3);
    padding-bottom: 1px;
}

.nu-price-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--renk-border);
    border-bottom: 1px solid var(--renk-border);
    flex-wrap: wrap;
}
.nu-price-new {
    font-size: 28px;
    font-weight: 700;
    color: var(--renk-text);
    line-height: 1;
}
.nu-price-new.nu-price-sale { color: var(--renk-indirim); }
.nu-price-old {
    font-size: 15px;
    color: var(--renk-text3);
    text-decoration: line-through;
}
.nu-discount-badge {
    background: var(--renk-indirim);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.nu-havale {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-top: -8px;
}
.nu-havale-label { color: var(--renk-text2); }
.nu-havale-fiyat {
    color: var(--renk-basari);
    font-weight: 600;
}

.nu-kisa {
    font-size: 14px;
    color: var(--renk-text2);
    line-height: 1.6;
}
.nu-kisa p { margin: 0; }

.nu-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nu-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    background: var(--renk-bg);
}
.nu-badge-deal {
    background: #fff7ed;
    color: #c2410c;
    border-color: #fed7aa;
}
.nu-badge-ship {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}
.nu-badge svg { flex-shrink: 0; }

.nu-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 6px;
}

.nu-variant-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nu-variant-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--renk-text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nu-color-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.nu-color-thumb {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--renk-bg);
    border: 2px solid transparent;
    transition: border-color 0.2s;
    padding: 4px;
    display: block;
}
.nu-color-thumb:hover { border-color: var(--renk-text2); opacity: 1; }
.nu-color-thumb.active { border-color: var(--renk-mor); }
.nu-color-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nu-select {
    padding: 12px 16px;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius-sm);
    background: white;
    font-size: 14px;
    font-family: inherit;
    color: var(--renk-text);
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.nu-select:focus { border-color: var(--renk-mor); }

.nu-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nu-chip {
    position: relative;
    cursor: pointer;
}
.nu-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.nu-chip span {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius-sm);
    background: white;
    font-size: 13px;
    font-weight: 500;
    color: var(--renk-text);
    transition: all 0.2s;
    min-width: 50px;
    text-align: center;
}
.nu-chip:hover span { border-color: var(--renk-mor); }
.nu-chip.selected span,
.nu-chip input:checked + span {
    background: var(--renk-mor);
    color: white;
    border-color: var(--renk-mor);
}
.nu-chip.disabled span {
    background: var(--renk-bg);
    color: var(--renk-text3);
    cursor: not-allowed;
    text-decoration: line-through;
}
.nu-chip.disabled { pointer-events: none; }

.nu-qty-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nu-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: 140px;
}
.nu-qty-btn {
    width: 42px;
    height: 42px;
    background: white;
    font-size: 18px;
    font-weight: 400;
    color: var(--renk-text);
    transition: background 0.2s;
}
.nu-qty-btn:hover { background: var(--renk-bg); }
.nu-qty-input {
    width: 56px;
    height: 42px;
    border: none;
    border-left: 1px solid var(--renk-border);
    border-right: 1px solid var(--renk-border);
    text-align: center;
    font-size: 14px;
    font-family: inherit;
    font-weight: 700;
    outline: none;
    -moz-appearance: textfield;
}
.nu-qty-input::-webkit-outer-spin-button,
.nu-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.nu-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.nu-btn-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--renk-mor);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.nu-btn-primary:hover {
    background: var(--renk-mor-koyu);
    transform: translateY(-1px);
}
.nu-btn-primary.nu-btn-disabled {
    background: var(--renk-text3);
    cursor: not-allowed;
}
.nu-btn-primary.nu-btn-disabled:hover { transform: none; }

.nu-actions-sub {
    display: flex;
    gap: 8px;
}
.nu-btn-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--renk-text);
    transition: all 0.2s;
}
.nu-btn-icon:hover {
    background: var(--renk-mor);
    color: white;
    border-color: var(--renk-mor);
    opacity: 1;
}

.nu-alt-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.nu-btn-alt {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius-sm);
    color: var(--renk-text);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    min-width: 140px;
}
.nu-btn-alt:hover {
    background: var(--renk-bg);
    opacity: 1;
}
.nu-btn-alt.nu-btn-wa:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.nu-meta {
    padding-top: 16px;
    border-top: 1px solid var(--renk-border);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.nu-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.nu-tags-label, .nu-share-label {
    font-size: 12px;
    color: var(--renk-text2);
    font-weight: 500;
    margin-right: 6px;
}
.nu-tag {
    font-size: 11px;
    padding: 4px 10px;
    background: var(--renk-bg);
    border-radius: 999px;
    color: var(--renk-text2);
}

.nu-share {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nu-share-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--renk-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--renk-text2);
    transition: all 0.2s;
}
.nu-share-btn:hover {
    background: var(--renk-mor);
    color: white;
    border-color: var(--renk-mor);
    opacity: 1;
}

.nu-tabs-section {
    padding: 40px 0;
    border-top: 1px solid var(--renk-border);
}
.nu-tabs-nav {
    display: flex;
    gap: 32px;
    border-bottom: 1px solid var(--renk-border);
    margin-bottom: 28px;
    overflow-x: auto;
    scrollbar-width: none;
}
.nu-tabs-nav::-webkit-scrollbar { display: none; }
.nu-tab-link {
    padding: 14px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--renk-text2);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    font-family: inherit;
}
.nu-tab-link:hover { color: var(--renk-text); }
.nu-tab-link.active {
    color: var(--renk-mor);
    font-weight: 700;
    border-bottom-color: var(--renk-mor);
}
.nu-tab-pane { display: none; }
.nu-tab-pane.active { display: block; }

.nu-rich-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--renk-text);
    max-width: 900px;
}
.nu-rich-text p { margin: 0 0 14px; }
.nu-rich-text h1, .nu-rich-text h2, .nu-rich-text h3, .nu-rich-text h4 {
    font-weight: 700;
    margin: 24px 0 12px;
    letter-spacing: -0.3px;
}
.nu-rich-text h2 { font-size: 20px; }
.nu-rich-text h3 { font-size: 17px; }
.nu-rich-text h4 { font-size: 15px; }
.nu-rich-text img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 14px 0; }
.nu-rich-text ul, .nu-rich-text ol { padding-left: 20px; margin-bottom: 14px; }
.nu-rich-text li { margin-bottom: 6px; }
.nu-rich-text a { color: var(--renk-mor); border-bottom: 1px solid var(--renk-mor); }
.nu-rich-text table { width: 100%; border-collapse: collapse; margin-bottom: 14px; }
.nu-rich-text td, .nu-rich-text th { padding: 8px 12px; border: 1px solid var(--renk-border); }

.nu-reviews-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px;
}
.nu-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.nu-review {
    padding: 20px;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius);
}
.nu-review-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.nu-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nu-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--renk-mor);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.nu-review-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--renk-text);
}
.nu-review-date {
    font-size: 12px;
    color: var(--renk-text3);
}
.nu-review-body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--renk-text);
}
.nu-review-reply {
    margin-top: 14px;
    padding: 14px 16px;
    background: var(--renk-mor-soft);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--renk-mor);
}
.nu-reply-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.nu-reply-head strong {
    font-size: 13px;
    font-weight: 700;
}
.nu-reply-badge {
    font-size: 10px;
    background: var(--renk-mor);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nu-reply-body {
    font-size: 13px;
    color: var(--renk-text2);
    line-height: 1.6;
}

.nu-review-form {
    background: var(--renk-bg);
    padding: 28px;
    border-radius: var(--radius);
}
.nu-notice {
    font-size: 12px;
    color: var(--renk-text2);
    padding: 12px 16px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: var(--radius-sm);
    margin: 0 0 20px;
    line-height: 1.5;
}
.nu-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    margin-bottom: 12px;
}
@media (max-width: 600px) {
    .nu-form-row { grid-template-columns: 1fr; }
}
.nu-review-form input[type="text"],
.nu-review-form input[type="email"],
.nu-review-form select,
.nu-review-form textarea {
    padding: 12px 16px;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius-sm);
    background: white;
    font-size: 14px;
    font-family: inherit;
    color: var(--renk-text);
    outline: none;
    transition: border-color 0.2s;
}
.nu-review-form input:focus,
.nu-review-form textarea:focus,
.nu-review-form select:focus { border-color: var(--renk-mor); }
.nu-review-form textarea {
    width: 100%;
    margin-bottom: 16px;
    resize: vertical;
    min-height: 100px;
}

/* ========== KATEGORİ ========== */
.nk-header {
    padding: 24px 0 20px;
    border-bottom: 1px solid var(--renk-border);
    background: white;
}
.nk-header .nu-breadcrumb { margin-bottom: 14px; }
.nk-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.nk-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.1;
}
.nk-count {
    font-size: 13px;
    color: var(--renk-text2);
    margin-top: 4px;
}

.nk-section { padding: 28px 0 60px; }
.nk-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
}
@media (max-width: 900px) {
    .nk-layout { grid-template-columns: 1fr; gap: 16px; }
}

.nk-sidebar { position: relative; }
.nk-sidebar-inner {
    background: white;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius);
    padding: 20px;
    position: sticky;
    top: 180px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}
.nk-sidebar-inner::-webkit-scrollbar { width: 6px; }
.nk-sidebar-inner::-webkit-scrollbar-track { background: transparent; }
.nk-sidebar-inner::-webkit-scrollbar-thumb {
    background: var(--renk-border);
    border-radius: 3px;
}

.nk-sidebar-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--renk-border);
}
.nk-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
.nk-clear-link {
    font-size: 12px;
    color: var(--renk-text2);
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}
.nk-clear-link:hover {
    color: var(--renk-mor);
    opacity: 1;
}

.nk-filter-group {
    margin-bottom: 6px;
    border-bottom: 1px solid var(--renk-border);
    padding-bottom: 6px;
}
.nk-filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.nk-filter-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--renk-text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-family: inherit;
}
.nk-filter-head svg {
    transition: transform 0.2s;
    color: var(--renk-text2);
}
.nk-filter-body {
    padding: 4px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.nk-filter-body.nk-filter-scroll {
    max-height: 240px;
    overflow-y: auto;
    padding-right: 4px;
}

.nk-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px 0;
    font-size: 13px;
    color: var(--renk-text);
    transition: color 0.2s;
}
.nk-check:hover { color: var(--renk-mor); }
.nk-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.nk-check-box {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--renk-text3);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
}
.nk-check input[type="radio"] + .nk-check-box { border-radius: 50%; }
.nk-check input:checked + .nk-check-box {
    background: var(--renk-mor);
    border-color: var(--renk-mor);
}
.nk-check input[type="checkbox"]:checked + .nk-check-box::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}
.nk-check input[type="radio"]:checked + .nk-check-box::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}
.nk-check-label {
    font-size: 13px;
    line-height: 1.3;
}

.nk-mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--renk-mor);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
}
@media (max-width: 900px) {
    .nk-mobile-filter-toggle { display: inline-flex; }
    .nk-sidebar-inner {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: 100vh;
        z-index: 200;
        border-radius: 0;
        border: none;
        overflow-y: auto;
    }
    .nk-sidebar.open .nk-sidebar-inner { display: block; }
}

.nk-main { min-width: 0; }

.nk-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 0 20px;
    margin-bottom: 4px;
}
.nk-sort form {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nk-sort-label {
    font-size: 12px;
    color: var(--renk-text2);
    font-weight: 500;
    white-space: nowrap;
}
.nk-select-sort {
    padding: 10px 40px 10px 14px;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius-sm);
    background: white;
    font-size: 13px;
    font-family: inherit;
    color: var(--renk-text);
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    min-width: 200px;
}
.nk-select-sort:focus { border-color: var(--renk-mor); }

.nk-main .nt-products {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) { .nk-main .nt-products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .nk-main .nt-products { grid-template-columns: repeat(2, 1fr); } }

.nk-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--renk-bg);
    border-radius: var(--radius);
    margin: 20px 0;
}
.nk-empty svg { color: var(--renk-text3); margin-bottom: 16px; }
.nk-empty h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
}
.nk-empty p {
    font-size: 14px;
    color: var(--renk-text2);
    margin: 0;
}

.nk-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}
.nk-page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--renk-text);
    transition: all 0.2s;
}
.nk-page-btn:hover {
    border-color: var(--renk-mor);
    color: var(--renk-mor);
    opacity: 1;
}
.nk-page-btn.active {
    background: var(--renk-mor);
    color: white;
    border-color: var(--renk-mor);
    cursor: default;
}

/* ========== SAYFA ========== */
.ns-header {
    padding: 24px 0 20px;
    border-bottom: 1px solid var(--renk-border);
    background: white;
}
.ns-header .nu-breadcrumb { margin-bottom: 14px; }
.ns-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin: 0;
}
.ns-content { padding: 40px 0 60px; }
.ns-wrapper { max-width: 860px; margin: 0 auto; }
.ns-cover {
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--renk-bg);
    display: block;
}
.ns-cover img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}
.ns-cover:hover img { transform: scale(1.02); }
.ns-article {
    font-size: 15px;
    line-height: 1.8;
    color: var(--renk-text);
}
.ns-gallery {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--renk-border);
}
.ns-gallery-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0 0 20px;
}
.ns-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (max-width: 700px) { .ns-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .ns-gallery-grid { grid-template-columns: 1fr; } }
.ns-gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--renk-bg);
    display: block;
    cursor: zoom-in;
}
.ns-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.ns-gallery-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}
.ns-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}
.ns-gallery-item:hover .ns-gallery-overlay { opacity: 1; }
.ns-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    cursor: zoom-out;
}
.ns-lightbox-overlay.open { display: flex; }
.ns-lightbox-overlay img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
    cursor: default;
}
.ns-lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10000;
}
.ns-lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }

/* ========== 404 ========== */
.n404-section {
    padding: 60px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.n404-wrap {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.n404-number {
    font-family: var(--font);
    font-size: 160px;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 24px;
    letter-spacing: -4px;
    color: var(--renk-mor);
}
@media (max-width: 600px) {
    .n404-number { font-size: 110px; }
}
.n404-digit {
    display: inline-block;
    position: relative;
    line-height: 0.7;
}
.n404-digit-1 {
    perspective: 1000px;
    perspective-origin: 500% 50%;
    color: var(--renk-mor);
}
.n404-digit-1 > span {
    display: inline-block;
    transform-origin: 50% 100% 0;
    transform: rotateX(0);
    animation: n404easyoutelastic 8s infinite;
}
.n404-digit-2 { color: var(--renk-text2); }
.n404-digit-3 { color: var(--renk-mor); }
.n404-digit-3 > span {
    display: inline-block;
    transform-origin: 100% 100% 0;
    transform: rotate(0deg);
    animation: n404rotatedrop 8s infinite;
}
@keyframes n404easyoutelastic {
    0%   { transform: rotateX(0); }
    9%   { transform: rotateX(210deg); }
    13%  { transform: rotateX(150deg); }
    16%  { transform: rotateX(200deg); }
    18%  { transform: rotateX(170deg); }
    20%  { transform: rotateX(180deg); }
    60%  { transform: rotateX(180deg); }
    80%  { transform: rotateX(0); }
    100% { transform: rotateX(0); }
}
@keyframes n404rotatedrop {
    0%   { transform: rotate(0); }
    10%  { transform: rotate(30deg); }
    15%  { transform: rotate(90deg); }
    70%  { transform: rotate(90deg); }
    80%  { transform: rotate(0); }
    100% { transform: rotate(0); }
}
.n404-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 0 10px;
    color: var(--renk-text);
}
.n404-desc {
    font-size: 15px;
    color: var(--renk-text2);
    margin: 0 0 32px;
    line-height: 1.6;
}
.n404-search {
    display: flex;
    align-items: center;
    background: var(--renk-bg);
    border-radius: 999px;
    padding: 4px 4px 4px 20px;
    margin-bottom: 24px;
    transition: background 0.2s;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}
.n404-search:focus-within {
    background: white;
    box-shadow: 0 0 0 2px var(--renk-mor);
}
.n404-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 0;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    min-width: 0;
}
.n404-search button {
    background: var(--renk-mor);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.n404-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.n404-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s;
}
.n404-btn-primary {
    background: var(--renk-mor);
    color: white;
    border: 1px solid var(--renk-mor);
}
.n404-btn-primary:hover {
    background: var(--renk-mor-koyu);
    border-color: var(--renk-mor-koyu);
    opacity: 1;
    transform: translateY(-1px);
}
.n404-btn-ghost {
    background: transparent;
    color: var(--renk-text);
    border: 1px solid var(--renk-border);
}
.n404-btn-ghost:hover {
    background: var(--renk-bg);
    border-color: var(--renk-mor);
    opacity: 1;
}
.n404-suggestions {
    padding-top: 32px;
    border-top: 1px solid var(--renk-border);
}
.n404-suggestions-label {
    font-size: 12px;
    color: var(--renk-text2);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.n404-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.n404-chip {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--renk-border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--renk-text);
    transition: all 0.2s;
}
.n404-chip:hover {
    background: var(--renk-mor);
    color: white;
    border-color: var(--renk-mor);
    opacity: 1;
}

/* ========== ARAMA ========== */
.na-header {
    padding: 24px 0 28px;
    border-bottom: 1px solid var(--renk-border);
    background: white;
}
.na-header .nu-breadcrumb { margin-bottom: 20px; }
.na-search {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--renk-bg);
    border: 1px solid var(--renk-border);
    border-radius: 999px;
    padding: 0 8px 0 56px;
    max-width: 640px;
    transition: all 0.2s;
    margin-bottom: 14px;
}
.na-search:focus-within {
    background: white;
    border-color: var(--renk-mor);
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
}
.na-search-icon {
    position: absolute;
    left: 20px;
    color: var(--renk-text2);
    pointer-events: none;
}
.na-search input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 0;
    font-size: 15px;
    font-family: inherit;
    color: var(--renk-text);
    outline: none;
    min-width: 0;
}
.na-search input::placeholder { color: var(--renk-text3); }
.na-search button {
    background: var(--renk-mor);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 10px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
    flex-shrink: 0;
}
.na-search button:hover { background: var(--renk-mor-koyu); }
.na-result-info {
    font-size: 14px;
    color: var(--renk-text2);
    margin-top: 4px;
}
.na-result-info strong {
    color: var(--renk-text);
    font-weight: 700;
}
.na-products { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1200px) { .na-products { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px) { .na-products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .na-products { grid-template-columns: repeat(2, 1fr); } }
.na-empty {
    text-align: center;
    padding: 60px 20px;
    max-width: 520px;
    margin: 20px auto;
}
.na-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--renk-mor-soft);
    border-radius: 50%;
    color: var(--renk-mor);
    margin-bottom: 24px;
}
.na-empty h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0 0 8px;
}
.na-empty p {
    font-size: 15px;
    color: var(--renk-text2);
    margin: 0 0 32px;
}
.na-suggestions {
    text-align: left;
    background: var(--renk-bg);
    padding: 20px 24px;
    border-radius: var(--radius);
    margin-bottom: 32px;
}
.na-suggestions h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 10px;
}
.na-suggestions ul {
    margin: 0;
    padding-left: 20px;
    color: var(--renk-text2);
    font-size: 14px;
    line-height: 1.8;
}
.na-popular {
    padding-top: 24px;
    border-top: 1px solid var(--renk-border);
}
.na-popular-label {
    font-size: 12px;
    color: var(--renk-text2);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.na-popular-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.na-popular-chip {
    padding: 10px 18px;
    background: white;
    border: 1px solid var(--renk-border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--renk-text);
    transition: all 0.2s;
}
.na-popular-chip:hover {
    background: var(--renk-mor);
    color: white;
    border-color: var(--renk-mor);
    opacity: 1;
}

/* ========== BANKA ========== */
.nb-header {
    padding: 24px 0 28px;
    border-bottom: 1px solid var(--renk-border);
    background: white;
}
.nb-header .nu-breadcrumb { margin-bottom: 14px; }
.nb-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 0 8px;
}
.nb-subtitle {
    font-size: 14px;
    color: var(--renk-text2);
    margin: 0;
}
.nb-section { padding: 32px 0 60px; }
.nb-info-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-left: 3px solid #c2410c;
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--renk-text);
}
.nb-info-box svg {
    color: #c2410c;
    flex-shrink: 0;
    margin-top: 2px;
}
.nb-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 900px) { .nb-grid { grid-template-columns: 1fr; } }
.nb-card {
    background: white;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}
.nb-card:hover {
    border-color: var(--renk-mor);
    box-shadow: 0 4px 16px rgba(109, 40, 217, 0.08);
}
.nb-card-logo {
    background: var(--renk-bg);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--renk-border);
    min-height: 100px;
}
.nb-card-logo img {
    max-height: 40px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.nb-card-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.nb-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--renk-border);
}
.nb-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}
.nb-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--renk-text2);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    width: 120px;
    flex-shrink: 0;
}
.nb-value {
    font-size: 14px;
    color: var(--renk-text);
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
    word-break: break-word;
}
.nb-value.nb-mono {
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    letter-spacing: 0.5px;
    font-size: 13px;
}
.nb-iban-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--renk-border);
}
.nb-iban-row .nb-label { width: auto; }
.nb-iban-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--renk-bg);
    border: 1px solid var(--renk-border);
    border-radius: var(--radius-sm);
    padding: 4px 4px 4px 14px;
}
.nb-iban {
    flex: 1;
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 13px;
    color: var(--renk-text);
    letter-spacing: 0.5px;
    background: none;
    word-break: break-all;
    padding: 6px 0;
    font-weight: 700;
}
.nb-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--renk-mor);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    flex-shrink: 0;
}
.nb-copy-btn:hover { background: var(--renk-mor-koyu); }
.nb-copy-btn.copied { background: var(--renk-basari); }
.nb-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--renk-bg);
    border-radius: var(--radius);
}
.nb-empty svg { color: var(--renk-text3); margin-bottom: 16px; }
.nb-empty h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
}
.nb-empty p {
    font-size: 14px;
    color: var(--renk-text2);
    margin: 0;
}
@media (max-width: 500px) {
    .nb-row { flex-direction: column; gap: 2px; }
    .nb-label { width: auto; }
    .nb-iban-box {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px;
    }
    .nb-copy-btn { width: 100%; justify-content: center; }
}

/* ========== BLOG LİSTE ========== */
.nbl-header {
    padding: 24px 0 28px;
    border-bottom: 1px solid var(--renk-border);
    background: white;
}
.nbl-header .nu-breadcrumb { margin-bottom: 14px; }
.nbl-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 0 8px;
}
.nbl-subtitle {
    font-size: 14px;
    color: var(--renk-text2);
    margin: 0;
}
.nbl-section { padding: 40px 0 60px; }
.nbl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 20px;
}
@media (max-width: 1000px) {
    .nbl-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
    .nbl-grid { grid-template-columns: 1fr; gap: 20px; }
}
.nbl-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s;
}
.nbl-card:hover { transform: translateY(-4px); }
.nbl-card:hover .nbl-card-image img { transform: scale(1.05); }
.nbl-card-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--renk-bg);
    border-radius: var(--radius);
    margin-bottom: 16px;
    position: relative;
}
.nbl-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.nbl-card-body { padding: 0 2px; }
.nbl-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--renk-text2);
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.nbl-meta-date,
.nbl-meta-comment {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.nbl-meta-sep { color: var(--renk-text3); }
.nbl-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.2px;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nbl-card-title a { color: var(--renk-text); }
.nbl-card-title a:hover {
    color: var(--renk-mor);
    opacity: 1;
}
.nbl-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--renk-border);
    font-size: 12px;
}
.nbl-views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--renk-text2);
}
.nbl-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--renk-mor);
    font-weight: 700;
    transition: gap 0.2s;
}
.nbl-read-more:hover {
    opacity: 1;
    gap: 10px;
}
.nbl-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--renk-bg);
    border-radius: var(--radius);
}
.nbl-empty svg { color: var(--renk-text3); margin-bottom: 16px; }
.nbl-empty h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
}
.nbl-empty p {
    font-size: 14px;
    color: var(--renk-text2);
    margin: 0;
}

/* ========== BLOG DETAY ========== */
.nbd-container { max-width: 820px; }
.nbd-header {
    padding: 28px 0 32px;
    background: white;
}
.nbd-header .nu-breadcrumb { margin-bottom: 16px; }
.nbd-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--renk-text2);
    margin-bottom: 12px;
}
.nbd-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.nbd-meta-sep { color: var(--renk-text3); }
.nbd-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.15;
    margin: 0;
}
@media (max-width: 700px) { .nbd-title { font-size: 28px; } }
.nbd-section {
    padding: 0 0 60px;
    position: relative;
}
.nbd-article { position: relative; }
.nbd-share-sticky {
    position: sticky;
    top: 180px;
    float: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: calc(-1 * (820px / 2) - 40px);
    width: 60px;
    align-items: center;
    padding-top: 60px;
}
@media (max-width: 1100px) {
    .nbd-share-sticky { display: none; }
}
.nbd-share-sticky .nbd-share-label {
    font-size: 10px;
    color: var(--renk-text2);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 8px;
}
.nbd-share-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--renk-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--renk-text2);
    transition: all 0.2s;
}
.nbd-share-btn:hover {
    background: var(--renk-mor);
    color: white;
    border-color: var(--renk-mor);
    opacity: 1;
    transform: translateY(-2px);
}
.nbd-cover {
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--renk-bg);
    display: block;
    cursor: zoom-in;
}
.nbd-cover img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}
.nbd-cover:hover img { transform: scale(1.02); }
.nbd-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--renk-text);
    margin-bottom: 32px;
}
.nbd-content p { margin-bottom: 18px; }
.nbd-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 36px;
    letter-spacing: -0.4px;
}
.nbd-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 28px;
}
.nbd-tags {
    margin: 32px 0;
    padding: 16px 0;
    border-top: 1px solid var(--renk-border);
    border-bottom: 1px solid var(--renk-border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.nbd-tags-label {
    font-size: 12px;
    color: var(--renk-text2);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-right: 6px;
}
.nbd-tag {
    padding: 6px 12px;
    background: var(--renk-bg);
    border-radius: 999px;
    font-size: 12px;
    color: var(--renk-text2);
}
.nbd-share-inline {
    padding: 24px;
    background: var(--renk-mor-soft);
    border-radius: var(--radius);
    margin-bottom: 32px;
    text-align: center;
}
.nbd-share-inline .nbd-share-label {
    display: block;
    font-size: 13px;
    color: var(--renk-text2);
    margin-bottom: 12px;
    font-weight: 500;
}
.nbd-share-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.nbd-share-btn-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: white;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    color: var(--renk-text);
    transition: all 0.2s;
}
.nbd-share-btn-lg:hover {
    background: var(--renk-mor);
    color: white;
    border-color: var(--renk-mor);
    opacity: 1;
}
.nbd-share-btn-lg.nbd-share-wa:hover {
    background: #25D366;
    border-color: #25D366;
}
.nbd-pager {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 32px;
    border-top: 1px solid var(--renk-border);
}
@media (max-width: 600px) { .nbd-pager { grid-template-columns: 1fr; } }
.nbd-pager-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius);
    transition: all 0.2s;
    color: var(--renk-text);
}
.nbd-pager-link:hover {
    border-color: var(--renk-mor);
    opacity: 1;
    background: var(--renk-mor-soft);
}
.nbd-pager-next {
    text-align: right;
    justify-content: flex-end;
}
.nbd-pager-label {
    font-size: 11px;
    color: var(--renk-text2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
}
.nbd-pager-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nbd-pager svg {
    color: var(--renk-text2);
    flex-shrink: 0;
}
.nbd-comments-section {
    padding: 40px 0 60px;
    background: white;
    border-top: 1px solid var(--renk-border);
}

/* ========== FAVORİ ========== */
.nf-header {
    padding: 24px 0 28px;
    border-bottom: 1px solid var(--renk-border);
    background: white;
}
.nf-header .nu-breadcrumb { margin-bottom: 14px; }
.nf-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 0 6px;
}
.nf-title svg { color: var(--renk-indirim); }
.nf-subtitle {
    font-size: 14px;
    color: var(--renk-text2);
    margin: 0;
}
.nf-section { padding: 32px 0 60px; }
.nf-products { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .nf-products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .nf-products { grid-template-columns: repeat(2, 1fr); } }
.nf-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid var(--renk-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--renk-text2);
    z-index: 3;
    transition: all 0.2s;
    opacity: 0;
    transform: scale(0.9);
}
.nf-product:hover .nf-remove-btn {
    opacity: 1;
    transform: scale(1);
}
.nf-remove-btn:hover {
    background: var(--renk-indirim);
    color: white;
    border-color: var(--renk-indirim);
    opacity: 1;
}
@media (hover: none) {
    .nf-remove-btn { opacity: 1; transform: scale(1); }
}
.nf-features {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 8px 0;
}
.nf-feature {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.nf-feature-ship { background: #f0fdf4; color: #166534; }
.nf-feature-deal { background: #fff7ed; color: #c2410c; }
.nf-empty {
    text-align: center;
    padding: 80px 20px;
    max-width: 420px;
    margin: 0 auto;
}
.nf-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    background: var(--renk-mor-soft);
    border-radius: 50%;
    color: var(--renk-mor);
    margin-bottom: 24px;
}
.nf-empty h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0 0 8px;
}
.nf-empty p {
    font-size: 14px;
    color: var(--renk-text2);
    line-height: 1.6;
    margin: 0;
}

/* ========== KARŞILAŞTIRMA ========== */
.nc-header { padding: 24px 0 28px; border-bottom: 1px solid var(--renk-border); background: white; }
.nc-header .nu-breadcrumb { margin-bottom: 14px; }
.nc-title { font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin: 0 0 6px; }
.nc-subtitle { font-size: 14px; color: var(--renk-text2); margin: 0; }
.nc-section { padding: 32px 0 60px; }
.nc-wrap { overflow-x: auto; border: 1px solid var(--renk-border); border-radius: var(--radius); background: white; }
.nc-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.nc-table th, .nc-table td { padding: 16px; border-bottom: 1px solid var(--renk-border); border-right: 1px solid var(--renk-border); vertical-align: middle; font-size: 13px; }
.nc-table th:last-child, .nc-table td:last-child { border-right: none; }
.nc-table tr:last-child th, .nc-table tr:last-child td { border-bottom: none; }
.nc-label-cell { width: 180px; min-width: 180px; text-align: left; font-weight: 700; color: var(--renk-text); background: var(--renk-bg); font-size: 12px; letter-spacing: 0.3px; text-transform: uppercase; }
.nc-section-header { background: var(--renk-mor); color: white; font-weight: 700; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; padding: 12px 16px; text-align: left; }
.nc-product-cell { text-align: center; position: relative; padding: 20px 16px; background: white; }
.nc-product-image { display: block; aspect-ratio: 1; background: var(--renk-bg); border-radius: var(--radius-sm); overflow: hidden; margin: 0 auto 12px; max-width: 160px; }
.nc-product-image img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform 0.3s; }
.nc-product-image:hover img { transform: scale(1.05); }
.nc-product-name { display: block; font-size: 13px; font-weight: 700; color: var(--renk-text); line-height: 1.3; margin: 0 auto; max-width: 200px; }
.nc-product-name:hover { opacity: 0.7; }
.nc-remove { position: absolute; top: 10px; right: 10px; width: 28px; height: 28px; background: white; border: 1px solid var(--renk-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--renk-text2); transition: all 0.2s; z-index: 2; }
.nc-remove:hover { background: var(--renk-indirim); color: white; border-color: var(--renk-indirim); opacity: 1; }
.nc-price-cell { text-align: center; font-weight: 700; }
.nc-price-cell .nt-price-old { display: block; margin-bottom: 4px; font-size: 12px; }
.nc-price-cell .nt-price-new { display: block; font-size: 16px; }
.nc-value-cell { color: var(--renk-text); line-height: 1.5; vertical-align: top; }
.nc-value-cell.nc-long-text { max-height: 150px; overflow-y: auto; font-size: 12px; color: var(--renk-text2); }
.nc-muted { color: var(--renk-text3); font-size: 12px; }
.nc-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; padding: 4px 10px; border-radius: 999px; font-weight: 700; letter-spacing: 0.3px; }
.nc-badge-green { background: #f0fdf4; color: #166534; }
.nc-badge-orange { background: #fff7ed; color: #c2410c; }
.nc-btn-go { display: inline-flex; align-items: center; gap: 6px; background: var(--renk-mor); color: white; padding: 10px 18px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; transition: all 0.2s; }
.nc-btn-go:hover { background: var(--renk-mor-koyu); color: white; opacity: 1; gap: 10px; }
.nc-empty { text-align: center; padding: 80px 20px; max-width: 420px; margin: 0 auto; }
.nc-empty-icon { display: inline-flex; align-items: center; justify-content: center; width: 110px; height: 110px; background: var(--renk-mor-soft); border-radius: 50%; color: var(--renk-mor); margin-bottom: 24px; }
.nc-empty h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.3px; margin: 0 0 8px; }
.nc-empty p { font-size: 14px; color: var(--renk-text2); line-height: 1.6; margin: 0; }

/* ========== SEPET ========== */
.nsep-header { padding: 24px 0 28px; border-bottom: 1px solid var(--renk-border); background: white; }
.nsep-header .nu-breadcrumb { margin-bottom: 14px; }
.nsep-title { font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin: 0 0 6px; }
.nsep-subtitle { font-size: 14px; color: var(--renk-text2); margin: 0; }
.nsep-section { padding: 32px 0 60px; }
.nsep-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
@media (max-width: 900px) { .nsep-grid { grid-template-columns: 1fr; } }
.nsep-items { display: flex; flex-direction: column; gap: 12px; }
.nsep-item { display: grid; grid-template-columns: 100px 1fr auto auto auto; gap: 16px; align-items: center; padding: 16px; background: white; border: 1px solid var(--renk-border); border-radius: var(--radius); }
@media (max-width: 700px) { .nsep-item { grid-template-columns: 80px 1fr auto; grid-template-areas: "img info remove" "qty qty total"; gap: 12px; } .nsep-item-image { grid-area: img; } .nsep-item-info { grid-area: info; } .nsep-item-qty { grid-area: qty; } .nsep-item-total { grid-area: total; text-align: right; } .nsep-item-remove { grid-area: remove; } }
.nsep-item-image { width: 100px; height: 100px; background: var(--renk-bg); border-radius: var(--radius-sm); overflow: hidden; display: block; }
.nsep-item-image img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.nsep-item-info { min-width: 0; }
.nsep-item-name { font-size: 14px; font-weight: 700; color: var(--renk-text); display: block; margin-bottom: 4px; line-height: 1.3; }
.nsep-item-variant { font-size: 12px; color: var(--renk-text2); margin-bottom: 6px; }
.nsep-item-badges { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 6px; }
.nsep-item-meta { font-size: 11px; color: var(--renk-text3); display: flex; gap: 12px; flex-wrap: wrap; }
.nsep-item-meta strong { color: var(--renk-text); font-weight: 700; }
.nsep-item-qty .nsep-qty-box, .nu-qty-box.nsep-qty-box { width: 120px; }
.nsep-qty-box { display: inline-flex; align-items: center; border: 1px solid var(--renk-border); border-radius: var(--radius-sm); overflow: hidden; width: 120px; }
.nsep-qty-box .nu-qty-btn { width: 36px; height: 38px; }
.nsep-qty-box .nu-qty-input { width: 48px; height: 38px; }
.nsep-item-total-price { font-size: 16px; font-weight: 700; color: var(--renk-text); white-space: nowrap; }
.nsep-item-remove { width: 32px; height: 32px; border: 1px solid var(--renk-border); border-radius: 50%; background: white; color: var(--renk-text2); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
.nsep-item-remove:hover { background: var(--renk-indirim); color: white; border-color: var(--renk-indirim); }
.nsep-coupon { display: flex; gap: 8px; margin-top: 16px; }
.nsep-coupon input[type=text] { flex: 1; padding: 12px 16px; border: 1px solid var(--renk-border); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; outline: none; }
.nsep-coupon input[type=text]:focus { border-color: var(--renk-mor); }
.nsep-coupon button { padding: 12px 24px; background: var(--renk-mor); color: white; border: none; border-radius: var(--radius-sm); font-size: 13px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; cursor: pointer; font-family: inherit; }
.nsep-coupon button:hover { background: var(--renk-mor-koyu); }
.nsep-summary { background: white; border: 1px solid var(--renk-border); border-radius: var(--radius); padding: 20px; position: sticky; top: 180px; }
.nsep-summary-title { font-size: 16px; font-weight: 700; letter-spacing: -0.2px; margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--renk-border); }
.nsep-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 14px; color: var(--renk-text); border-bottom: 1px dashed var(--renk-border); }
.nsep-summary-row:last-of-type { border-bottom: none; }
.nsep-summary-row.nsep-discount { color: var(--renk-indirim); font-weight: 700; }
.nsep-remove-link { font-size: 10px; background: var(--renk-indirim); color: white !important; padding: 2px 8px; border-radius: 4px; margin-left: 6px; letter-spacing: 0.3px; }
.nsep-summary-total { display: flex; justify-content: space-between; align-items: center; padding: 16px 0 0; margin-top: 8px; border-top: 2px solid var(--renk-mor); font-size: 15px; font-weight: 700; }
.nsep-total-price { font-size: 22px; font-weight: 800; color: var(--renk-mor); }
.nsep-checkout-btn { display: block; width: 100%; margin-top: 16px; padding: 16px 24px; text-align: center; }
.nsep-continue { display: block; text-align: center; margin-top: 12px; font-size: 13px; color: var(--renk-text2); }
.nsep-continue:hover { color: var(--renk-mor); opacity: 1; }
.nsep-empty { text-align: center; padding: 80px 20px; max-width: 420px; margin: 0 auto; }
.nsep-empty-icon { display: inline-flex; align-items: center; justify-content: center; width: 110px; height: 110px; background: var(--renk-mor-soft); border-radius: 50%; color: var(--renk-mor); margin-bottom: 24px; }
.nsep-empty h2 { font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.nsep-empty p { font-size: 14px; color: var(--renk-text2); margin: 0; }

.nbl-card-image { position: relative; }
.nbl-campaign-badge { position: absolute; top: 12px; left: 12px; background: var(--renk-indirim); color: white; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px; letter-spacing: 1px; }
.ns-campaign-badge { display: inline-block; background: var(--renk-indirim); color: white; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px; letter-spacing: 1px; vertical-align: middle; margin-right: 8px; }

/* ========== ÜYE GİRİŞ ========== */
.nauth-section { padding: 40px 0 60px; }
.nauth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
@media (max-width: 700px) { .nauth-grid { grid-template-columns: 1fr; } }
.nauth-card { background: white; border: 1px solid var(--renk-border); border-radius: var(--radius); padding: 32px; }
.nauth-title { font-size: 22px; font-weight: 700; letter-spacing: -0.3px; margin: 0 0 6px; }
.nauth-subtitle { font-size: 13px; color: var(--renk-text2); margin: 0 0 20px; }
.nauth-field { margin-bottom: 14px; }
.nauth-field label { display: block; font-size: 12px; font-weight: 700; color: var(--renk-text); margin-bottom: 6px; letter-spacing: 0.3px; text-transform: uppercase; }
.nauth-field input { width: 100%; padding: 12px 14px; border: 1px solid var(--renk-border); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.2s; }
.nauth-field input:focus { border-color: var(--renk-mor); }
.nauth-field-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; gap: 12px; flex-wrap: wrap; }
.nauth-link { color: var(--renk-mor); border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 500; }
.nauth-link:hover { opacity: 0.7; }
.nauth-submit { width: 100%; padding: 14px 24px; }

/* ========== SİPARİŞ SORGU ========== */
.nsip-section { padding: 40px 0 60px; }
.nsip-form-card { max-width: 480px; margin: 0 auto; text-align: center; padding: 40px 32px; background: white; border: 1px solid var(--renk-border); border-radius: var(--radius); }
.nsip-form-icon { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; background: var(--renk-mor-soft); border-radius: 50%; color: var(--renk-mor); margin-bottom: 20px; }
.nsip-form-card h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.3px; margin: 0 0 6px; }
.nsip-form-card p { font-size: 14px; color: var(--renk-text2); margin: 0 0 24px; line-height: 1.6; }
.nsip-form { display: flex; gap: 8px; }
.nsip-form input { flex: 1; padding: 14px 16px; border: 1px solid var(--renk-border); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; outline: none; }
.nsip-form input:focus { border-color: var(--renk-mor); }
.nsip-form button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; background: var(--renk-mor); color: white; border: none; border-radius: var(--radius-sm); font-size: 13px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; cursor: pointer; font-family: inherit; }
.nsip-form button:hover { background: var(--renk-mor-koyu); }
.nsip-result { max-width: 900px; margin: 0 auto; }
.nsip-status-card { background: white; border: 1px solid var(--renk-border); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 20px; }
.nsip-status-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; gap: 12px; flex-wrap: wrap; }
.nsip-status-label { font-size: 11px; color: var(--renk-text2); letter-spacing: 0.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.nsip-status-no { font-size: 20px; font-weight: 800; letter-spacing: -0.3px; }
.nsip-status-badge { background: var(--renk-basari); color: white; padding: 8px 16px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.3px; }
.nsip-track { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; padding: 0 10px; }
.nsip-track-line { position: absolute; left: 40px; right: 40px; top: 20px; height: 3px; background: var(--renk-border); border-radius: 2px; z-index: 0; }
.nsip-track-fill { height: 100%; background: var(--renk-mor); border-radius: 2px; transition: width 0.5s; }
.nsip-step { position: relative; z-index: 1; text-align: center; }
.nsip-step-icon { width: 42px; height: 42px; background: white; border: 2px solid var(--renk-border); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--renk-text3); margin-bottom: 8px; transition: all 0.3s; }
.nsip-step.active .nsip-step-icon { background: var(--renk-mor); color: white; border-color: var(--renk-mor); }
.nsip-step-label { font-size: 11px; color: var(--renk-text2); letter-spacing: 0.3px; font-weight: 700; }
.nsip-step.active .nsip-step-label { color: var(--renk-text); }
@media (max-width: 600px) { .nsip-step-label { font-size: 10px; } .nsip-track-line { left: 30px; right: 30px; } }
.nsip-detail-card { background: white; border: 1px solid var(--renk-border); border-radius: var(--radius); padding: 28px; }
.nsip-detail-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--renk-border); gap: 16px; flex-wrap: wrap; }
.nsip-logo { max-height: 42px; max-width: 180px; }
.nsip-detail-label { font-size: 11px; color: var(--renk-text2); letter-spacing: 0.5px; text-transform: uppercase; font-weight: 700; }
.nsip-detail-no { font-size: 16px; font-weight: 800; }
.nsip-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--renk-border); }
.nsip-info-block h4 { font-size: 11px; font-weight: 700; color: var(--renk-text2); letter-spacing: 0.5px; text-transform: uppercase; margin: 0 0 8px; }
.nsip-info-block p { font-size: 13px; color: var(--renk-text); line-height: 1.6; margin: 0; }
.nsip-info-block strong { font-weight: 700; }
.nsip-note { background: var(--renk-mor-soft); border-left: 3px solid var(--renk-mor); padding: 12px 16px; border-radius: var(--radius-sm); margin: 16px 0; font-size: 13px; line-height: 1.6; }
.nsip-note-alert { background: #fff7ed; border-left-color: #c2410c; color: #c2410c; }
.nsip-section-title { font-size: 14px; font-weight: 800; letter-spacing: 0.3px; text-transform: uppercase; margin: 24px 0 14px; }
.nsip-table-wrap { overflow-x: auto; border: 1px solid var(--renk-border); border-radius: var(--radius-sm); }
.nsip-products-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.nsip-products-table td, .nsip-products-table th { padding: 10px 12px; border-bottom: 1px solid var(--renk-border); text-align: left; }
.nsip-products-table tr:last-child td { border-bottom: none; }
.nsip-products-table th { background: var(--renk-bg); font-weight: 700; font-size: 11px; letter-spacing: 0.3px; text-transform: uppercase; color: var(--renk-text2); }
.nsip-summary { margin-top: 20px; padding: 16px 20px; background: var(--renk-mor-soft); border-radius: var(--radius); }
.nsip-sum-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; }
.nsip-sum-row.nsep-discount { color: var(--renk-indirim); font-weight: 700; }
.nsip-sum-total { display: flex; justify-content: space-between; padding-top: 12px; margin-top: 8px; border-top: 2px solid var(--renk-mor); font-size: 16px; font-weight: 800; }
.nsip-actions { margin-top: 24px; text-align: right; }
.nsip-not-found { text-align: center; padding: 80px 20px; max-width: 420px; margin: 0 auto; }
.nsip-not-found svg { color: var(--renk-text3); margin-bottom: 16px; }
.nsip-not-found h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.nsip-not-found p { font-size: 14px; color: var(--renk-text2); margin: 0; }

@media print {
    .nauth-card, .nsep-header, .nu-breadcrumb, .nsip-actions, header, footer, .nt-footer { display: none !important; }
}

/* ========== İLETİŞİM ========== */
.nil-header { padding: 24px 0 28px; background: white; border-bottom: 1px solid var(--renk-border); }
.nil-header .nu-breadcrumb { margin-bottom: 14px; }
.nil-title { font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin: 0 0 6px; }
.nil-subtitle { font-size: 14px; color: var(--renk-text2); margin: 0; }
.nil-map { width: 100%; height: 380px; background: var(--renk-bg); overflow: hidden; }
.nil-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2); }
.nil-info-section { padding: 40px 0 20px; }
.nil-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .nil-info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .nil-info-grid { grid-template-columns: 1fr; } }
.nil-info-card { background: white; border: 1px solid var(--renk-border); border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: all 0.3s; }
.nil-info-card:hover { border-color: var(--renk-mor); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(109, 40, 217, 0.08); }
.nil-info-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: var(--renk-mor-soft); border-radius: 50%; color: var(--renk-mor); margin-bottom: 14px; }
.nil-info-card h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--renk-text2); margin: 0 0 10px; }
.nil-info-card p { font-size: 14px; color: var(--renk-text); line-height: 1.6; margin: 0; }
.nil-info-card a { color: var(--renk-text); font-weight: 500; }
.nil-info-card a:hover { color: var(--renk-mor); opacity: 1; }
.nil-social { display: flex; justify-content: center; gap: 8px; margin-top: 4px; }
.nil-social a { width: 34px; height: 34px; border: 1px solid var(--renk-border); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--renk-text2); transition: all 0.2s; }
.nil-social a:hover { background: var(--renk-mor); color: white; border-color: var(--renk-mor); opacity: 1; transform: translateY(-2px); }
.nil-form-section { padding: 40px 0 60px; }
.nil-form-wrap { max-width: 780px; margin: 0 auto; background: white; border: 1px solid var(--renk-border); border-radius: var(--radius); padding: 40px; }
@media (max-width: 700px) { .nil-form-wrap { padding: 24px; } }
.nil-form-head { text-align: center; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--renk-border); }
.nil-form-head h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.3px; margin: 0 0 8px; }
.nil-form-head p { font-size: 14px; color: var(--renk-text2); margin: 0; }
.nil-form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 700px) { .nil-form-row { grid-template-columns: 1fr; } }
.nil-form .nauth-field input, .nil-form .nauth-field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--renk-border); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.2s; }
.nil-form .nauth-field input:focus, .nil-form .nauth-field textarea:focus { border-color: var(--renk-mor); }
.nil-form textarea { resize: vertical; min-height: 120px; }
.nil-captcha-row { display: grid; grid-template-columns: 220px 1fr; gap: 12px; align-items: center; margin-bottom: 20px; }
@media (max-width: 600px) { .nil-captcha-row { grid-template-columns: 1fr; } }
.nil-captcha-box { position: relative; border: 1px solid var(--renk-border); border-radius: var(--radius-sm); overflow: hidden; display: inline-flex; height: 44px; background: var(--renk-bg); }
.nil-captcha-box img { height: 42px; display: block; }
.nil-captcha-refresh { width: 44px; height: 44px; background: var(--renk-mor); color: white; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; margin-left: auto; }
.nil-captcha-refresh:hover { background: var(--renk-mor-koyu); }
.nil-submit { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; }

.nt-footer-logo-link { display: inline-block; padding: 0; margin-bottom: 16px; }
.nt-footer-logo-img { max-height: 40px; width: auto; display: block; }

/* ========== SSS ========== */
.nsss-section { padding: 40px 0 60px; }
.nsss-wrap { max-width: 820px; margin: 0 auto; }
.nsss-item { background: white; border: 1px solid var(--renk-border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; transition: all 0.2s; }
.nsss-item[open] { border-color: var(--renk-mor); box-shadow: 0 2px 12px rgba(109, 40, 217, 0.06); }
.nsss-question { display: flex; align-items: center; gap: 14px; padding: 18px 20px; cursor: pointer; list-style: none; user-select: none; }
.nsss-question::-webkit-details-marker { display: none; }
.nsss-question:hover { background: var(--renk-mor-soft); }
.nsss-q-label { display: inline-flex; align-items: center; justify-content: center; min-width: 32px; height: 32px; padding: 0 8px; background: var(--renk-mor); color: white; border-radius: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.3px; flex-shrink: 0; }
.nsss-q-text { flex: 1; font-size: 15px; font-weight: 700; color: var(--renk-text); line-height: 1.4; }
.nsss-chevron { flex-shrink: 0; color: var(--renk-text2); transition: transform 0.3s; }
.nsss-item[open] .nsss-chevron { transform: rotate(180deg); color: var(--renk-mor); }
.nsss-answer { padding: 4px 20px 20px 66px; font-size: 14px; color: var(--renk-text2); line-height: 1.7; border-top: 1px solid var(--renk-border); margin-top: 0; padding-top: 16px; }
.nsss-answer p { margin: 0 0 10px; }
.nsss-answer p:last-child { margin-bottom: 0; }
.nsss-answer a { color: var(--renk-mor); border-bottom: 1px solid currentColor; }
.nsss-answer a:hover { opacity: 0.7; }
.nsss-answer ul, .nsss-answer ol { padding-left: 20px; margin: 10px 0; }
.nsss-answer li { margin-bottom: 6px; }
@media (max-width: 600px) {
    .nsss-question { padding: 14px 16px; gap: 12px; }
    .nsss-q-text { font-size: 14px; }
    .nsss-answer { padding: 14px 16px 16px 16px; font-size: 13px; }
}
.nsss-cta { display: flex; align-items: center; gap: 20px; padding: 24px 28px; background: var(--renk-mor-soft); border: 1px solid var(--renk-border); border-radius: var(--radius); margin-top: 30px; flex-wrap: wrap; }
.nsss-cta-icon { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: white; border-radius: 50%; color: var(--renk-mor); }
.nsss-cta-body { flex: 1; min-width: 200px; }
.nsss-cta-body h3 { font-size: 16px; font-weight: 700; margin: 0 0 4px; letter-spacing: -0.2px; }
.nsss-cta-body p { font-size: 13px; color: var(--renk-text2); margin: 0; }
.nsss-cta .nu-btn-primary { padding: 12px 24px; flex-shrink: 0; }
@media (max-width: 600px) {
    .nsss-cta { text-align: center; flex-direction: column; }
    .nsss-cta .nu-btn-primary { width: 100%; }
}

/* =========================================================
   ÇOK SATANLAR - Yeni tasarım (5 sütun, görsel referansa göre)
   ========================================================= */
.nt-bestseller-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
@media (max-width: 1100px) { .nt-bestseller-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px) { .nt-bestseller-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .nt-bestseller-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; } }

.nt-bs-card {
    position: relative;
    background: white;
    border: 1px solid var(--renk-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}
.nt-bs-card:hover {
    border-color: var(--renk-mor);
    box-shadow: 0 8px 24px rgba(109, 40, 217, 0.1);
    transform: translateY(-3px);
}

.nt-bs-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: var(--renk-bg);
    overflow: hidden;
}
.nt-bs-image > a:first-child {
    position: absolute;
    inset: 0;
    display: block;
}
.nt-bs-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.4s;
}
.nt-bs-card:hover .nt-bs-image img { transform: scale(1.05); }

.nt-bs-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--renk-indirim);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 8px;
    border-radius: 6px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.3px;
    z-index: 2;
}

.nt-bs-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: white;
    border: 1px solid var(--renk-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--renk-text2);
    z-index: 2;
    transition: all 0.2s;
}
.nt-bs-fav:hover {
    background: var(--renk-indirim);
    color: white;
    border-color: var(--renk-indirim);
    opacity: 1;
}
.nt-bs-fav svg { width: 16px; height: 16px; }

.nt-bs-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 1px solid var(--renk-border);
}

.nt-bs-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.nt-bs-stars {
    position: relative;
    display: inline-block;
    font-size: 13px;
    color: #e0e0e0;
    letter-spacing: 1px;
    line-height: 1;
}
.nt-bs-stars::before { content: '★★★★★'; }
.nt-bs-stars-fill {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    color: #ffa41c;
    white-space: nowrap;
}
.nt-bs-stars-fill::before { content: '★★★★★'; }
.nt-bs-review-count {
    font-size: 12px;
    color: var(--renk-text2);
    font-weight: 500;
}

.nt-bs-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--renk-text);
    line-height: 1.4;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
    flex: 1;
}
.nt-bs-title a { color: inherit; }
.nt-bs-title a:hover { color: var(--renk-mor); opacity: 1; }

.nt-bs-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--renk-border);
    margin-top: auto;
}
.nt-bs-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}
.nt-bs-price-new {
    font-size: 16px;
    font-weight: 700;
    color: var(--renk-text);
}
.nt-bs-price-old {
    font-size: 11px;
    color: var(--renk-text3);
    text-decoration: line-through;
}

.nt-bs-cart {
    width: 36px;
    height: 36px;
    background: var(--renk-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--renk-text);
    transition: all 0.2s;
    flex-shrink: 0;
}
.nt-bs-cart:hover {
    background: var(--renk-mor);
    color: white;
    opacity: 1;
}
.nt-bs-cart svg { width: 16px; height: 16px; }





/* ===========================================================
   RESPONSIVE OVERRIDE - mobil/tablet iyileştirmeleri
   =========================================================== */

/* Container padding mobilde daha az */
@media (max-width: 600px) {
    .nt-container { padding: 0 14px; }
}

/* TOPBAR — mobilde tamamen gizlenmesin, kargo bilgisi kalsın */
@media (max-width: 900px) {
    .nt-topbar { display: block !important; font-size: 11.5px; }
    .nt-topbar-inner { padding: 8px 0; gap: 8px; }
    .nt-topbar-left {
        max-width: 100%;
        font-size: 11.5px;
    }
    .nt-topbar-left svg { width: 14px; height: 14px; }
    .nt-topbar-right { display: none; }
}
@media (max-width: 500px) {
    .nt-topbar-left { font-size: 10.5px; gap: 6px; }
}

/* HEADER — mobilde sticky kapatma performans için */
@media (max-width: 900px) {
    .nt-header-main { position: relative; }
    .nt-header-main-inner {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }
    .nt-search { 
        order: 10; 
        grid-column: 1 / -1; 
        margin-top: 8px;
    }
    .nt-search-form { padding: 3px 3px 3px 16px; border-radius: 12px; }
    .nt-search-form input { padding: 9px 0; font-size: 13px; }
}
@media (max-width: 500px) {
    .nt-icons { gap: 6px; }
    .nt-icon-btn svg { width: 22px; height: 22px; }
    .nt-icon-btn .nt-badge { top: -6px; right: -2px; min-width: 16px; height: 16px; font-size: 9px; }
    .nt-logo img { max-height: 32px; }
}

/* HERO — mobilde daha okunabilir */
@media (max-width: 900px) {
    .nt-hero { padding: 16px 0; }
    .nt-hero-main { padding-bottom: 55%; border-radius: 8px; }
}
/* hero mobil 2 - sona taşındı */

/* ÖZELLİKLER mobilde 2x2 + küçük */
@media (max-width: 600px) {
    .nt-features { padding: 24px 0; gap: 12px; }
    .nt-feature { padding: 12px 6px; }
    .nt-feature-icon { width: 38px; height: 38px; margin-bottom: 8px; }
    .nt-feature-icon svg { width: 16px; height: 16px; }
    .nt-feature-title { font-size: 12px; }
    .nt-feature-desc { font-size: 10.5px; line-height: 1.4; }
}

/* SECTION HEAD mobilde */
@media (max-width: 600px) {
    .nt-section { padding: 24px 0; }
    .nt-section-head { margin-bottom: 16px; gap: 10px; }
    .nt-section-title { font-size: 17px !important; letter-spacing: 0 !important; }
    .nt-section-subtitle { font-size: 11px; }
    .nt-section-more { font-size: 11px; }
}

/* ÇOK SATANLAR mobilde */
@media (max-width: 600px) {
    .nt-bestseller-grid { gap: 10px; }
    .nt-bs-card { border-radius: 10px; }
    .nt-bs-image img { padding: 12px; }
    .nt-bs-badge { top: 8px; left: 8px; font-size: 9px; padding: 4px 6px; }
    .nt-bs-fav { width: 30px; height: 30px; top: 8px; right: 8px; }
    .nt-bs-fav svg { width: 14px; height: 14px; }
    .nt-bs-body { padding: 10px 10px 12px; }
    .nt-bs-stars { font-size: 11px; }
    .nt-bs-review-count { font-size: 10px; }
    .nt-bs-title { font-size: 12px; min-height: 32px; margin-bottom: 8px; }
    .nt-bs-price-new { font-size: 14px; }
    .nt-bs-price-old { font-size: 10px; }
    .nt-bs-cart { width: 32px; height: 32px; }
    .nt-bs-cart svg { width: 14px; height: 14px; }
}

/* KATEGORİ PİLLERİ mobilde */
@media (max-width: 600px) {
    .nt-cat-pills { gap: 8px; padding: 8px 0 20px; grid-template-columns: repeat(4, 1fr); }
    .nt-cat-pill img { max-width: 80px; }
    .nt-cat-pill-name { font-size: 11px; }
}
@media (max-width: 400px) {
    .nt-cat-pills { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .nt-cat-pill img { max-width: 60px; }
    .nt-cat-pill-name { font-size: 10px; }
}

/* 3'LÜ PROMO BANNER mobilde tek sütun, içerik daha okunabilir */
@media (max-width: 900px) {
    .nt-promo3-card { aspect-ratio: 16/8 !important; }
}
@media (max-width: 600px) {
    .nt-promo3-card { aspect-ratio: 16/9 !important; }
    .nt-promo3-card > div {
        padding: 16px 18px !important;
        max-width: 65% !important;
    }
    .nt-promo3-card h3 { font-size: 16px !important; margin-bottom: 4px !important; }
    .nt-promo3-card p { font-size: 11px !important; margin-bottom: 8px !important; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
    .nt-promo3-card span { padding: 6px 14px !important; font-size: 10px !important; }
}

/* GENİŞ BANNER (2'li) mobilde */
@media (max-width: 700px) {
    section a > div[style*="max-width:50%"] {
        max-width: 70% !important;
        padding: 0 5% !important;
    }
    section a > div h3 { font-size: 18px !important; margin-bottom: 6px !important; }
    section a > div p { font-size: 11px !important; margin-bottom: 10px !important; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
    section a > div span { padding: 8px 16px !important; font-size: 11px !important; }
}

/* İNDİRİM/FIRSAT bölümü mobilde */
@media (max-width: 600px) {
    .nt-section[style*="background:linear-gradient(135deg, #fef3c7"] {
        padding: 20px 12px !important;
        border-radius: 10px !important;
        margin: 12px 0 !important;
    }
    .nt-section[style*="background:linear-gradient(135deg, #fef3c7"] .nt-section-title {
        font-size: 16px !important;
    }
    .nt-section[style*="background:linear-gradient(135deg, #fef3c7"] .nt-section-subtitle {
        font-size: 11px !important;
    }
}

/* ÜRÜN KARTLARI mobilde sıkı */
@media (max-width: 600px) {
    .nt-products { gap: 10px; }
    .nt-product { border-radius: 10px; }
    .nt-product-image img { padding: 12px; }
    .nt-product-badges { top: 8px; left: 8px; gap: 4px; }
    .nt-badge-tag { font-size: 9px; padding: 3px 6px; }
    .nt-product-info { padding: 10px 10px 12px; }
    .nt-product-title { font-size: 12px; min-height: 32px; margin-bottom: 6px; }
    .nt-price-new { font-size: 13px; }
    .nt-price-old { font-size: 10px; }
    .nt-product-actions { display: none; }
    .nt-product-quick { font-size: 9px; padding: 7px; bottom: 8px; left: 8px; right: 8px; }
}

/* MÜŞTERİ YORUMLARI mobilde */
@media (max-width: 600px) {
    .nt-rev-section { padding: 40px 0; margin: 20px 0; }
    .nt-rev-head { margin-bottom: 28px; }
    .nt-rev-badge { font-size: 10px; padding: 6px 14px; margin-bottom: 10px; }
    .nt-rev-title { font-size: 22px !important; }
    .nt-rev-subtitle { font-size: 13px; }
    .nt-review-card { padding: 26px 22px 22px; border-radius: 16px; }
    .nt-rev-quote { font-size: 70px; top: 8px; right: 18px; }
    .nt-rev-text { font-size: 13px; min-height: 90px; -webkit-line-clamp: 4; line-height: 1.6; }
    .nt-rev-avatar { width: 44px; height: 44px; font-size: 16px; }
}

/* BLOG mobilde */
@media (max-width: 600px) {
    .nt-blog { gap: 14px; }
    .nt-blog-image { margin-bottom: 10px; }
    .nt-blog-date { font-size: 10px; }
    .nt-blog-title { font-size: 14px; margin-bottom: 5px; }
    .nt-blog-excerpt { font-size: 12px; }
}

/* E-BÜLTEN mobilde */
@media (max-width: 600px) {
    .nt-newsletter { padding: 28px 18px; margin: 24px 0; }
    .nt-newsletter h3 { font-size: 18px; margin-bottom: 4px; }
    .nt-newsletter p { font-size: 12px; margin-bottom: 16px; }
    .nt-newsletter-form { flex-direction: column; gap: 8px; }
    .nt-newsletter-form input { padding: 11px 18px; font-size: 13px; }
    .nt-newsletter-form button { padding: 12px; font-size: 11px; }
}

/* FOOTER mobilde */
@media (max-width: 600px) {
    .nt-footer { padding: 36px 0 0; }
    .nt-footer-grid { gap: 24px; padding-bottom: 24px; }
    .nt-footer-about { text-align: center; }
    .nt-footer-about p { max-width: 100%; margin-left: auto; margin-right: auto; font-size: 12px; }
    .nt-footer-social { justify-content: center; }
    .nt-footer h4 { font-size: 12px; margin-bottom: 14px; }
    .nt-footer ul li { margin-bottom: 8px; }
    .nt-footer ul li a { font-size: 12px; }
    .nt-footer-bottom { padding: 16px 0; flex-direction: column; gap: 10px; text-align: center; font-size: 11px; }
}



/* Mobil drawer içinde scroll */
.nt-drawer-nav {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

/* iOS safe area (alt bar için) */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
    }
}

/* Mobil ürün kartında hover etkilerini kapat (touch için) */
@media (hover: none) {
    .nt-product-actions { opacity: 1 !important; transform: none !important; }
    .nt-product-quick { display: none; }
}

/* Kaçırılmaz Fırsatlar - mobilde arka plan kaldırıldı, ürünler 4'lü */
@media (max-width: 600px) {
    .nt-section[style*="background:linear-gradient(135deg, #fef3c7"] {
        background: transparent !important;
        padding: 12px 0 !important;
        border-radius: 0 !important;
        margin: 0 !important;
    }
    .nt-section[style*="background:linear-gradient(135deg, #fef3c7"] .nt-products {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
    }
    .nt-section[style*="background:linear-gradient(135deg, #fef3c7"] .nt-product {
        border-radius: 8px;
    }
    .nt-section[style*="background:linear-gradient(135deg, #fef3c7"] .nt-product-info {
        padding: 8px 8px 10px;
    }
    .nt-section[style*="background:linear-gradient(135deg, #fef3c7"] .nt-product-title {
        font-size: 11px;
        min-height: 28px;
        margin-bottom: 4px;
        -webkit-line-clamp: 2;
    }
    .nt-section[style*="background:linear-gradient(135deg, #fef3c7"] .nt-price-new {
        font-size: 12px;
    }
    .nt-section[style*="background:linear-gradient(135deg, #fef3c7"] .nt-price-old {
        font-size: 9px;
    }
    .nt-section[style*="background:linear-gradient(135deg, #fef3c7"] .nt-product-brand {
        display: none;
    }
    .nt-section[style*="background:linear-gradient(135deg, #fef3c7"] .nt-product-image img {
        padding: 8px;
    }
    .nt-section[style*="background:linear-gradient(135deg, #fef3c7"] .nt-badge-tag {
        font-size: 8px !important;
        padding: 2px 4px !important;
    }
}

/* 5. Geniş 2'li banner mobilde yazılar masaüstü gibi (alt değil orta-sol) */
@media (max-width: 700px) {
    section a > div[style*="max-width:50%"] {
        max-width: 60% !important;
        padding: 0 6% !important;
        line-height: 1.3 !important;
    }
    section a > div[style*="max-width:50%"] h3 {
        font-size: 16px !important;
        margin-bottom: 5px !important;
        line-height: 1.15 !important;
    }
    section a > div[style*="max-width:50%"] p {
        font-size: 10px !important;
        margin-bottom: 8px !important;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    section a > div[style*="max-width:50%"] span {
        padding: 6px 14px !important;
        font-size: 10px !important;
    }
}
@media (max-width: 480px) {
    section a > div[style*="max-width:50%"] h3 { font-size: 13px !important; }
    section a > div[style*="max-width:50%"] p { font-size: 9px !important; -webkit-line-clamp: 1; }
    section a > div[style*="max-width:50%"] span { padding: 5px 11px !important; font-size: 9px !important; }
}

/* 6. Footer mobil tam düzen */
@media (max-width: 600px) {
    .nt-footer { padding: 28px 0 0; }
    .nt-footer-grid {
        gap: 0;
        padding-bottom: 16px;
        grid-template-columns: 1fr;
    }
    .nt-footer-about {
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--renk-border);
        margin-bottom: 16px;
    }
    .nt-footer-about p {
        max-width: 100%;
        margin: 12px auto;
        font-size: 12px;
        line-height: 1.6;
    }
    .nt-footer-logo-img { margin: 0 auto; }
    .nt-footer-social { justify-content: center; margin-top: 14px; }
    .nt-footer-social a { width: 34px; height: 34px; }
    .nt-footer-social svg { width: 13px; height: 13px; }
    
    /* Footer linkler accordion gibi - tıklanabilir kapanır/açılır */
    .nt-footer-grid > div:not(.nt-footer-about) {
        padding: 12px 0;
        border-bottom: 1px solid var(--renk-border);
    }
    .nt-footer-grid > div:not(.nt-footer-about) h4 {
        margin: 0 0 10px;
        font-size: 12px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nt-footer h4::after {
        content: "+";
        font-size: 18px;
        font-weight: 400;
        color: var(--renk-text2);
        transition: transform 0.2s;
    }
    .nt-footer-grid > div.nt-acc-open h4::after {
        content: "−";
    }
    .nt-footer-grid > div:not(.nt-footer-about) ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    .nt-footer-grid > div.nt-acc-open ul {
        max-height: 500px;
    }
    .nt-footer-grid > div:not(.nt-footer-about) ul li a {
        font-size: 13px;
        padding: 6px 0;
        display: block;
    }
    .nt-footer-grid > div:not(.nt-footer-about) ul li {
        margin-bottom: 0;
    }
    
    .nt-footer-bottom {
        padding: 14px 0 18px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 10.5px;
    }
    .nt-footer-payment img { max-height: 20px; }
}

/* Footer accordion JS yoksa hep açık - script eklenebilir ama default açık olsun */
@media (max-width: 600px) {
    .nt-footer-grid > div:not(.nt-footer-about) ul {
        max-height: 500px;
    }
    .nt-footer h4::after {
        display: none;
    }
}

/* Hero butonun küçük ekranlarda kaybolmasını engelle */



/* ===========================================================
   HERO MOBİL - TEK KURAL (üstteki tüm çakışmalar silindi)
   =========================================================== */
@media (max-width: 900px) {
    .nt-hero { padding: 16px 0; }
    .nt-hero-main { padding-bottom: 50%; border-radius: 8px; }
    .nt-hero-overlay { padding: 0 30px !important; align-items: center !important; }
    .nt-hero-overlay::before {
        background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.75) 30%, rgba(255,255,255,0.3) 55%, transparent 70%) !important;
    }
    .nt-hero-content { max-width: 60% !important; padding: 0 !important; align-self: center !important; }
    .nt-hero-title { font-size: 28px; margin-bottom: 12px; }
    .nt-hero-desc { font-size: 13px; margin-bottom: 18px; }
    .nt-hero-btn { padding: 12px 24px; font-size: 12px; }
}

@media (max-width: 600px) {
    .nt-hero { padding: 12px 0 !important; }
    .nt-hero-main { padding-bottom: 55% !important; }
    .nt-hero-overlay { padding: 0 18px !important; align-items: center !important; }
    .nt-hero-overlay::before {
        background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.75) 35%, rgba(255,255,255,0.3) 60%, transparent 75%) !important;
    }
    .nt-hero-content { 
        max-width: 60% !important; 
        padding: 0 !important; 
        margin: 0 !important;
        align-self: center !important;
        text-align: left !important;
    }
    .nt-hero-tag { font-size: 9px !important; letter-spacing: 1.2px !important; margin-bottom: 5px !important; }
    .nt-hero-title { font-size: 17px !important; line-height: 1.15 !important; margin-bottom: 6px !important; }
    .nt-hero-title br { display: none !important; }
    .nt-hero-desc { display: none !important; }
    .nt-hero-btn { padding: 7px 14px !important; font-size: 10px !important; gap: 5px !important; }
    .nt-hero-btn svg { width: 11px !important; height: 11px !important; }
}

@media (max-width: 380px) {
    .nt-hero-content { max-width: 65% !important; }
    .nt-hero-title { font-size: 14px !important; }
    .nt-hero-tag { font-size: 8px !important; margin-bottom: 3px !important; }
    .nt-hero-btn { padding: 6px 12px !important; font-size: 9px !important; }
}


/* ===========================================================
   KATEGORİLER MOBİL - 4'lü zorla
   =========================================================== */
@media (max-width: 600px) {
    .nt-cat-pills {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
        padding: 8px 0 20px !important;
    }
    .nt-cat-pill {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
    }
    .nt-cat-pill img {
        max-width: 70px !important;
        width: 100% !important;
        aspect-ratio: 1 !important;
    }
    .nt-cat-pill-name {
        font-size: 10.5px !important;
        white-space: normal !important;
        line-height: 1.2;
        text-align: center;
    }
}
@media (max-width: 400px) {
    .nt-cat-pills {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 6px !important;
    }
    .nt-cat-pill img { max-width: 55px !important; }
    .nt-cat-pill-name { font-size: 9.5px !important; }
}


/* ===========================================================
   FINAL FIX - minmax(0, 1fr) ile children doğal genişliği by-pass
   =========================================================== */
@media (max-width: 600px) {
    .nt-cat-pills {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 8px !important;
        padding: 8px 0 20px !important;
        width: 100% !important;
    }
    .nt-cat-pill {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    .nt-cat-pill img {
        max-width: 70px !important;
        width: 100% !important;
        height: auto !important;
    }
    .nt-cat-pill-name {
        font-size: 10.5px !important;
        white-space: normal !important;
        word-break: break-word !important;
        line-height: 1.2 !important;
        text-align: center !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .nt-bestseller-grid {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }
    .nt-bs-card {
        min-width: 0 !important;
        overflow: hidden !important;
    }
    .nt-bs-title {
        white-space: normal !important;
        font-size: 10px !important;
    }

    .nt-section[style*="fef3c7"] {
        background: transparent !important;
        padding: 12px 0 !important;
        border-radius: 0 !important;
        margin: 0 !important;
    }
    .nt-section[style*="fef3c7"] .nt-products {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }
    .nt-section[style*="fef3c7"] .nt-product {
        min-width: 0 !important;
        overflow: hidden !important;
    }
    .nt-section[style*="fef3c7"] .nt-product-title {
        font-size: 10px !important;
        white-space: normal !important;
    }
    .nt-section[style*="fef3c7"] .nt-product-brand {
        display: none !important;
    }

    /* Genel ürün grid'i de minmax */
    .nt-products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .nt-product {
        min-width: 0 !important;
    }
}

@media (max-width: 400px) {
    .nt-cat-pill img { max-width: 55px !important; }
    .nt-cat-pill-name { font-size: 9.5px !important; }
}

/* Blog resim oturma düzeltmesi */
.nt-blog-image {
    padding-bottom: 60% !important; /* daha geniş oran */
    background: #faf5ff !important; /* boşluğa hafif mor */
}
.nt-blog-image img {
    object-fit: contain !important; /* tam görünsün, kesilmesin */
    padding: 12px;
}