﻿@charset "UTF-8";
/* =====================================================
   ANGORA HOME - 2026 THEME
   ===================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --sand: #F5F0E8;
    --earth: #C4A882;
    --bark: #6B4F35;
    --ink: #1E1A16;
    --mist: #EDE8DF;
    --white: #FFFFFF;
    --accent: #B85C3A;
    --sage: #7A8C6E;
    --border: rgba(30,26,22,0.12);
    --font-display: 'DM Serif Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 8px;
    --radius-lg: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: #58676C;
    font-size: 15px;
    line-height: 1.6;
}

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

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

/* ─── TOP BAR ─────────────────────────────────────── */
.topbar {
    background: #58676C;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    letter-spacing: 0.03em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 40px;
}

    .topbar span + span::before {
        content: '·';
        margin: 0 10px;
        opacity: 0.4;
    }

    .topbar a {
        color: rgba(255,255,255,0.9);
        transition: color .2s;
    }

        .topbar a:hover {
            color: var(--earth);
        }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ah-social-icon {
    width: 18px;
    height: 18px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

    .ah-social-icon:hover {
        opacity: 1;
    }
/* ─── NAV ──────────────────────────────────────────── */
.nav-v2 {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

@media (max-width: 900px) {
    .nav-logo-img {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .nav-logo-img {
        height: 28px;
    }
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    font-size: 13px;
    font-weight: 400;
    color: #555;
}

    .nav-links li a {
        transition: color .2s;
    }

        .nav-links li a:hover {
            color: #58676C;
        }

    .nav-links li.active a {
        color: #58676C;
        font-weight: 500;
    }

.nav-actions {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: #666;
    align-items: center;
}

    .nav-actions a {
        transition: color .2s;
    }

        .nav-actions a:hover {
            color: #58676C;
        }

.nav-cart {
    background: #58676C;
    color: var(--white);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    transition: background .2s;
}

    .nav-cart:hover {
        background: var(--bark);
    }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    background: var(--sand);
}

.hero-text {
    padding: 64px 48px 64px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: none;
    border: none;
    border-radius: 0;
    font-size: 20px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--earth);
    padding: 0;
    margin-bottom: 32px;
    width: fit-content;
    font-family: var(--font-body);
    font-weight: 400;
}

    .hero-badge::before,
    .hero-badge::after {
        content: '';
        width: 36px;
        height: 1px;
        background: var(--earth);
        opacity: 0.7;
        flex-shrink: 0;
    }

.hero-title {
    font-family: 'Cambria Math';
    font-size: 50px;
    line-height: 1.12;
    color: #AE7A60;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

    .hero-title em {
        color: #AE7A60;
        font-style: italic;
    }

.hero-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
    max-width: 360px;
    margin-bottom: 36px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-v2 {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 35px;;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    border: 1px solid transparent;
    font-family: var(--font-body);
}

.btn-dark {
    background: #9FAE9B;
    color: var(--white);
}

    .btn-dark:hover {
        background: var(--bark);
    }

.btn-ghost {
    background: transparent;
    color: #58676C;
    border-color: var(--border);
}

    .btn-ghost:hover {
        border-color: #58676C;
    }

.btn-earth {
    background: var(--earth);
    color: var(--white);
    border-color: var(--earth);
}

    .btn-earth:hover {
        background: var(--bark);
        border-color: var(--bark);
    }

.btn-white {
    background: var(--white);
    color: #58676C;
    border-color: var(--white);
}

    .btn-white:hover {
        background: var(--sand);
    }

.hero-visual {
    position: relative;
    overflow: hidden;
    background: var(--mist);
}

    .hero-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Kategori bar kartları hero altında */
.hero-sub {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
}

.hero-sub-card {
    padding: 20px 24px;
    border-right: 1px solid var(--border);
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .hero-sub-card:last-child {
        border-right: none;
    }

    .hero-sub-card:hover {
        background: var(--sand);
    }

.hero-sub-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--mist);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.hero-sub-label {
    font-size: 13px;
    font-weight: 500;
}

.hero-sub-count {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

/* ─── TRUST BAR ─────────────────────────────────────── */
.trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border);
    background: #58676C;
    color: rgba(255,255,255,0.85);
}

.trust-item {
    padding: 16px 24px;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

    .trust-item:last-child {
        border-right: none;
    }

.trust-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.trust-text strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.trust-text span {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

/* ─── SECTION SHARED ────────────────────────────────── */
.section-v2 {
    padding: 30px 30px 75px 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bark);
    margin-bottom: 6px;
}

.section-title-v2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: #58676C;
    line-height: 1.2;
}

.section-sub {
    font-size: 14px;
    color: #888;
    margin-top: 4px;
}

.see-all {
    font-size: 13px;
    color: var(--bark);
    border-bottom: 1px solid var(--earth);
    padding-bottom: 1px;
    transition: color .2s;
}

    .see-all:hover {
        color: var(--accent);
    }

/* ─── PRODUCT CARDS ───────────────────────────────────── */
.product-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: transform .2s, box-shadow .2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(30,26,22,0.10);
    }

