/* =================================================================
   ANTİK MARKET — Tema Tasarım Sistemi
   "Editoryal / Müzayede" estetiği — modern düzen + vintage sıcaklık
   ================================================================= */

/* ---------- 1. Tokenlar ---------- */
:root {
    /* Kağıt & yüzeyler */
    --paper:        #F6F1E8;   /* sıcak krem zemin */
    --paper-card:   #FCFAF5;   /* kart yüzeyi */
    --paper-deep:   #EDE4D4;   /* alternatif bölüm */
    --paper-ink:    #211B19;   /* koyu vintage zemin (footer/hero) */

    /* Mürekkep / metin */
    --ink:          #221B19;
    --ink-2:        #5B524B;
    --ink-3:        #8B8075;
    --on-dark:      #F4EEE3;
    --on-dark-2:    #C6BBA8;

    /* Marka */
    --brand:        #C8102E;   /* rafine kırmızı (eski #dc000d'den) */
    --brand-deep:   #9E0C22;
    --brand-tint:   #FBEAEC;

    /* Pirinç / altın vintage vurgu */
    --brass:        #B08D57;
    --brass-deep:   #8A6E42;
    --brass-tint:   #F3EBDC;

    /* Çizgiler */
    --line:         #E2D8C6;
    --line-2:       #D0C3AC;

    /* Durum */
    --ok:           #5E6B39;
    --ok-tint:      #EEF0E2;

    /* Tipografi */
    --serif: "Fraunces", "Playfair Display", Georgia, serif;
    --sans:  "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

    /* Ölçü */
    --r-sm: 4px;
    --r:    8px;
    --r-lg: 14px;
    --maxw: 1280px;
    --gutter: clamp(16px, 4vw, 40px);

    /* Gölge (sıcak tonlu) */
    --shadow-sm: 0 1px 2px rgba(58,42,28,.06), 0 2px 6px rgba(58,42,28,.05);
    --shadow:    0 10px 30px -14px rgba(58,42,28,.28);
    --shadow-lg: 0 24px 60px -24px rgba(58,42,28,.38);

    --ease: cubic-bezier(.21,.6,.35,1);
}

/* ---------- 2. Reset & taban ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--paper);
    /* ince kağıt dokusu */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

