/* =========================================================
   YENİ TEMA - MINIMAL BLACK & WHITE
   ========================================================= */

: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;
    --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.6; }

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;
}

/* ========== ANNOUNCEMENT BAR ========== */
.nt-announce {
    background: var(--renk-siyah);
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 8px 20px;
    letter-spacing: 0.5px;
}
.nt-announce a { color: white; border-bottom: 1px solid rgba(255,255,255,0.3); }

/* ========== HEADER TOP ========== */
.nt-header-top {
    border-bottom: 1px solid var(--renk-border);
    font-size: 12px;
    color: var(--renk-text2);
    background: white;
}
.nt-header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}
.nt-header-top-links { display: flex; gap: 20px; }
.nt-header-top-links a { display: inline-flex; align-items: center; gap: 6px; }

/* ========== HEADER MAIN ========== */
.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: 32px;
    padding: 20px 0;
}
.nt-logo img { max-height: 40px; width: auto; }
.nt-logo-text {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--renk-siyah);
}

.nt-search {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}
.nt-search-form {
    display: flex;
    align-items: center;
    background: var(--renk-bg);
    border-radius: 999px;
    padding: 4px 4px 4px 20px;
    transition: background 0.2s;
}
.nt-search-form:focus-within {
    background: white;
    box-shadow: 0 0 0 2px var(--renk-siyah);
}
.nt-search-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    outline: none;
}
.nt-search-btn {
    background: var(--renk-siyah);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nt-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nt-icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    color: var(--renk-text);
}
.nt-icon-btn:hover { background: var(--renk-bg); opacity: 1; }
.nt-icon-btn svg { width: 20px; height: 20px; stroke-width: 1.6; }
.nt-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--renk-siyah);
    color: white;
    font-size: 10px;
    font-weight: 600;
    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);
}
.nt-nav-inner {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.nt-nav-inner::-webkit-scrollbar { display: none; }
.nt-nav-item {
    position: relative;
    padding: 14px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--renk-text);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.nt-nav-item:hover {
    opacity: 1;
    border-bottom-color: var(--renk-siyah);
}
.nt-nav-item.active { border-bottom-color: var(--renk-siyah); }
.nt-nav-item.sale { color: var(--renk-indirim); }

/* Dropdown */
.nt-nav-item .nt-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 240px;
    padding: 16px 0;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--renk-border);
    border-top: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: all 0.2s;
    z-index: 50;
}
.nt-nav-item:hover .nt-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nt-dropdown a {
    display: block;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 400;
    color: var(--renk-text);
}
.nt-dropdown a:hover { background: var(--renk-bg); opacity: 1; }

/* ========== HERO ========== */
.nt-hero {
    padding: 32px 0;
}
.nt-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}
.nt-hero-main {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--renk-bg);
}
.nt-hero-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nt-hero-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.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); }

/* ========== CATEGORY PILLS ========== */
.nt-cat-pills {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
    padding: 16px 0 32px;
}
@media (max-width: 900px) {
    .nt-cat-pills { grid-template-columns: repeat(4, 1fr); }
}
.nt-cat-pill {
    text-align: center;
    padding: 18px 10px;
    background: var(--renk-bg);
    border-radius: var(--radius);
    transition: all 0.2s;
}
.nt-cat-pill:hover {
    background: var(--renk-siyah);
    color: white;
    opacity: 1;
    transform: translateY(-2px);
}
.nt-cat-pill img {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    object-fit: contain;
}
.nt-cat-pill-name {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========== 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: 600;
    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-text);
    border-bottom: 1px solid var(--renk-siyah);
    padding-bottom: 2px;
}

/* ========== 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-siyah);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.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; /* resmin kenarlarla teması olmasın */
}
.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: 600;
    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-siyah); 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-siyah);
    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-siyah);
    color: white;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    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: 400;
    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: 600;
    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 (Siyah) ========== */
.nt-promo {
    background: var(--renk-siyah);
    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: #ff9f7a;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.nt-promo-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 6px;
    letter-spacing: -0.5px;
}
.nt-promo-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.nt-countdown {
    display: flex;
    gap: 10px;
}
.nt-countdown-box {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    text-align: center;
    min-width: 56px;
}
.nt-countdown-num {
    font-size: 22px;
    font-weight: 600;
    display: block;
}
.nt-countdown-label {
    font-size: 9px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}
.nt-promo-btn {
    background: white;
    color: var(--renk-siyah);
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    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 - banner ve ürünler yan yana */
.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: 120px;
    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;
}

/* Mobilde banner sticky olmasın, normal akışta kalsın */
@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: 600;
    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); }
}

/* ========== DEAL GRID (2 büyük fırsat ürünü) ========== */
.nt-deals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px 0;
}
@media (max-width: 800px) { .nt-deals { grid-template-columns: 1fr; } }

.nt-deal {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--renk-bg);
}
.nt-deal img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.nt-deal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.85) 40%, transparent 70%);
    z-index: 1;
}
.nt-deal-content {
    position: relative;
    z-index: 2;
    padding: 36px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 60%;
}
.nt-deal-label {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--renk-indirim);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.nt-deal-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 8px;
    letter-spacing: -0.3px;
}
.nt-deal-price {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 16px;
}
.nt-deal-btn {
    align-self: flex-start;
    background: var(--renk-siyah);
    color: white;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ========== 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: 500;
    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-bg);
    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: 600;
    margin: 0 0 4px;
}
.nt-feature-desc {
    font-size: 12px;
    color: var(--renk-text2);
}