.product-img {
    aspect-ratio: 3/4;
    background: var(--mist);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--earth);
    font-size: 12px;
}

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.tag-new {
    background: var(--sage);
    color: #fff;
}

.tag-sale {
    background: var(--accent);
    color: #fff;
}

.tag-trend {
    background: var(--bark);
    color: #fff;
}

.product-info {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    color: #58676C;
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.product-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.product-price {
    font-size: 16px;
    font-weight: 500;
    color: #58676C;
}

.product-price-old {
    font-size: 12px;
    color: #bbb;
    text-decoration: line-through;
    margin-left: 6px;
}

.product-add {
    width: 100%;
    margin-top: auto;
    padding: 9px;
    background: var(--sand);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: #58676C;
    cursor: pointer;
    transition: background .2s;
}

    .product-add:hover {
        background: var(--earth);
        color: var(--white);
    }

/* ─── EBAT SEÇİCİ ───────────────────────────────────── */
.size-section {
    background: var(--sand);
}

.size-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-pill {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
    color: #58676C;
    font-family: var(--font-body);
}

    .size-pill:hover, .size-pill.active {
        background: #58676C;
        color: var(--white);
        border-color: #58676C;
    }

    .size-pill.special {
        border-style: dashed;
        color: var(--bark);
        border-color: var(--earth);
    }

        .size-pill.special:hover {
            background: var(--bark);
            color: var(--white);
            border-color: var(--bark);
            border-style: solid;
        }

/* ─── EDITORIAL 2'Lİ ────────────────────────────────── */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.editorial-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .editorial-card.dark {
        background: #58676C;
        border-color: transparent;
        color: rgba(255,255,255,0.8);
    }

        .editorial-card.dark .section-eyebrow {
            color: var(--earth);
        }

        .editorial-card.dark .editorial-title {
            color: var(--white);
        }

.editorial-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: #58676C;
    line-height: 1.3;
}

.editorial-desc {
    font-size: 13px;
    color: inherit;
    line-height: 1.7;
    opacity: 0.75;
}

.editorial-card .btn-v2 {
    width: fit-content;
    margin-top: 8px;
}

/* ─── FAVORİ SEKMELİ ────────────────────────────────── */
.tab-bar-v2 {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
}

.tab-v2 {
    padding: 10px 20px;
    font-size: 13px;
    cursor: pointer;
    color: #888;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all .2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--font-body);
}

    .tab-v2.active {
        color: #58676C;
        font-weight: 500;
        border-bottom-color: #58676C;
    }

    .tab-v2:hover:not(.active) {
        color: #58676C;
    }

.product-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.product-card-sm {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform .2s;
}

    .product-card-sm:hover {
        transform: translateY(-2px);
    }

    .product-card-sm .product-img {
        aspect-ratio: 3/4;
    }

    .product-card-sm .product-info {
        padding: 10px 12px;
    }

    .product-card-sm .product-name {
        font-size: 12px;
    }

    .product-card-sm .product-meta {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .product-card-sm .product-price {
        font-size: 14px;
    }

/* ─── BÜLTEN ────────────────────────────────────────── */
.newsletter {
    background: var(--sand);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    border: 1px solid var(--border);
    margin: 0 40px 64px;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 30px;
    color: #58676C;
    margin-bottom: 10px;
}

.newsletter-sub {
    font-size: 14px;
    color: #777;
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 420px;
    margin: 0 auto;
}

    .newsletter-form input {
        flex: 1;
        padding: 12px 18px;
        border-radius: var(--radius);
        border: 1px solid var(--border);
        font-family: var(--font-body);
        font-size: 13px;
        background: var(--white);
        color: #58676C;
        outline: none;
        transition: border-color .2s;
    }

        .newsletter-form input:focus {
            border-color: var(--bark);
        }

        .newsletter-form input::placeholder {
            color: #aaa;
        }

/* ─── FOOTER V2 ────────────────────────────────────── */
.footer-v2 {
    background: #58676C;
    color: rgba(255,255,255,0.6);
    padding: 48px 40px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand-desc {
    font-size: 13px;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col-title {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--earth);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 8px;
    }

        .footer-col ul li a {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            transition: color .2s;
        }

            .footer-col ul li a:hover {
                color: var(--white);
            }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.footer-social {
    display: flex;
    gap: 14px;
}

    .footer-social a {
        color: rgba(255,255,255,0.4);
        font-size: 13px;
        transition: color .2s;
    }

        .footer-social a:hover {
            color: var(--earth);
        }

/* ─── HESABIM BUTONU ─────────────────────────────── */
.nav-account-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    color: #666;
    padding: 0;
    transition: color .2s;
}

    .nav-account-btn:hover {
        color: #58676C;
    }

/* ─── HESABIM SAĞ PANELİ ─────────────────────────── */
.account-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30,26,22,0.35);
    z-index: 400;
    backdrop-filter: blur(2px);
}

    .account-overlay.open {
        display: block;
    }