::selection { background: var(--brand); color: #fff; }

/* ---------- 3. Tipografi ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }

.eyebrow {
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--brass-deep);
    display: inline-flex;
    align-items: center;
    gap: .6em;
}
.eyebrow::before {
    content: "";
    width: 26px; height: 1px;
    background: var(--brass);
}

/* ---------- 4. Yerleşim ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(40px, 6vw, 80px); }
.section--tight { padding-block: clamp(28px, 4vw, 48px); }

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.section-head .titles { max-width: 60ch; }
.section-head h2 { margin-top: 10px; }
.section-head .link-more {
    font-weight: 600; font-size: .92rem; color: var(--brand);
    display: inline-flex; align-items: center; gap: .4em;
    border-bottom: 1px solid transparent; padding-bottom: 2px;
    transition: border-color .25s var(--ease), gap .25s var(--ease);
    white-space: nowrap;
}
.section-head .link-more:hover { border-color: var(--brand); gap: .7em; }

/* ---------- 5. Butonlar ---------- */
.btn {
    --bg: var(--brand); --fg: #fff; --bd: var(--brand);
    display: inline-flex; align-items: center; justify-content: center; gap: .55em;
    font-weight: 700; font-size: .9rem; letter-spacing: .02em;
    padding: .82em 1.5em;
    background: var(--bg); color: var(--fg);
    border: 1.5px solid var(--bd);
    border-radius: var(--r-sm);
    transition: transform .2s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
    text-align: center;
}
.btn:hover { background: var(--brand-deep); border-color: var(--brand-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--line-2); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--on-dark); border-color: var(--ink); }
.btn--dark { --bg: var(--ink); --fg: var(--on-dark); --bd: var(--ink); }
.btn--dark:hover { background:#000; border-color:#000; }
.btn--block { width: 100%; }
.btn--sm { padding: .58em 1em; font-size: .82rem; }

/* ---------- 6. Üst duyuru çubuğu ---------- */
.announce {
    background: var(--ink); color: var(--on-dark);
    font-size: .82rem; letter-spacing: .02em;
    text-align: center;
}
.announce .container { display: flex; align-items: center; justify-content: center; gap: 1em; min-height: 40px; position: relative; }
.announce strong { color: #fff; }
.announce .brass { color: var(--brass); font-weight: 700; }
.announce .close { position: absolute; right: var(--gutter); opacity: .6; font-size: 1rem; }
.announce .close:hover { opacity: 1; }

/* ---------- 7. Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--paper-card); border-bottom: 1px solid var(--line); }
.header-util { border-bottom: 1px solid var(--line); font-size: .8rem; color: var(--ink-2); }
.header-util .container { display: flex; align-items: center; justify-content: space-between; min-height: 36px; }
.header-util a { color: var(--ink-2); transition: color .2s; display: inline-flex; align-items: center; gap: .45em; }
.header-util a:hover { color: var(--brand); }
.header-util .util-left { display: flex; gap: 1.5em; }
.header-util .util-right { display: flex; gap: 1.1em; align-items: center; }

.header-main .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(16px, 3vw, 48px);
    min-height: 84px;
}
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { max-height: 46px; width: auto; }
.brand-logo .wordmark { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; letter-spacing: -.02em; }
.brand-logo .wordmark b { color: var(--brand); }
.brand-logo .wordmark span { color: var(--ink-3); font-size: .8rem; font-weight: 600; vertical-align: super; letter-spacing: 0; }

/* arama */
.search-form { position: relative; width: 100%; max-width: 560px; justify-self: center; }
.search-form input {
    width: 100%; padding: .8em 3.2em .8em 1.2em;
    background: var(--paper); border: 1.5px solid var(--line-2); border-radius: 100px;
    font-size: .95rem; transition: border-color .2s, box-shadow .2s;
}
.search-form input::placeholder { color: var(--ink-3); }
.search-form input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-tint); }
.search-form .search-btn {
    position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--brand); color: #fff; display: grid; place-items: center;
    transition: background .2s;
}
.search-form .search-btn:hover { background: var(--brand-deep); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-action {
    display: inline-flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 8px 12px; border-radius: var(--r); color: var(--ink);
    font-size: .72rem; font-weight: 600; position: relative; transition: background .2s, color .2s;
}
.icon-action:hover { background: var(--paper-deep); color: var(--brand); }
.icon-action svg { width: 22px; height: 22px; }
.icon-action .badge {
    position: absolute; top: 2px; right: 6px;
    background: var(--brand); color: #fff; font-size: .62rem; font-weight: 700;
    min-width: 17px; height: 17px; padding: 0 4px; border-radius: 100px;
    display: grid; place-items: center; line-height: 1;
}

/* ana menü */
.nav-main { border-top: 1px solid var(--line); }
.nav-main .container { display: flex; align-items: center; gap: 4px; }
.nav-main ul { display: flex; flex-wrap: wrap; }
.nav-main a {
    display: inline-block; padding: 14px 18px; font-weight: 600; font-size: .92rem;
    color: var(--ink); position: relative; transition: color .2s;
}
.nav-main a::after {
    content: ""; position: absolute; left: 18px; right: 18px; bottom: 8px; height: 2px;
    background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav-main a:hover { color: var(--brand); }
.nav-main a:hover::after { transform: scaleX(1); }
.nav-main .nav-sale a { color: var(--brand); }
.nav-main .nav-sale a::before { content: "●"; font-size: .5em; vertical-align: middle; margin-right: .5em; }

/* ---------- 8. Hero ---------- */
.hero { padding-top: clamp(20px, 3vw, 36px); }
.hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; --hero-h: clamp(380px, 40vw, 540px); }

.hero-slider {
    position: relative; border-radius: var(--r-lg); overflow: hidden;
    height: var(--hero-h); background: var(--paper-deep); box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s var(--ease); pointer-events: none; }
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(20,14,12,.82) 0%, rgba(20,14,12,.35) 48%, transparent 72%);
    display: flex; flex-direction: column; justify-content: center;
    padding: clamp(24px, 5%, 56px); color: var(--on-dark); max-width: 640px;
}
.hero-fallback { background: radial-gradient(circle at 70% 30%, #3a2c22, #1c1512); }
.hero-slide .overlay .eyebrow { color: var(--brass); }
.hero-slide .overlay h1 { color: #fff; margin: 14px 0 18px; }
.hero-slide .overlay p { color: var(--on-dark-2); font-size: 1.02rem; margin-bottom: 22px; max-width: 42ch; }

.hero-dots { position: absolute; bottom: 18px; right: 22px; display: flex; gap: 8px; z-index: 3; }
.hero-dots button { width: 28px; height: 5px; border-radius: 4px; background: rgba(255,255,255,.45); transition: background .25s; }
.hero-dots button.active { background: var(--brass); }
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.86);
    color: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-sm);
    opacity: 0; transition: opacity .25s, background .2s;
}
.hero-slider:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: #fff; }
.hero-arrow.prev { left: 16px; } .hero-arrow.prev .antik-ic { transform: rotate(180deg); }
.hero-arrow.next { right: 16px; }