/* ========== NEWSLETTER ========== */
.nt-newsletter {
    background: var(--renk-bg);
    border-radius: var(--radius);
    padding: 48px 40px;
    margin: 40px 0;
    text-align: center;
}
.nt-newsletter h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}
.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-siyah); }
.nt-newsletter-form button {
    background: var(--renk-siyah);
    color: white;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ========== FOOTER ========== */
.nt-footer {
    background: var(--renk-siyah);
    color: white;
    padding: 60px 0 0;
}
.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: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 20px;
    color: white;
}
.nt-footer-about p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 16px 0;
    max-width: 360px;
}
.nt-footer-logo {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}
.nt-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nt-footer ul li {
    margin-bottom: 10px;
}
.nt-footer ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    transition: color 0.2s;
}
.nt-footer ul li a:hover {
    color: white;
    opacity: 1;
}
.nt-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.nt-footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
}
.nt-footer-social a:hover {
    background: white;
    color: var(--renk-siyah);
    opacity: 1;
}
.nt-footer-social svg { width: 15px; height: 15px; stroke-width: 1.8; }

.nt-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 16px;
}
.nt-footer-payment img { max-height: 24px; opacity: 0.6; }

/* ========== TAGS ========== */
.nt-tags {
    padding: 24px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.nt-tags-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.nt-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nt-tags-list a {
    font-size: 11px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    color: rgba(255,255,255,0.7);
    transition: all 0.2s;
}
.nt-tags-list a:hover {
    background: white;
    color: var(--renk-siyah);
    border-color: white;
    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-siyah); 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);
}
.nt-mobile-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
    .nt-mobile-toggle { display: inline-flex; }
    .nt-nav-inner { display: none; }
    .nt-header-top { display: none; }
    .nt-header-main-inner {
        grid-template-columns: auto auto 1fr auto;
        gap: 12px;
    }
    .nt-search { order: 10; grid-column: 1 / -1; }
    .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);
}

/* ========== UTILITY ========== */
.nt-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* =========================================================
   ÜRÜN DETAY SAYFASI (temaurun.php)
   ========================================================= */

/* --- Breadcrumb --- */
.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-siyah); opacity: 1; }
.nu-breadcrumb .nu-sep { color: var(--renk-text3); }
.nu-breadcrumb .nu-current { color: var(--renk-text); font-weight: 500; }

/* --- Ürün Grid --- */
/* Ürün detay sayfasında container daha dar */
.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; }
}

/* --- Galeri --- */
.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-siyah);
}
.nu-thumb:hover {
    border-color: var(--renk-text2);
}
.nu-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

/* --- Info --- */
.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: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
    color: var(--renk-text);
}

/* --- Yıldızlar --- */
.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;
}

/* --- Fiyat --- */
.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: 600;
    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: 600;
    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;
}

/* --- Kısa açıklama --- */
.nu-kisa {
    font-size: 14px;
    color: var(--renk-text2);
    line-height: 1.6;
}
.nu-kisa p { margin: 0; }

/* --- Badges --- */
.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; }

/* --- Form --- */
.nu-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 6px;
}

/* --- Variant Rows --- */
.nu-variant-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nu-variant-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--renk-text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- Color Thumbs --- */
.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-siyah); }
.nu-color-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- Select --- */
.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-siyah);
}

/* --- Chips (radio olarak) --- */
.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-siyah);
}
.nu-chip.selected span,
.nu-chip input:checked + span {
    background: var(--renk-siyah);
    color: white;
    border-color: var(--renk-siyah);
}
.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; }

/* --- Qty --- */
.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: 600;
    outline: none;
    -moz-appearance: textfield;
}
.nu-qty-input::-webkit-outer-spin-button,
.nu-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* --- Ana Butonlar --- */
.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-siyah);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.nu-btn-primary:hover {
    background: #333;
    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-siyah);
    color: white;
    border-color: var(--renk-siyah);
    opacity: 1;
}

/* --- Alternatif Satış --- */
.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;
}

/* --- Meta (etiket + paylaş) --- */
.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-siyah);
    color: white;
    border-color: var(--renk-siyah);
    opacity: 1;
}

/* =========================================================
   TAB BÖLÜMÜ
   ========================================================= */
.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-siyah);
    font-weight: 600;
    border-bottom-color: var(--renk-siyah);
}
.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: 600;
    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-text); border-bottom: 1px solid var(--renk-text); }
.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); }

/* --- Yorumlar --- */
.nu-reviews-title {
    font-size: 18px;
    font-weight: 600;
    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-siyah);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}
.nu-review-name {
    font-weight: 600;
    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-bg);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--renk-siyah);
}
.nu-reply-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.nu-reply-head strong {
    font-size: 13px;
    font-weight: 600;
}
.nu-reply-badge {
    font-size: 10px;
    background: var(--renk-siyah);
    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;
}

/* --- Yorum Formu --- */
.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-siyah);
}
.nu-review-form textarea {
    width: 100%;
    margin-bottom: 16px;
    resize: vertical;
    min-height: 100px;
}