.account-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: var(--white);
    z-index: 401;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 32px rgba(30,26,22,0.12);
}

    .account-panel.open {
        transform: translateX(0);
    }

body.panel-open {
    overflow: hidden;
}

.account-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border);
}

.account-panel-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.account-panel-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--mist);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #58676C;
    flex-shrink: 0;
}

.account-panel-name {
    font-size: 14px;
    font-weight: 500;
    color: #58676C;
}

.account-panel-email {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.account-panel-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mist);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    color: #58676C;
    transition: background .2s;
    flex-shrink: 0;
}

    .account-panel-close:hover {
        background: var(--border);
    }

.account-panel-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
}

.account-panel-section-title {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--earth);
    padding: 8px 20px 4px;
}

.account-panel-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    font-size: 13px;
    color: #555;
    transition: background .2s, color .2s;
}

    .account-panel-link:hover {
        background: var(--sand);
        color: #58676C;
    }

.account-panel-divider {
    border-top: 1px solid var(--border);
    margin: 8px 0;
}

.account-panel-footer {
    border-top: 1px solid var(--border);
    padding: 12px 0;
}

.account-panel-logout {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    font-size: 13px;
    color: var(--accent);
    transition: background .2s;
}

    .account-panel-logout:hover {
        background: #fff0ed;
    }

@media (max-width: 480px) {
    .account-panel {
        width: 100%;
    }
}

/* ─── SEPET DROPDOWN (V2 uyumlu) ─────────────────── */
.cart-dropdown {
    position: relative;
    display: inline-block;
}

.cart-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 340px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(30,26,22,0.15);
    padding: 20px;
    z-index: 200;
}

.cart-dropdown:hover .cart-dropdown-menu {
    display: block;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

    .cart-item:last-child {
        border-bottom: none;
    }

.cart-item-img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--mist);
    overflow: hidden;
    flex-shrink: 0;
}

    .cart-item-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.cart-item-name {
    font-size: 13px;
    font-weight: 500;
}

.cart-item-detail {
    font-size: 11px;
    color: #888;
}

.cart-item-price {
    font-size: 13px;
    font-weight: 500;
    margin-top: 2px;
}

.cart-item-remove {
    font-size: 11px;
    color: #bbb;
    cursor: pointer;
    margin-left: auto;
    align-self: center;
}

    .cart-item-remove:hover {
        color: var(--accent);
    }

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 8px;
    font-size: 14px;
    font-weight: 500;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

    .cart-actions .btn-v2 {
        text-align: center;
    }

/* ─── LOADING PLACEHOLDER ─────────────────────────── */
.product-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--earth);
    font-size: 11px;
}

/* ─── MENÜ WRAPPER SIFIRLAMA ─────────────────────── */
/* MenuYukle'den gelen tüm wrapper div'leri sıfırla,
   sadece içteki nav ul'u nav-links içinde göster     */