.promo-stack { display: grid; grid-template-rows: repeat(3, 1fr); gap: 18px; height: var(--hero-h); }
.promo-card {
    position: relative; border-radius: var(--r); overflow: hidden; min-height: 0;
    background: var(--paper-deep); border: 1px solid var(--line);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.promo-card img { width: 100%; height: 100%; object-fit: cover; min-height: 0; }
.promo-card .tag {
    position: absolute; left: 14px; bottom: 14px;
    background: var(--brand); color: #fff; font-weight: 700; font-size: .82rem;
    padding: .5em 1em; border-radius: var(--r-sm); display: inline-flex; align-items: center; gap: .5em;
    box-shadow: var(--shadow-sm);
}
.promo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.promo-card:hover img { transform: scale(1.04); }
.promo-card img { transition: transform .5s var(--ease); }

/* ---------- 9. Güven çubuğu ---------- */
.trust-bar { background: var(--paper-card); border-block: 1px solid var(--line); margin-top: clamp(36px, 5vw, 64px); }
.trust-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 22px 12px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item .ic { width: 42px; height: 42px; flex-shrink: 0; color: var(--brass-deep); display: grid; place-items: center; background: var(--brass-tint); border-radius: 50%; }
.trust-item .ic svg { width: 22px; height: 22px; }
.trust-item h4 { font-family: var(--sans); font-size: .92rem; font-weight: 700; }
.trust-item p { font-size: .78rem; color: var(--ink-2); }

/* ---------- 10. Ürün kartı ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
    position: relative; display: flex; flex-direction: column;
    background: var(--paper-card); border: 1px solid var(--line);
    border-radius: var(--r); overflow: hidden;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.product-media { position: relative; aspect-ratio: 1/1; background: #fff; overflow: hidden; }
/* Ürün görselleri çoğunlukla uzun pazarlama grafikleri — kırpmadan tamamını göster */
.product-media img { width: 100%; height: 100%; object-fit: contain; padding: 6px; transition: transform .55s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.05); }

.product-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.badge-sale, .badge-new, .badge-out {
    font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    padding: .4em .7em; border-radius: var(--r-sm); color: #fff; box-shadow: var(--shadow-sm);
}
.badge-sale { background: var(--brand); }
.badge-new  { background: var(--brass-deep); }
.badge-out  { background: var(--ink-2); }

.product-quick {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92);
    display: grid; place-items: center; color: var(--ink);
    opacity: 0; transform: translateY(-6px); transition: opacity .25s, transform .25s, background .2s, color .2s;
    box-shadow: var(--shadow-sm);
}
.product-card:hover .product-quick { opacity: 1; transform: translateY(0); }
.product-quick:hover { background: var(--ink); color: #fff; }
.product-quick svg { width: 18px; height: 18px; }

.product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.product-brand { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-deep); margin-bottom: 6px; }
/* 4 sınıflı seçici zorunlu: WC core `.woocommerce ul.products li.product h3` (0,3,3) font-size ve padding'i eziyordu.
   Yükseklik tam satır katı — clamp uygulanmasa bile yarım satır kırpılmış görünmez. */
.product-card .product-body .product-title-link .product-title {
    --title-lines: 2;
    font-family: var(--sans); font-size: .94rem; font-weight: 600; line-height: 1.35;
    padding: 0; margin: 0 0 12px;
    display: -webkit-box; -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--title-lines); line-clamp: var(--title-lines);
    overflow: hidden; height: calc(1.35em * var(--title-lines));
    transition: color .2s;
}
.product-card:hover .product-title { color: var(--brand); }
.product-foot { margin-top: auto; }
.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.product-price .now { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--ink); }
.product-price .was { font-size: .85rem; color: var(--ink-3); text-decoration: line-through; }
.product-price .off { font-size: .72rem; font-weight: 700; color: var(--brand); background: var(--brand-tint); padding: .15em .5em; border-radius: var(--r-sm); }
.product-stock { font-size: .76rem; color: var(--ok); font-weight: 600; display: inline-flex; align-items: center; gap: .4em; margin-bottom: 12px; }
.product-stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.product-stock.low { color: var(--brand); } .product-stock.low::before { background: var(--brand); }