.nav-links {
    display: flex;
    align-items: center;
}

    .nav-links .hr-wrapper,
    .nav-links .hr-divider,
    .nav-links .container,
    .nav-links .tt-header-holder,
    .nav-links .tt-obj-menu,
    .nav-links .tt-desctop-parent-menu,
    .nav-links .tt-desctop-menu {
        all: unset;
        display: contents;
    }

    .nav-links .tt-stuck-parent-menu {
        all: unset;
        display: contents;
    }

    .nav-links .nav-ul-class {
        display: flex;
        align-items: center;
        gap: 4px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .nav-links .nav-ul-class > li > a {
            display: block;
            padding: 8px 14px;
            font-size: 13px;
            font-weight: 400;
            color: #555;
            border-radius: var(--radius);
            transition: color .2s, background .2s;
            white-space: nowrap;
        }

            .nav-links .nav-ul-class > li > a:hover,
            .nav-links .nav-ul-class > li.active > a {
                color: #58676C;
                background: var(--sand);
            }

        /* Dropdown alt menü */
        .nav-links .nav-ul-class li.dropdown {
            position: relative;
        }

            .nav-links .nav-ul-class li.dropdown .dropdown-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                background: var(--white);
                border: 1px solid var(--border);
                border-radius: var(--radius-lg);
                box-shadow: 0 12px 32px rgba(30,26,22,0.10);
                padding: 12px 0;
                min-width: 180px;
                z-index: 200;
            }

            .nav-links .nav-ul-class li.dropdown:hover .dropdown-menu {
                display: block;
            }

        .nav-links .nav-ul-class .dropdown-menu .tt-megamenu-submenu {
            list-style: none;
            margin: 0;
            padding: 0;
        }

            .nav-links .nav-ul-class .dropdown-menu .tt-megamenu-submenu li a {
                display: block;
                padding: 8px 20px;
                font-size: 13px;
                color: #555;
                transition: color .2s, background .2s;
            }

                .nav-links .nav-ul-class .dropdown-menu .tt-megamenu-submenu li a:hover {
                    color: #58676C;
                    background: var(--sand);
                }
    /* tt-col-list row sıfırlama */
    .nav-links .tt-col-list {
        margin: 0;
    }

        .nav-links .tt-col-list .col {
            padding: 0;
        }

/* ─── ARAMA DROPDOWN ─────────────────────────────── */
.nav-actions .tt-desctop-parent-search {
    position: relative;
}

.nav-actions .tt-search {
    position: relative;
}

.nav-actions .nav-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    padding: 4px 6px;
    transition: color .2s;
    line-height: 1;
}

    .nav-actions .nav-search-btn:hover {
        color: #58676C;
    }

.nav-actions .tt-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 16px);
    width: 480px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(30,26,22,0.14);
    padding: 20px 20px 8px;
    z-index: 300;
}

.nav-actions .tt-dropdown-obj.tt-dropdown-open .tt-dropdown-menu,
.nav-actions .tt-search:focus-within .tt-dropdown-menu {
    display: block;
}

.nav-actions .tt-dropdown-menu .container {
    padding: 0;
}

.nav-actions #form_arama {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
}

    .nav-actions #form_arama .tt-search-input {
        flex: 1;
        padding: 12px 16px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        font-family: var(--font-body);
        font-size: 14px;
        color: #58676C;
        outline: none;
        transition: border-color .2s;
        background: var(--sand);
    }

        .nav-actions #form_arama .tt-search-input:focus {
            border-color: var(--bark);
            background: var(--white);
        }

    .nav-actions #form_arama .tt-btn-search {
        padding: 12px 20px;
        background: #58676C;
        color: var(--white);
        border: none;
        border-radius: var(--radius);
        font-family: var(--font-body);
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        transition: background .2s;
        white-space: nowrap;
    }

        .nav-actions #form_arama .tt-btn-search:hover {
            background: var(--bark);
        }

/* Arama sonuçları listesi */
.nav-actions .search-results {
    width: 100%;
    flex-basis: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    max-height: 360px;
    overflow-y: auto;
    margin-top: -4px;
}

.nav-actions .l-urun-listesi {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-actions .l-urun-listesi-item {
    display: none; /* sistem.js gösterecek */
    border-bottom: 1px solid var(--border);
}

    .nav-actions .l-urun-listesi-item:last-child {
        border-bottom: none;
    }

.nav-actions .l-urun-listesi-item-href {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 8px;
    border-radius: var(--radius);
    transition: background .2s;
}

    .nav-actions .l-urun-listesi-item-href:hover {
        background: var(--sand);
    }

.nav-actions .thumbnail {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--mist);
}

.nav-actions .l-urun-listesi-item-resim {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.nav-actions .tt-description {
    flex: 1;
    min-width: 0;
}

.nav-actions .l-urun-listesi-item-urunadi {
    font-size: 13px;
    font-weight: 500;
    color: #58676C;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.nav-actions .l-urun-listesi-item-urunfiyat {
    font-size: 14px;
    font-weight: 500;
    color: var(--bark);
}

/* Mobil menü arama formu */
.nav-mobile-search {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-top: -21px;
}

    .nav-mobile-search .tt-search-input {
        flex: 1;
        padding: 10px 14px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        font-family: var(--font-body);
        font-size: 13px;
        color: #58676C;
        outline: none;
    }

    .nav-mobile-search .tt-btn-search {
        padding: 10px 14px;
        background: #58676C;
        color: var(--white);
        border: none;
        border-radius: var(--radius);
        font-family: var(--font-body);
        font-size: 12px;
        font-weight: 500;
        cursor: pointer;
    }

    .nav-mobile-search .search-results {
        display: none;
    }

/* ─── MOBİL SAĞ GRUP (arama + login + hamburger) ─── */
.nav-mobile-right {
    display: none;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.nav-mobile-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: #58676C;
    border-radius: var(--radius);
    transition: background .2s, color .2s;
    padding: 0;
    text-decoration: none;
}

    .nav-mobile-icon-btn:hover {
        background: var(--sand);
        color: var(--bark);
    }

/* ─── MOBİL ARAMA ÇUBUĞU ────────────────────────── */
.nav-mobile-searchbar {
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 10px 16px;
}

    .nav-mobile-searchbar.open {
        display: block;
    }

    .nav-mobile-searchbar form {
        display: flex;
        gap: 8px;
    }

    .nav-mobile-searchbar input {
        flex: 1;
        padding: 10px 14px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        font-family: var(--font-body);
        font-size: 14px;
        color: #58676C;
        background: var(--sand);
        outline: none;
        transition: border-color .2s;
    }

        .nav-mobile-searchbar input:focus {
            border-color: var(--bark);
            background: var(--white);
        }

    .nav-mobile-searchbar button {
        padding: 10px 18px;
        background: #58676C;
        color: var(--white);
        border: none;
        border-radius: var(--radius);
        font-family: var(--font-body);
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        transition: background .2s;
        white-space: nowrap;
    }

        .nav-mobile-searchbar button:hover {
            background: var(--bark);
        }

/* Mobil arama sonuçları */
.mobile-search-results {
    margin-top: 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    max-height: 320px;
    overflow-y: auto;
}

.mobile-search-results .l-urun-listesi {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-search-results .l-urun-listesi-item {
    display: none;
    border-bottom: 1px solid var(--border);
}

    .mobile-search-results .l-urun-listesi-item:last-child {
        border-bottom: none;
    }

.mobile-search-results .l-urun-listesi-item-href {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    transition: background .2s;
}

    .mobile-search-results .l-urun-listesi-item-href:hover {
        background: var(--sand);
    }

.mobile-search-results .thumbnail {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--mist);
}

.mobile-search-results .l-urun-listesi-item-resim {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mobile-search-results .tt-description {
    flex: 1;
    min-width: 0;
}

.mobile-search-results .l-urun-listesi-item-urunadi {
    font-size: 13px;
    font-weight: 500;
    color: #58676C;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.mobile-search-results .l-urun-listesi-item-urunfiyat {
    font-size: 13px;
    color: var(--bark);
    font-weight: 500;
}

/* ─── HAMBURGEr MENÜ ─────────────────────────────── */
.nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .nav-hamburger span {
        display: block;
        height: 2px;
        width: 100%;
        background: #58676C;
        border-radius: 2px;
        transition: all .25s;
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* Mobil menü overlay */
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 99;
    padding: 80px 24px 40px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

    .nav-mobile-menu.open {
        display: flex;
    }

    .nav-mobile-menu a {
        font-family: var(--font-display);
        font-size: 26px;
        color: #58676C;
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
    }

        .nav-mobile-menu a:last-child {
            border-bottom: none;
        }

        .nav-mobile-menu a:hover {
            color: var(--bark);
        }

.nav-mobile-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #58676C;
    background: none;
    border: none;
    line-height: 1;
}

.nav-mobile-actions {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

    .nav-mobile-actions a {
        font-family: var(--font-body);
        font-size: 14px;
        border: none;
        padding: 6px 0;
        color: #58676C;
    }

/* ─── RESPONSIVE: TABLET (≤900px) ───────────────── */
@media (max-width: 900px) {
    /* Topbar: orta mesajları gizle */
    .topbar {
        padding: 7px 20px;
    }

        .topbar > div:first-child span:nth-child(2),
        .topbar > div:first-child span:nth-child(3) {
            display: none;
        }

    /* Nav */
    .nav-v2 {
        padding: 0 20px;
        height: 56px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .nav-mobile-right {
        display: flex;
    }

    /* Hero */
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 260px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-text {
        padding: 40px 20px;
    }

    /* Grids */
    .hero-sub {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .editorial-grid {
        grid-template-columns: 1fr;
    }

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

    /* Spacing */
    .section-v2 {
        padding: 48px 20px;
    }

    .newsletter {
        margin: 0 20px 40px;
        padding: 32px 24px;
    }
}

/* ─── RESPONSIVE: MOBİL (≤600px) ────────────────── */
@media (max-width: 600px) {
    /* Topbar: dikey */
    .topbar {
        flex-direction: column;
        gap: 4px;
        padding: 8px 16px;
        text-align: center;
    }

    .topbar-right {
        justify-content: center;
    }

    .topbar-social {
        display: none;
    }

    /* Nav */
    .nav-v2 {
        padding: 0 16px;
    }

    /* Hero */
    .hero-title {
        font-size: 30px;
    }

    .hero-text {
        padding: 32px 16px;
    }

    .hero-visual {
        min-height: 200px;
    }

    .hero-badge {
        font-size: 9px;
        gap: 10px;
    }

        .hero-badge::before,
        .hero-badge::after {
            width: 24px;
        }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

        .hero-actions .btn-v2 {
            width: 100%;
            text-align: center;
        }

    /* Kategori bar */
    .hero-sub-card {
        padding: 14px 12px;
    }

    .hero-sub-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .hero-sub-label {
        font-size: 12px;
    }

    /* Trust */
    .trust-item {
        padding: 12px 16px;
    }

    /* Ürün gridleri */
    .product-grid-4 {
        gap: 10px;
    }

    .product-grid-5 {
        gap: 10px;
    }

    /* Size pills */
    .size-pills {
        gap: 8px;
    }

    .size-pill {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* Editorial */
    .editorial-card {
        padding: 24px 20px;
    }

    /* Newsletter */
    .newsletter {
        margin: 0 16px 40px;
        padding: 28px 16px;
    }

    .newsletter-form {
        flex-direction: column;
    }

        .newsletter-form input {
            width: 100%;
        }

    .newsletter-title {
        font-size: 24px;
    }

    /* Footer */
    .footer-v2 {
        padding: 40px 16px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    /* Sections */
    .section-v2 {
        padding: 36px 16px;
    }

    .section-title-v2 {
        font-size: 22px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ─── RESPONSIVE: KÜÇÜK MOBİL (≤480px) ──────────── */
@media (max-width: 480px) {
    .hero-sub {
        grid-template-columns: 1fr 1fr;
    }

    .trust {
        grid-template-columns: 1fr 1fr;
    }

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

    .product-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .product-grid-5 {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- KATEGORI DAIRELERI ----------------------------- */
.cat-circles {
    background: var(--white);
    padding: 40px 40px 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.cat-circles::-webkit-scrollbar {
    display: none;
}

.cat-circles-inner {
    display: flex;
    gap: 28px;
    justify-content: center;
    min-width: max-content;
}

.cat-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
}

.cat-circle-img-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: border-color .25s, transform .25s, box-shadow .25s;
    background: var(--sand);
}

.cat-circle-item:hover .cat-circle-img-wrap {
    border-color: var(--earth);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196,168,130,0.25);
}

.cat-circle-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.cat-circle-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    color: #58676C;
    text-transform: uppercase;
    transition: color .2s;
}

.cat-circle-item:hover .cat-circle-label {
    color: var(--bark);
}

@media (max-width: 768px) {
    .cat-circles {
        padding: 24px 20px 20px;
    }

    .cat-circles-inner {
        justify-content: flex-start;
        gap: 18px;
    }

    .cat-circle-img-wrap {
        width: 76px;
        height: 76px;
    }

    .cat-circle-label {
        font-size: 11px;
    }
}

/* --- EBAT RESIM GRID -------------------------------- */
.size-img-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.size-img-item {
    width: 100%;
    display: block;
    transition: transform .25s;
}

.size-img-item img {
    border-radius: var(--radius-lg);
}

.size-img-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30,26,22,0.10);
}

.size-img-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.size-img-label {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #58676C;
    transition: color .2s;
}

.size-img-item:hover .size-img-label {
    color: var(--bark);
}

@media (max-width: 900px) {
    .size-img-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .size-img-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- SAYFA GENEL ------------------------------------ */
.container-indent {
    padding-top: 48px;
    padding-bottom: 48px;
}

/* --- SOL SIDEBAR MENU ------------------------------- */
.leftColumn {
    padding-top: 4px;
}

.tt-block-aside {
    margin-top: 0 !important;
}

.tt-aside-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #58676C;
    margin: 0;
    padding: 10px 14px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: background .2s, border-color .2s, color .2s;
    display: block;
}

.tt-block-aside a {
    text-decoration: none;
    display: block;
}

.tt-block-aside a .tt-aside-title:hover,
.tt-block-aside a:hover .tt-aside-title {
    background: var(--sand);
    border-color: var(--border);
    color: var(--bark);
}

.tt-block-aside + .tt-block-aside {
    margin-top: 2px !important;
}

/* --- ICERIK METIN ALANI ----------------------------- */
.tt-listing-post .tt-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: #58676C;
}

.tt-listing-post .tt-description h4 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 24px;
}

.tt-listing-post .tt-description p {
    margin-bottom: 14px;
}

.tt-listing-post .tt-description b {
    color: var(--ink);
}

/* ─── HESABIM / UYE PAGES ────────────────────────── */

/* Sidebar nav */
.tt-collapse-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bark);
    padding: 0 0 10px 0;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--border);
}

.tt-list-row {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tt-list-row li a {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    color: #58676C;
    padding: 11px 16px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: background .18s, color .18s, border-color .18s;
    margin-bottom: 4px;
}

.tt-list-row li a:hover {
    background: var(--sand);
    color: var(--bark);
    border-color: var(--border);
}

.tt-list-row li.active a {
    background: var(--mist);
    color: var(--bark);
    border-color: var(--border);
    font-weight: 500;
}

/* Account content area */
.tt-shopping-layout {
    padding: 0;
}

.tt-wrapper.nomargin {
    margin: 0;
}

.tt-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

/* Form styling */
.form-group {
    margin-bottom: 16px;
}

.form-group.row {
    display: flex;
    align-items: center;
    gap: 0;
}

.col-form-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    padding-right: 12px;
}

.form-control {
    width: 100%;
    padding: 9px 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    transition: border-color .18s, box-shadow .18s;
}

.form-control:focus {
    border-color: var(--earth);
    box-shadow: 0 0 0 3px rgba(196,168,130,.15);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B4F35' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

/* Buttons */
.btn-border {
    display: inline-block;
    padding: 9px 22px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--bark);
    background: transparent;
    border: 1.5px solid var(--bark);
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .18s, color .18s;
    text-decoration: none;
}

.btn-border:hover {
    background: var(--bark);
    color: var(--white);
}

.btn.btn-border[type="submit"],
button.btn-border {
    cursor: pointer;
}

/* Login page */
.tt-login-form .tt-item {
    padding: 28px;
    background: var(--sand);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    height: 100%;
}

.tt-login-form .tt-item h2.tt-title {
    font-size: 18px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    letter-spacing: .05em;
}

.tt-login-form .additional-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tt-login-form .additional-links a {
    font-size: 13px;
    color: var(--bark);
    text-decoration: underline;
}

/* Order accordion */
.accordion-siparis {
    background: var(--sand) !important;
    color: var(--ink) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    padding: 13px 16px !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    transition: background .18s !important;
}

.accordion-siparis:hover {
    background: var(--mist) !important;
}

.accordion-siparis.active {
    background: var(--mist) !important;
    border-color: var(--earth) !important;
}

.panel-siparis {
    border: 1px solid var(--border) !important;
    border-top: none !important;
    border-radius: 0 0 var(--radius) var(--radius) !important;
    background: var(--white) !important;
    padding: 14px 18px !important;
}

/* Address card */
.teslimat-adres-item,
.fatura-adres-item {
    background: var(--sand);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 16px !important;
    margin-bottom: 10px;
}

/* Action buttons inside tables/cards */
.btn-air-success {
    background: var(--sage) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: var(--radius) !important;
    padding: 6px 14px !important;
    font-size: 13px !important;
    cursor: pointer;
}

.btn.delete_address {
    background: var(--accent) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: var(--radius) !important;
    padding: 6px 14px !important;
    font-size: 13px !important;
    margin-left: 4px !important;
}

/* Indirim Kuponu page */
.tt-required {
    font-size: 12px;
    color: #999;
    float: right;
    margin-top: 2px;
}

/* ─── BOOTSTRAP GRID MINIMAL SHIM ───────────────────
   Hesabim/Uye pages use Bootstrap grid classes but
   _LayoutV2 does not load Bootstrap CSS.              */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}