/* ---------- 11. Kategori vitrini ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
/* Kategori kapakları KARE (1024x1024) — kare kartta cover = kırpılmadan tam oturur */
.cat-card { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 1/1; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20,14,12,.72)); }
.cat-card .cat-meta { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; color: #fff; }
.cat-card .cat-meta h3 { color: #fff; font-size: 1.1rem; }
.cat-card .cat-meta span { font-size: .8rem; color: var(--on-dark-2); }
.cat-card:hover img { transform: scale(1.06); }

/* ---------- 12. Marka şeridi ---------- */
.brand-strip { background: var(--paper-deep); border-block: 1px solid var(--line); overflow: hidden; }
.brand-marquee { display: flex; gap: 56px; align-items: center; padding-block: 26px; animation: marquee 38s linear infinite; white-space: nowrap; }
.brand-marquee span { font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: var(--ink-3); transition: color .2s; }
.brand-strip:hover .brand-marquee { animation-play-state: paused; }
.brand-marquee span:hover { color: var(--brand); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 13. Editoryal şerit (anlatı) ---------- */
.story { background: var(--paper-ink); color: var(--on-dark); position: relative; overflow: hidden; }
.story::before { content: ""; position: absolute; inset: 0; background-image:
    radial-gradient(circle at 80% 20%, rgba(176,141,87,.18), transparent 45%); }
.story .container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; }
.story h2 { color: #fff; margin: 14px 0 18px; }
.story p { color: var(--on-dark-2); margin-bottom: 16px; }
.story .stats { display: flex; gap: 40px; margin-top: 28px; }
.story .stats .num { font-family: var(--serif); font-size: 2.4rem; color: var(--brass); line-height: 1; }
.story .stats .lbl { font-size: .82rem; color: var(--on-dark-2); margin-top: 6px; }
.story-figure { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; border: 1px solid rgba(255,255,255,.12); }
.story-figure img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 14. Footer ---------- */
.site-footer { background: linear-gradient(160deg, #2A211D, #18120F); color: var(--on-dark-2); }
.footer-top { padding-block: clamp(40px,5vw,64px); }
.footer-top .container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-col h4 { font-family: var(--sans); color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { color: var(--on-dark-2); font-size: .9rem; display: block; padding: 5px 0; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--brass); padding-left: 5px; }
.footer-brand .wordmark { font-family: var(--serif); font-size: 1.6rem; color: #fff; }
.footer-brand .wordmark b { color: var(--brand); }
.footer-brand p { font-size: .9rem; margin: 14px 0 20px; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: var(--on-dark); transition: background .2s, border-color .2s, transform .2s; }
.footer-social a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 20px; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; }
.footer-pay { display: flex; gap: 8px; align-items: center; }
.footer-pay .chip { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-sm); padding: 5px 9px; font-size: .72rem; font-weight: 600; color: var(--on-dark); }

/* ---------- 15. Yardımcılar & animasyon ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
/* Reveal yalnızca JS aktifken gizler (JS yoksa/gecikirse içerik görünür kalır) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- 16. Duyarlı ---------- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-slider { height: clamp(300px, 50vw, 460px); }
    .promo-stack { grid-template-rows: none; grid-template-columns: repeat(3, 1fr); height: auto; }
    .promo-card { aspect-ratio: 4/3; }
    .product-grid, .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top .container { grid-template-columns: 1fr 1fr; }
    .story .container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .header-main .container { grid-template-columns: auto auto; row-gap: 14px; }
    .search-form { grid-column: 1 / -1; order: 3; max-width: none; }
    .nav-main { display: none; }
    .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(3) { border-left: none; }
    .product-grid, .product-grid.cols-3, .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-stack { grid-template-columns: 1fr; }
    .section-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .product-grid, .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .footer-top .container { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}

/* =================================================================
   17. EK BİLEŞENLER (şablon parçaları)
   ================================================================= */

/* Skip link */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); width: auto; height: auto; clip: auto; }

/* Üst menü (util) */
.util-menu { display: inline-flex; gap: 1.1em; }
.util-menu a { color: var(--ink-2); }
.util-menu a:hover { color: var(--brand); }

/* icon-action etiketi + hamburger */
.icon-action .ia-label { display: block; }
.nav-toggle { display: none; }
.header.is-scrolled, .site-header.is-scrolled { box-shadow: 0 6px 24px -14px rgba(40,30,20,.4); }

/* Sticky header scroll efekti */
.site-header { transition: box-shadow .3s var(--ease); }

/* ----- Ürün grid (WooCommerce ul.products override) ----- */
ul.products {
    list-style: none; margin: 0 0 8px; padding: 0;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 22px !important;
}
ul.products.cols-6 { grid-template-columns: repeat(6, 1fr) !important; gap: 16px !important; }
ul.products.cols-5 { grid-template-columns: repeat(5, 1fr) !important; gap: 18px !important; }
ul.products.cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
ul.products.cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
ul.products::before, ul.products::after { content: none !important; }
ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; clear: none !important; }

/* Yatay kayan ürün şeridi (kayan_urunler) */
ul.products.product-rail {
    display: flex !important; grid-template-columns: none !important;
    overflow-x: auto; gap: 18px !important; scroll-snap-type: x mandatory;
    padding-bottom: 12px; scrollbar-width: thin;
}
ul.products.product-rail li.product { flex: 0 0 clamp(220px, 26%, 290px); scroll-snap-align: start; }

/* WooCommerce add-to-cart buton görünümü (loop kartı) — varsayılan .button'a tema görünümü */
.product-card .product-foot .button,
.product-card .product-foot .added_to_cart {
    display: inline-flex; align-items: center; justify-content: center; gap: .5em;
    width: 100%; margin-top: 8px; text-align: center; text-decoration: none;
    font-family: var(--sans); font-weight: 700; font-size: .82rem; letter-spacing: .02em; line-height: 1.2;
    padding: .62em 1em; border-radius: var(--r-sm);
    background: var(--brand); color: #fff; border: 1.5px solid var(--brand);
    transition: background .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
}
.product-card .product-foot .button:hover,
.product-card .product-foot .added_to_cart:hover { background: var(--brand-deep); border-color: var(--brand-deep); color: #fff; transform: translateY(-2px); }
.product-card .product-foot .added_to_cart { background: var(--ink); border-color: var(--ink); margin-top: 6px; font-size: .76rem; }
.product-card .product-foot .button.loading { opacity: .65; pointer-events: none; }
.price-out { color: var(--brand); font-weight: 600; font-size: .85rem; }

/* Sepet bump animasyonu */
@keyframes bump { 25% { transform: scale(1.15); } 50% { transform: scale(.95); } }
.cart-link.bump .badge { animation: bump .5s var(--ease); }

/* ----- Breadcrumb ----- */
.breadcrumb { background: var(--paper-card); border-bottom: 1px solid var(--line); font-size: .82rem; }
.breadcrumb .container { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; padding-block: 12px; color: var(--ink-3); }
.breadcrumb a { color: var(--ink-2); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { display: inline-flex; color: var(--ink-3); opacity: .6; }
.breadcrumb .current, .breadcrumb__last { color: var(--ink); font-weight: 600; }

/* ----- Sayfa başlığı ----- */
.page-header { padding-block: clamp(28px, 4vw, 48px); text-align: center; }
.page-header .eyebrow { justify-content: center; margin-bottom: 12px; }
.page-header .page-title { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.page-header .page-title span { color: var(--brand); }
.archive-desc, .shop-desc { color: var(--ink-2); max-width: 70ch; margin: 12px auto 0; }

/* Statik sayfa/yazı içeriğini okunabilir ölçüye sınırla (WC sayfaları hariç — tam genişlik) */
.single-post .entry-content,
body:not(.woocommerce-page) .page-article .entry-content { max-width: 820px; margin-inline: auto; }

/* ----- Mağaza düzeni ----- */
.wc-main, .page-main, .site-main { padding-block: clamp(24px, 4vw, 48px); }
.shop-header { margin-bottom: 24px; }
.shop-header .page-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: start; }
.shop-sidebar { position: sticky; top: 130px; display: flex; flex-direction: column; gap: 22px; }
.shop-sidebar-box { background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.shop-sidebar-title { background: var(--ink); color: var(--on-dark); font-family: var(--sans); font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; padding: 14px 18px; }
/* ----- Akordeon kategori ağacı ----- */
.cat-tree { padding: 6px; max-height: 460px; overflow-y: auto; scrollbar-width: thin; }
.cat-tree, .cat-children { list-style: none; margin: 0; }
.cat-item { border-radius: var(--r-sm); }
.cat-row { display: flex; align-items: stretch; }
.cat-link { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 12px; font-size: .9rem; color: var(--ink-2); border-radius: var(--r-sm); transition: background .18s, color .18s; min-width: 0; }
.cat-link .cat-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cat-link:hover { color: var(--brand); background: var(--paper-deep); }
.cat-count { flex-shrink: 0; font-size: .72rem; font-weight: 700; color: var(--ink-3); background: var(--paper-deep); padding: .1em .5em; border-radius: 100px; min-width: 24px; text-align: center; }
.cat-link:hover .cat-count { color: var(--brand); }
.cat-item.is-current > .cat-row > .cat-link { color: var(--brand); font-weight: 700; background: var(--brand-tint); }
.cat-item.is-current > .cat-row > .cat-link .cat-count { background: var(--brand); color: #fff; }
.cat-toggle { flex-shrink: 0; width: 38px; display: grid; place-items: center; color: var(--ink-3); border-radius: var(--r-sm); transition: background .18s, color .18s; }
.cat-toggle:hover { background: var(--paper-deep); color: var(--brand); }
.cat-toggle .antik-ic { transition: transform .25s var(--ease); }
.cat-item.is-open > .cat-row > .cat-toggle .antik-ic { transform: rotate(180deg); }
.cat-children { padding-left: 12px; margin-left: 8px; border-left: 1px solid var(--line); display: none; }
.cat-item.is-open > .cat-children { display: block; }
.cat-children .cat-link { font-size: .85rem; padding: 7px 12px; }

/* Fiyat filtresi widget'ı */
.shop-sidebar-filter .filter-body { padding: 18px; }
.shop-sidebar-filter .price_slider_wrapper { font-size: .85rem; }
.shop-sidebar-filter .price_slider_amount .button { float: left; font-size: .8rem; padding: .5em 1em; }
.shop-sidebar-filter .price_slider_amount .price_label { float: right; padding-top: .6em; color: var(--ink-2); font-size: .82rem; }
.shop-sidebar-filter .ui-slider { margin: 16px 0; height: 4px; background: var(--line); border-radius: 4px; position: relative; }
.shop-sidebar-filter .ui-slider .ui-slider-range,
.shop-sidebar-filter .price_slider .ui-slider-range { background: var(--brand) !important; height: 100%; position: absolute; }
.shop-sidebar-filter .ui-slider .ui-slider-handle,
.shop-sidebar-filter .price_slider .ui-slider-handle { width: 16px !important; height: 16px !important; background: var(--brand) !important; border: 2px solid #fff; box-shadow: var(--shadow-sm); border-radius: 50%; top: -6px; margin-left: -8px; cursor: grab; }
.brand-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 16px 18px; }
.brand-chip { font-size: .78rem; padding: .4em .8em; border: 1px solid var(--line-2); border-radius: 100px; color: var(--ink-2); transition: all .2s; }
.brand-chip:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.shop-toolbar .woocommerce-result-count { color: var(--ink-2); font-size: .88rem; margin: 0; }
.shop-toolbar .woocommerce-ordering select, .shop-toolbar select.orderby { padding: .6em 2.2em .6em 1em; border: 1.5px solid var(--line-2); border-radius: var(--r-sm); background: var(--paper-card); font-size: .88rem; cursor: pointer; }

/* ----- İçerik + kenar çubuğu (blog) ----- */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.content-sidebar { position: sticky; top: 130px; display: flex; flex-direction: column; gap: 24px; }
.content-sidebar .widget, .footer-widget { margin-bottom: 4px; }
.widget-title { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 14px; }

/* ----- Blog kartları ----- */
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.post-card { background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card-media { aspect-ratio: 16/10; overflow: hidden; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-card-media img { transform: scale(1.05); }
.post-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; gap: 16px; font-size: .78rem; color: var(--ink-3); margin-bottom: 10px; }
.post-meta span { display: inline-flex; align-items: center; gap: .4em; }
.post-card-title { font-size: 1.25rem; margin-bottom: 10px; }
.post-card-title a:hover { color: var(--brand); }
.post-card-excerpt { color: var(--ink-2); font-size: .92rem; margin-bottom: 16px; }
.post-card-more { margin-top: auto; color: var(--brand); font-weight: 600; font-size: .88rem; display: inline-flex; align-items: center; gap: .4em; }

/* ----- Tekil yazı ----- */
.single-post { background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 48px); }
.single-head { margin-bottom: 24px; }
.single-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-top: 10px; }
.single-thumb { border-radius: var(--r); overflow: hidden; margin-bottom: 28px; }
.entry-content { font-size: 1.02rem; line-height: 1.75; }
.entry-content > * + * { margin-top: 1.1em; }
.entry-content h2 { font-size: 1.6rem; margin-top: 1.6em; }
.entry-content h3 { font-size: 1.3rem; margin-top: 1.4em; }
/* Yalnızca yazı/metin içindeki linkleri renklendir — WC içeriği (sepet, kart, buton) etkilenmesin */
.entry-content :is(p, li, td, blockquote, h2, h3, h4, dd) a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { border-radius: var(--r); }
.entry-content blockquote { border-left: 3px solid var(--brass); padding-left: 20px; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ink-2); }
.single-tags { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.single-tags a { font-size: .78rem; padding: .35em .8em; background: var(--paper-deep); border-radius: 100px; color: var(--ink-2); }
.post-navigation { margin-top: 32px; display: flex; justify-content: space-between; gap: 16px; }
.post-navigation a { color: var(--ink); font-weight: 600; }
.post-navigation .navlbl { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--brass-deep); }
.post-navigation a:hover { color: var(--brand); }

/* ----- Sayfalama ----- */
.antik-pagination ul, .woocommerce-pagination ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 40px 0 0; padding: 0; }
.antik-pagination a, .antik-pagination span,
.woocommerce-pagination a, .woocommerce-pagination span {
    display: inline-flex; align-items: center; justify-content: center; gap: .3em;
    min-width: 44px; height: 44px; padding: 0 12px; border: 1.5px solid var(--line-2);
    border-radius: var(--r-sm); font-weight: 600; color: var(--ink); background: var(--paper-card); transition: all .2s;
}
.antik-pagination a:hover, .woocommerce-pagination a:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.antik-pagination .current, .woocommerce-pagination .current { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ----- Kategori kartı (görselsiz) ----- */
.cat-noimg { position: absolute; inset: 0; display: grid; place-items: center; color: var(--brass); background: var(--brass-tint); }

/* ----- Ana banner ----- */
.home-banner { margin-top: 16px; border-radius: var(--r-lg); overflow: hidden; }
.home-banner img { width: 100%; }

/* ----- Arama sonuçları (header AJAX dropdown) -----
   Not: selektör .search-wrap altında kapsüllenir; aksi halde WordPress'in
   arama sayfalarında <body>'ye eklediği "search-results" sınıfıyla çakışır
   ve tüm sayfa düzenini bozar. */
.search-wrap { position: relative; width: 100%; max-width: 560px; justify-self: center; }
.search-wrap .search-results {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 60;
    background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--r);
    box-shadow: var(--shadow-lg); max-height: 70vh; overflow-y: auto; padding: 8px;
}
.search-loading, .search-empty { padding: 24px; text-align: center; color: var(--ink-3); font-size: .9rem; }
.search-group + .search-group { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 6px; }
.search-group-title { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-deep); padding: 10px 12px 6px; }
.search-item { display: flex; gap: 12px; align-items: center; padding: 8px 12px; border-radius: var(--r-sm); transition: background .15s; }
.search-item:hover { background: var(--paper-deep); }
.search-item-img img { width: 48px; height: 48px; object-fit: cover; border-radius: var(--r-sm); }
.search-item-title { display: block; font-weight: 600; font-size: .88rem; color: var(--ink); }
.search-item-price { font-size: .82rem; color: var(--brand); font-weight: 700; }
.search-item-price del { color: var(--ink-3); font-weight: 400; margin-left: 6px; }
.search-cats { display: flex; flex-wrap: wrap; gap: 6px; padding: 6px 12px 12px; }
.search-cat { font-size: .8rem; padding: .35em .8em; background: var(--paper-deep); border-radius: 100px; color: var(--ink-2); }
.search-cat:hover { background: var(--brand); color: #fff; }
.search-cat span { opacity: .6; }
.search-all { display: block; text-align: center; padding: 12px; font-weight: 700; font-size: .85rem; color: var(--brand); border-top: 1px solid var(--line); margin-top: 6px; }

/* ----- Mobil menü ----- */
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(20,14,12,.5); z-index: 90; backdrop-filter: blur(2px); }
.mobile-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); z-index: 95;
    background: var(--paper-card); transform: translateX(100%); transition: transform .35s var(--ease);
    display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.mobile-nav.is-open { transform: none; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.mobile-nav-head .wordmark { font-family: var(--serif); font-size: 1.4rem; }
.mobile-nav-head .wordmark b { color: var(--brand); }
.mobile-nav-close { color: var(--ink-2); }
.mobile-nav-body { flex: 1; overflow-y: auto; padding: 10px 0 24px; }
.mobile-menu { padding: 0 8px; }
.mobile-menu a { display: block; padding: 13px 16px; font-weight: 600; color: var(--ink); border-radius: var(--r-sm); }
.mobile-menu a:hover { background: var(--paper-deep); color: var(--brand); }
.mobile-menu .sub-menu { display: none; padding-left: 14px; }
.mobile-menu .menu-item.open > .sub-menu { display: block; }
.mobile-menu .sub-menu a { font-weight: 500; font-size: .92rem; color: var(--ink-2); }
.mobile-nav-foot { padding: 16px 20px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.mobile-contact { display: inline-flex; align-items: center; gap: .5em; color: var(--ink-2); font-weight: 600; justify-content: center; }

/* ----- WhatsApp & yukarı çık ----- */
.whatsapp-float {
    position: fixed; right: 20px; bottom: 20px; z-index: 80;
    display: inline-flex; align-items: center; gap: 0; overflow: hidden;
    background: #25D366; color: #fff; border-radius: 100px; padding: 14px; box-shadow: var(--shadow);
    transition: padding .3s var(--ease), transform .2s;
}
.whatsapp-float .whatsapp-label { max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .3s var(--ease), margin .3s var(--ease); font-weight: 700; font-size: .9rem; }
.whatsapp-float:hover { transform: translateY(-2px); }
.whatsapp-float:hover .whatsapp-label { max-width: 160px; margin-left: 10px; margin-right: 4px; }
.to-top {
    position: fixed; right: 20px; bottom: 86px; z-index: 79; width: 46px; height: 46px; border-radius: 50%;
    background: var(--ink); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(10px) rotate(-90deg); transition: all .3s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0) rotate(-90deg); }
.to-top:hover { background: var(--brand); }

/* ----- Boş durum / 404 ----- */
.no-results, .error-404 { text-align: center; padding: clamp(40px, 8vw, 90px) 20px; color: var(--ink-2); }
.no-results .antik-ic, .error-404 .antik-ic { color: var(--line-2); margin: 0 auto 18px; }
.no-results h2, .error-404 h1 { margin-bottom: 12px; }
.error-404 .error-num { font-family: var(--serif); font-size: clamp(5rem, 16vw, 11rem); line-height: 1; color: var(--brand); opacity: .15; }
.error-404 h1 { margin-top: -.3em; }
.error-404 .search-form, .no-results .search-form { max-width: 460px; margin: 24px auto; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

/* =================================================================
   18. EK BİLEŞEN DUYARLILIK
   ================================================================= */
@media (max-width: 1024px) {
    ul.products, ul.products.cols-4, ul.products.cols-5, ul.products.cols-6 { grid-template-columns: repeat(3, 1fr) !important; }
    .shop-layout { grid-template-columns: 220px 1fr; gap: 24px; }
    .content-with-sidebar { grid-template-columns: 1fr; }
    .content-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .nav-toggle { display: inline-flex; order: -1; }
    .icon-action .ia-label { display: none; }
    .header-actions { gap: 2px; }
    ul.products, ul.products.cols-3, ul.products.cols-4, ul.products.cols-5, ul.products.cols-6 { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; flex-direction: column; }
    .post-grid { grid-template-columns: 1fr; }
    .breadcrumb { font-size: .78rem; }
    .whatsapp-float .whatsapp-label { display: none; }
}
@media (max-width: 480px) {
    ul.products { gap: 12px !important; }
    .shop-toolbar { flex-direction: column; align-items: stretch; gap: 10px; }
    .shop-toolbar .woocommerce-ordering select { width: 100%; }
}

/* =================================================================
   19. KAPSAMLI MOBİL ELDEN GEÇİRME (en sonda — öncelikli)
   ================================================================= */

/* Mağaza mobil filtre butonu — masaüstünde gizli */
.shop-filter-toggle { display: none; }

@media (max-width: 1024px) {
    /* Mağaza/arşiv: sidebar mobil filtre paneline dönüşür */
    .shop-filter-toggle {
        display: flex; align-items: center; gap: 10px; width: 100%;
        background: var(--ink); color: var(--on-dark); font-weight: 700; font-size: .92rem;
        padding: 14px 18px; border-radius: var(--r); margin-bottom: 20px; cursor: pointer;
    }
    .shop-filter-toggle .antik-ic { color: var(--on-dark); }
    .shop-filter-toggle .ft-caret { margin-left: auto; transition: transform .25s var(--ease); }
    .shop-filter-toggle.is-open .ft-caret { transform: rotate(180deg); }
    .shop-layout { grid-template-columns: 1fr !important; gap: 0; }
    .shop-sidebar { display: none; position: static; margin-bottom: 24px; }
    .shop-sidebar.is-open { display: flex; }
    .cat-tree { max-height: none; }
}

/* Üst iletişim çubuğu mobilde gizli (içerik mobil menüye taşındı) */
@media (max-width: 900px) {
    .header-util { display: none; }
    .site-header { top: 0; }
    .admin-bar .site-header { top: 0; }
}

@media (max-width: 768px) {
    /* HEADER: logo + ikonlar üst satır, arama tam genişlik alt satır */
    .header-main .container { grid-template-columns: 1fr auto; gap: 12px 10px; min-height: 0; padding-block: 12px; }
    .brand-logo { order: 1; }
    .header-actions { order: 2; gap: 2px; }
    .search-wrap { order: 3; grid-column: 1 / -1; max-width: none; justify-self: stretch; }
    .brand-logo img { max-height: 40px; }
    .brand-logo .wordmark { font-size: 1.35rem; }
    .icon-action { padding: 6px 8px; }
    .icon-action .ia-label { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-main { display: none; }
    .announce { font-size: .76rem; }
    .announce .container { padding-right: 36px; }

    /* GRID'LER: 2 sütun */
    ul.products, ul.products.cols-3, ul.products.cols-4, ul.products.cols-5, ul.products.cols-6,
    .product-grid, .cat-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
    .post-grid { grid-template-columns: 1fr; }
    .promo-stack { grid-template-columns: 1fr; }

    /* ÜRÜN KARTI: fiyat taşmasın, kompakt */
    .product-body { padding: 12px; }
    /* Mobilde kart dar → satır kısa; 3 satır daha fazla isim gösteriyor */
    .product-card .product-body .product-title-link .product-title { --title-lines: 3; font-size: .88rem; }
    .product-price { flex-wrap: wrap; gap: 2px 8px; }
    .product-price .now, .product-price ins .woocommerce-Price-amount { font-size: 1.05rem; }
    .product-price .woocommerce-Price-amount { white-space: nowrap; }
    .product-brand { font-size: .64rem; }

    /* HERO */
    .hero-slider { height: clamp(220px, 56vw, 360px); }

    /* GÜVEN ÇUBUĞU: 2 sütun, dikey öğe */
    .trust-bar .container { grid-template-columns: 1fr 1fr; }
    .trust-item { padding: 14px 10px; gap: 10px; }
    .trust-item:nth-child(3) { border-left: none; }
    .trust-item h4 { font-size: .82rem; }
    .trust-item p { font-size: .72rem; }

    /* SEPET çapraz satışları 2 sütun */
    .woocommerce-cart .cart-collaterals .cross-sells ul.products { grid-template-columns: repeat(2, 1fr) !important; }
    .woocommerce-cart .cart-collaterals .cart_totals { max-width: none; float: none; }

    /* BÖLÜM & BAŞLIK */
    .section { padding-block: clamp(28px, 7vw, 44px); }
    .section-head { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 22px; }
    .page-header { padding-block: clamp(22px, 6vw, 36px); }

    /* Tek ürün galeri thumb: 4 sütun */
    .antik-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }

    /* Footer */
    .footer-top .container { grid-template-columns: 1fr 1fr; gap: 28px; }

    /* WhatsApp etiketi gizli */
    .whatsapp-float .whatsapp-label { display: none; }
    .whatsapp-float:hover .whatsapp-label { max-width: 0; margin: 0; }
}

@media (max-width: 480px) {
    .header-actions .icon-action.cart-link, .header-actions .icon-action:not(.nav-toggle) { padding: 6px; }
    .breadcrumb { font-size: .74rem; }
    .breadcrumb .container { padding-block: 10px; }
    .trust-bar .container { grid-template-columns: 1fr; }
    .trust-item { border-left: none !important; border-bottom: 1px solid var(--line); }
    .trust-item:last-child { border-bottom: none; }
    .footer-top .container { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }
    h1 { font-size: 1.7rem; }
    .product-grid, .cat-grid, ul.products { gap: 10px !important; }
}

/* Mobil çekmece: ikincil menü + sosyal */
.mobile-nav-secondary { padding: 8px 8px 0; margin-top: 8px; border-top: 1px solid var(--line); }
.mobile-secondary-menu a { display: block; padding: 11px 16px; font-size: .92rem; font-weight: 500; color: var(--ink-2); border-radius: var(--r-sm); }
.mobile-secondary-menu a:hover { background: var(--paper-deep); color: var(--brand); }
.mobile-nav-social { display: flex; gap: 10px; justify-content: center; padding-top: 6px; }
.mobile-nav-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink-2); transition: all .2s; }
.mobile-nav-social a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