.row > * {
    box-sizing: border-box;
    padding-right: 12px;
    padding-left: 12px;
}
/* col-sm-* */
.col-sm-3  { flex: 0 0 25%;    max-width: 25%; }
.col-sm-6  { flex: 0 0 50%;    max-width: 50%; }
.col-sm-8  { flex: 0 0 66.666%; max-width: 66.666%; }
.col-sm-9  { flex: 0 0 75%;    max-width: 75%; }
.col-sm-12 { flex: 0 0 100%;   max-width: 100%; }
/* col-md-* */
.col-md-1  { flex: 0 0 8.333%;  max-width: 8.333%; }
.col-md-4  { flex: 0 0 33.333%; max-width: 33.333%; }
.col-md-6  { flex: 0 0 50%;     max-width: 50%; }
.col-md-8  { flex: 0 0 66.666%; max-width: 66.666%; }
.col-md-12 { flex: 0 0 100%;    max-width: 100%; }
/* col-lg-* / col-xl-* */
.col-lg-3  { flex: 0 0 25%;    max-width: 25%; }
.col-lg-9  { flex: 0 0 75%;    max-width: 75%; }
.col-xl-3  { flex: 0 0 25%;    max-width: 25%; }
.col-xl-9  { flex: 0 0 75%;    max-width: 75%; }
/* col-xs-* */
.col-xs-12 { flex: 0 0 100%;   max-width: 100%; }
/* col-auto */
.col-auto  { flex: 0 0 auto;   width: auto; }
/* utility */
.mr-auto   { margin-right: auto !important; }
.ml-auto   { margin-left:  auto !important; }
.d-flex    { display: flex !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }
.align-self-end   { align-self: flex-end !important; }
.justify-content-end { justify-content: flex-end !important; }
.bd-highlight { /* no-op helper class */ }

@media (max-width: 767px) {
    .col-sm-3, .col-sm-6, .col-sm-8, .col-sm-9,
    .col-md-4, .col-md-6, .col-md-8,
    .col-lg-3, .col-lg-9, .col-xl-3, .col-xl-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .tt-hidden-mobile { display: none !important; }
}
@media (min-width: 768px) {
    .tt-hidden-desctope { display: none !important; }
}


/* ─── FORM & TAB OVERRIDES (checkout, teslimat vb.) ─── */
.form-control { color: #1E1A16 !important; }
label, .col-form-label { color: #1E1A16 !important; }
.nav-link { color: #555 !important; }
.nav-link.active, .nav-link.show { color: #1E1A16 !important; }
.tab-content { color: #1E1A16; }
.tt-title { color: #1E1A16; }
.tt-shopping-layout, .tt-shopcart-box, .tt-shopcart-table01 { color: #1E1A16; }
.accordion-havale { color: #444; }
.panel-havale label, .panel-havale span { color: #1E1A16; }
.radio, .rd-taksit { color: #1E1A16; }
.taksit_sayisi, .taksit_tutari, .toplam_tutar { color: #1E1A16; }
.btn-primary { background: #1E1A16; border-color: #1E1A16; color: #fff; }
.btn-primary:hover { background: #6B4F35; border-color: #6B4F35; }
h3, h4, h5, h6, p, li, td, th, span { color: inherit; }


/* ─── TAB PANE FIX ─── */
.tab-pane { display: none; opacity: 1; }
.tab-pane.active, .tab-pane.active.show, .tab-pane.active.fade { display: block; opacity: 1; }


/* ─── MODAL FIX ─── */
.modal .modal-header {
    border-bottom: none;
    padding: 10px 15px;
    position: relative;
}
.modal .modal-header .close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    font-weight: 300;
    opacity: 0.6;
    background: none;
    border: none;
    cursor: pointer;
    color: #1E1A16;
    padding: 0;
    line-height: 1;
}
.modal .modal-header .close:hover { opacity: 1; }
.modal .modal-body .close {
    font-size: inherit;
    opacity: 1;
    color: inherit;
    position: static;
}
.modal-content { border-radius: 12px; overflow: hidden; }
.modal-backdrop { background-color: rgba(30,26,22,0.5); }


/* ─── MODAL DISPLAY FIX ─── */
.modal.show { display: block !important; opacity: 1 !important; }
.modal-backdrop.show { opacity: 0.5; }


/* ─── CLOSE BUTTON DOUBLE X FIX ─── */
.modal .modal-header .close::before,
.modal .modal-header .close::after { content: none !important; }
