/* ==========================================================================
   KARSELIA JEWELRY | Vitrin Stil Dosyası (HTML Önizleme)
   Tasarım sistemi: renk/tipografi jetonları → bileşenler → sayfa blokları
   ========================================================================== */

/* Yazı tipi yüklenene kadar kullanılan yedek: ölçüleri gerçek yazı tipiyle eşitlenir,
   böylece yazı tipi geldiğinde satırlar yeniden dizilmez (sayfa kaymaz). */
@font-face {
    font-family: 'Jost yedek';
    src: local('Arial'), local('Helvetica'), local('Liberation Sans');
    size-adjust: 95.1%; ascent-override: 112.5%; descent-override: 40%; line-gap-override: 0%;
}
@font-face {
    font-family: 'Cormorant yedek';
    src: local('Times New Roman'), local('Liberation Serif'), local('Times');
    size-adjust: 92.2%; ascent-override: 99.8%; descent-override: 31.5%; line-gap-override: 0%;
}

/* --- 1. Jetonlar ------------------------------------------------------- */
:root {
    /* Renkler (ink, gold, cream, sand, line) assets/css/palet.css icinde. */
    --white: #FFFFFF;
    --green: #2E7D63;
    --red: #B3423B;
    --blue: #3B6FB3;

    --ff-title: 'Cormorant Garamond', 'Cormorant yedek', 'Playfair Display', Georgia, serif;
    --ff-body: 'Jost', 'Jost yedek', 'Inter', -apple-system, 'Segoe UI', sans-serif;

    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 16px;
    --r-pill: 100px;

    --sh-1: 0 1px 2px rgba(26, 29, 38, .05);
    --sh-2: 0 6px 24px rgba(26, 29, 38, .08);
    --sh-3: 0 18px 48px rgba(26, 29, 38, .14);

    --header-h: 78px;
    --container: 1320px;
}

/* --- 2. Sıfırlama ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--ff-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-2);
    background: var(--white);
    overflow-x: hidden;
    font-weight: 400; /* 300 (ince) yazılar sönük görünüyordu */
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

h1, h2, h3, h4, h5 {
    font-family: var(--ff-title);
    color: var(--ink);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .01em;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
/* Baslik yazi tipinin eski usul rakamlari 14'u I4 gibi gosteriyor */
h1, h2, h3, h4, h5, .trust-item b { font-variant-numeric: lining-nums; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.15rem; }

::selection { background: var(--gold-soft); color: var(--ink); }

/* --- 3. Yardımcılar ---------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-sm { max-width: 900px; }
.section { padding: 84px 0; }
.section-tight { padding: 52px 0; }
/* Ayni (beyaz) arka planli iki bolum arka arkaya gelince bosluk iki kez sayilmasin */
.section:not([class*="bg-"]) + .section:not([class*="bg-"]),
.section:not([class*="bg-"]) + .section-tight:not([class*="bg-"]) { padding-top: 0; }
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }
.bg-ink { background: var(--ink); color: #DCD3C8; }
.text-center { text-align: center; }
.hidden { display: none !important; }
.muted { color: var(--ink-3); }
.strike { text-decoration: line-through; color: var(--ink-3); font-weight: 300; }
.gold { color: var(--gold-deep); }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; } .mb-5 { margin-bottom: 48px; }
.flex { display: flex; } .items-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; } .gap-2 { gap: 16px; } .gap-3 { gap: 24px; }
.w-full { width: 100%; }

.eyebrow {
    font-size: .72rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 500;
    display: block;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head p { color: var(--ink-3); margin-top: 12px; }
.section-head .eyebrow { margin-bottom: 12px; }
.divider-orn {
    width: 120px; height: 1px; margin: 16px auto 0;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

/* --- 4. Butonlar ------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 14px 30px;
    font-size: .8rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
    border-radius: var(--r-sm);
    border: 1px solid transparent;
    transition: all .25s ease;
    cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--gold-deep); }
/* Fusya zeminde beyaz yazi 5.6:1 */
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-deep); color: #fff; }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--ink-2); background: #fff; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--gold-soft); }
.btn-sm { padding: 9px 18px; font-size: .72rem; }
.btn-lg { padding: 17px 40px; }
.btn-block { display: flex; width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: .45; pointer-events: none; }
.link-underline {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
    color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 3px;
    transition: gap .25s;
}
.link-underline:hover { gap: 13px; color: var(--gold-deep); }

/* --- 5. Duyuru bandı --------------------------------------------------- */
/* Yazi: kucuk, buyuk harf, genis aralik; vurgular kalin degil altin renkte */
.announce {
    background: var(--ink); color: #CDD3DE;
    font-size: .7rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase;
    position: relative; z-index: 60;
}
.announce b { color: var(--gold-soft); font-weight: 500; }
.ann-kod {
    display: inline-block; margin-left: 8px; padding: 3px 8px 2px 9px;
    border: 1px dashed rgba(220, 228, 251, .6); border-radius: 3px;
    color: #fff; font-weight: 500; letter-spacing: .24em; line-height: 1.2;
}
.announce-inner { display: flex; align-items: center; gap: 10px; min-height: 40px; }

/* Sol: sosyal medya */
.announce-social { display: none; align-items: center; gap: 2px; flex: 1; min-width: 0; }
.announce-social a {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; color: #98A0AE; transition: color .25s;
}
.announce-social a:hover { color: var(--gold-soft); }

/* Orta: kayan duyuru */
.announce-ticker { display: flex; align-items: center; gap: 2px; width: 100%; max-width: 640px; margin-inline: auto; }
.ann-nav {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; flex-shrink: 0;
    background: none; border: 0; padding: 0; cursor: pointer;
    color: #98A0AE; transition: color .25s;
}
.ann-nav:hover { color: var(--gold-soft); }
.ann-window { flex: 1; min-width: 0; overflow: hidden; }
.ann-track { display: flex; transition: transform .5s cubic-bezier(.4, 0, .2, 1); }
.ann-item {
    flex: 0 0 100%; min-width: 0; padding: 10px 6px;
    text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Sag: iletisim baglantisi */
.announce-link { display: none; flex: 1; min-width: 0; justify-content: flex-end; }
.announce-link a {
    color: #CDD3DE; padding-bottom: 2px; letter-spacing: .2em;
    border-bottom: 1px solid transparent; transition: color .25s, border-color .25s;
}
.announce-link a:hover { color: var(--gold-soft); border-bottom-color: var(--gold-soft); }

@media (min-width: 900px) {
    .announce-social, .announce-link { display: flex; }
}
@media (prefers-reduced-motion: reduce) { .ann-track { transition: none; } }
@media (max-width: 380px) { .ann-uzun { display: none; } }
@media (max-width: 420px) { .announce { letter-spacing: .1em; font-size: .7rem; } .ann-kod { margin-left: 6px; padding: 2px 6px 1px 7px; letter-spacing: .16em; } }

/* --- 6. Header --------------------------------------------------------- */
.header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s;
}
.header.is-stuck { box-shadow: var(--sh-2); }
.header-inner {
    display: flex; align-items: center; gap: 20px;
    height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--ff-title); font-size: 1.42rem; letter-spacing: .16em; color: var(--ink); font-weight: 600; }
/* Alt satir kucuk ve ince oldugu icin okunmuyordu: bir tik buyuk, normal agirlik, daha koyu altin */
.brand-tag { font-size: .7rem; font-weight: 500; letter-spacing: .7em; color: var(--gold-deep); margin-top: 5px; }

.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list > li > a {
    display: block; padding: 10px 14px;
    font-size: .79rem; letter-spacing: .11em; text-transform: uppercase; font-weight: 400;
    color: var(--ink-2); position: relative;
}
.nav-list > li > a::after {
    content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1px;
    background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav-list > li > a:hover::after, .nav-list > li > a.active::after { transform: scaleX(1); }
.nav-list > li > a.active { color: var(--ink); }

.has-mega { position: static; }
.mega {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-2);
    padding: 34px 0 38px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: all .26s ease;
}
.has-mega:hover .mega, .mega:hover, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr) 1.15fr; gap: 34px; }
.mega-col h5 { font-family: var(--ff-body); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; }
.mega-col a { display: block; padding: 6px 0; font-size: .92rem; color: var(--ink-2); }
.mega-col a:hover { color: var(--gold-deep); padding-left: 6px; transition: all .2s; }
.mega-promo { border-radius: var(--r-md); overflow: hidden; position: relative; min-height: 200px; }
.mega-promo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.mega-promo-body {
    position: absolute; inset: auto 0 0 0; padding: 18px;
    background: linear-gradient(transparent, rgba(26, 29, 38, .82)); color: #fff;
}
.mega-promo-body strong { font-family: var(--ff-title); font-size: 1.2rem; display: block; }
.mega-promo-body span { font-size: .74rem; letter-spacing: .1em; color: var(--gold-soft); }

.header-actions { display: flex; align-items: center; gap: 3px; flex-shrink: 0; }
.icon-btn {
    width: 42px; height: 42px; display: grid; place-items: center;
    border-radius: 50%; color: var(--ink); position: relative; transition: background .2s;
}
.icon-btn:hover { background: var(--sand); }
.icon-btn .count {
    position: absolute; top: 4px; right: 3px;
    min-width: 18px; height: 18px; padding: 0 5px;
    background: var(--gold-deep); color: #fff; border-radius: var(--r-pill);
    font-size: .62rem; font-weight: 500; display: grid; place-items: center; line-height: 1;
}
.burger { display: none; }

/* Arama katmanı */
.search-layer {
    position: fixed; inset: 0; z-index: 90; background: rgba(26, 29, 38, .45);
    backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden; transition: all .25s;
}
.search-layer.open { opacity: 1; visibility: visible; }
.search-box { background: #fff; padding: 34px 0 26px; box-shadow: var(--sh-3); }
.search-field { display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--ink); padding-bottom: 12px; }
.search-field input { flex: 1; border: 0; outline: 0; font-size: 1.5rem; font-family: var(--ff-title); background: none; }
.search-field input::placeholder { color: #C9BEB0; }
.search-hints { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.search-hints span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-right: 4px; }
.search-hints a { font-size: .8rem; padding: 5px 13px; border: 1px solid var(--line); border-radius: var(--r-pill); }
.search-hints a:hover { border-color: var(--gold); color: var(--gold-deep); }
.search-results { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; margin-top: 26px; max-height: 46vh; overflow-y: auto; }
.sr-item { display: flex; gap: 12px; align-items: center; padding: 8px; border-radius: var(--r-md); }
.sr-item:hover { background: var(--cream); }
.sr-item img { width: 58px; height: 58px; object-fit: cover; border-radius: var(--r-sm); background: var(--sand); }
.sr-item .t { font-size: .82rem; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sr-item .p { font-size: .82rem; color: var(--gold-deep); font-weight: 500; }

/* --- 7. Sepet çekmecesi ------------------------------------------------ */
.drawer-scrim {
    position: fixed; inset: 0; background: rgba(26, 29, 38, .5); z-index: 95;
    opacity: 0; visibility: hidden; transition: all .3s;
}
.drawer-scrim.open { opacity: 1; visibility: visible; }
.drawer {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); z-index: 96;
    background: #fff; display: flex; flex-direction: column;
    /* Kapalıyken gizli: klavyeyle Tab gezinmesi ekran dışındaki bağlantılara girmesin (kapanma animasyonu bitince gizlenir) */
    visibility: hidden;
    transform: translateX(100%); transition: transform .34s cubic-bezier(.4, 0, .2, 1), visibility 0s linear .34s;
}
.drawer.open { transform: none; visibility: visible; transition: transform .34s cubic-bezier(.4, 0, .2, 1); }
/* Mobil menu soldan acilir; gizli konumu satir ici stilde durdugunda sepet kapaninca siliniyor ve menu ekrana kayiyordu */
.drawer.drawer-left { left: 0; right: auto; transform: translateX(-100%); }
.drawer.drawer-left.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer-head h4 { font-family: var(--ff-body); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.drawer-foot { border-top: 1px solid var(--line); padding: 20px 24px 26px; background: var(--cream); }
.free-ship-bar { background: var(--sand); border-radius: var(--r-pill); height: 6px; overflow: hidden; margin: 10px 0 6px; }
.free-ship-bar i { display: block; height: 100%; background: var(--gold); border-radius: inherit; transition: width .4s; }

.mini-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.mini-item:last-child { border-bottom: 0; }
.mini-item img { width: 78px; height: 92px; object-fit: cover; background: var(--sand); border-radius: var(--r-sm); }
.mini-item .mi-body { flex: 1; min-width: 0; }
/* Tedarikci bilgisi: urun sayfasinda Hemen Satin Al altinda */
.pd-tedarikci { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px 12px; margin-top: 12px; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r-sm); font-size: .8rem; color: var(--ink-3); }
.pd-tedarikci b { color: var(--ink-2); font-weight: 500; }
.pd-tedarikci .sup-btn { margin-top: 0; }
.sup-btn { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; padding: 3px 11px 3px 3px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink-2); font-size: .74rem; line-height: 1; white-space: nowrap; transition: border-color .2s, color .2s, background .2s; }
.sup-btn:hover { border-color: var(--gold); color: var(--gold-deep); background: var(--cream); }
.sup-btn.ara { border-style: dashed; }
.sup-btn svg { flex-shrink: 0; opacity: .7; }
.mini-item .sup-btn img, .sup-btn > img { width: 20px; height: 20px; min-width: 20px; border-radius: 50%; object-fit: cover; background: none; }
.mini-item .mi-name { font-size: .86rem; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mini-item .mi-meta { font-size: .74rem; color: var(--ink-3); margin-top: 2px; }
.mini-item .mi-price { color: var(--gold-deep); font-weight: 500; margin-top: 6px; }
.qty {
    display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r-sm);
}
.qty button { width: 30px; height: 30px; display: grid; place-items: center; color: var(--ink-2); }
.qty button:hover { color: var(--gold-deep); }
.qty span, .qty input { width: 34px; text-align: center; font-size: .85rem; border: 0; outline: 0; background: none; }
.mi-remove { font-size: .75rem; min-height: 32px; color: var(--ink-3); text-decoration: underline; }
.mi-remove:hover { color: var(--red); }

.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-3); }
.empty-state svg { margin: 0 auto 18px; color: var(--gold-soft); }

/* --- 8. Hero ----------------------------------------------------------- */
.hero { position: relative; min-height: min(88vh, 780px); display: flex; align-items: center; background: var(--sand); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(246, 248, 254, .96) 0%, rgba(246, 248, 254, .86) 34%, rgba(246, 248, 254, .18) 62%, transparent 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 560px; padding: 60px 0; }
.hero h1 { margin: 16px 0 20px; }
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero p { font-size: 1.05rem; color: var(--ink-2); max-width: 460px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 42px; }
.hero-badges div { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.hero-badges svg { color: var(--gold); }

/* Hero slider: yatay kaydirma + scroll-snap; noktalar ve otomatik gecis index.html'de */
.hero-slider { position: relative; }
.hs-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain; }
.hs-track::-webkit-scrollbar { display: none; }
.hs-track.surukle { scroll-snap-type: none; cursor: grabbing; user-select: none; }
.hs-track.surukle a { pointer-events: none; }
.hs-slide { flex: 0 0 100%; scroll-snap-align: center; scroll-snap-stop: always; }
/* Slider icin daha ince bir yukseklik ve sikilastirilmis yazi araliklari */
.hero-slider .hero { min-height: min(68vh, 580px); }
.hero-slider .hero-inner { padding: 44px 0 64px; }
.hero-slider h1, .hero .hero-title { font-size: clamp(2rem, 3.6vw, 3.1rem); margin: 12px 0 16px; }
.hero-slider .hero-cta { margin-top: 26px; }
.hero-slider .hero-badges { margin-top: 28px; }
.hs-js .hs-slide .hero-inner > * { opacity: 0; transform: translateY(10px); transition: opacity .4s ease, transform .45s cubic-bezier(.2, .8, .2, 1); }
.hs-js .hs-slide.on .hero-inner > * { opacity: 1; transform: none; }
.hs-js .hs-slide.on .hero-inner > :nth-child(2) { transition-delay: .04s; }
.hs-js .hs-slide.on .hero-inner > :nth-child(3) { transition-delay: .08s; }
.hs-js .hs-slide.on .hero-inner > :nth-child(4) { transition-delay: .12s; }
.hs-js .hs-slide.on .hero-inner > :nth-child(5) { transition-delay: .16s; }
.hs-dots { position: absolute; left: 0; right: 0; bottom: 18px; z-index: 5; display: flex; justify-content: center; gap: 2px; }
.hs-dots button { height: 28px; width: 22px; display: grid; place-items: center; transition: width .4s; }
.hs-dots button::before { content: ''; display: block; width: 8px; height: 8px; border-radius: 99px; background: rgba(26, 29, 38, .22); transition: width .4s, background .4s; }
.hs-dots button:hover::before { background: rgba(26, 29, 38, .45); }
.hs-dots button.on { width: 42px; }
.hs-dots button.on::before { width: 30px; background: var(--gold); }
.hero-slider.koyu .hs-dots button:not(.on)::before { background: rgba(255, 255, 255, .4); }
/* Koyu slayt */
.hero-dark .hero-media::after { background: linear-gradient(100deg, rgba(20, 24, 34, .84) 0%, rgba(20, 24, 34, .62) 38%, rgba(20, 24, 34, .12) 72%, transparent 100%); }
.hero-dark h1, .hero-dark .hero-title { color: #fff; }
.hero-dark p { color: rgba(255, 255, 255, .8); }
.hero-dark .eyebrow { color: var(--gold-soft); }
.hero-dark .btn-primary { background: #fff; color: var(--ink); }
.hero-dark .btn-primary:hover { background: var(--gold); color: #fff; }
.hero-dark .btn-outline { border-color: rgba(255, 255, 255, .6); color: #fff; }
.hero-dark .btn-outline:hover { background: #fff; color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
    .hs-js .hs-slide .hero-inner > * { transition: none; }
}

/* Baslik + sagda "Tumunu Gor" */
.sh-with-link { position: relative; max-width: none; }
.sh-with-link > :not(.sh-link) { max-width: 640px; margin-inline: auto; }
.sh-link { position: absolute; right: 0; bottom: 4px; }

/* --- 9. Güven şeridi ---------------------------------------------------- */
.trust { border-bottom: 1px solid var(--line); }
/* Anasayfa guven seridi: buyuk serif rakam + kisa aciklama, ince altin ayiraclar */
.vaatler { background: var(--cream); border-bottom: 1px solid var(--line); }
.vaat-liste { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.vaat { position: relative; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 30px 16px; }
.vaat + .vaat::before { content: ''; position: absolute; left: 0; top: 50%; width: 1px; height: 44px; transform: translateY(-50%); background: linear-gradient(transparent, var(--gold), transparent); opacity: .55; }
.vaat b { font-family: var(--ff-title); font-weight: 500; font-size: 2.5rem; line-height: 1; color: var(--gold-deep); letter-spacing: -.01em; white-space: nowrap; font-variant-numeric: lining-nums; font-feature-settings: "lnum" 1; }
.vaat b small { font-size: .95rem; font-style: italic; margin-left: 4px; color: var(--gold-deep); letter-spacing: .02em; }
.vaat span { font-size: .74rem; line-height: 1.55; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; gap: 14px; align-items: center; padding: 26px 20px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-item strong { display: block; font-size: .84rem; color: var(--ink); font-weight: 500; letter-spacing: .04em; }
.trust-item span { font-size: .76rem; color: var(--ink-3); }

/* --- 10. Kategori kartları ---------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card { position: relative; overflow: hidden; border-radius: var(--r-md); aspect-ratio: 4/5; display: block; background: var(--sand); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2, .8, .2, 1); }
.cat-card:hover img { transform: scale(1.07); }
.cat-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 38%, rgba(26, 29, 38, .78)); }
.cat-card-body { position: absolute; inset: auto 0 0 0; padding: 26px; z-index: 2; color: #fff; }
.cat-card-body h3 { color: #fff; font-size: 1.6rem; }
.cat-card-body span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); }
.cat-card-body .go { display: inline-flex; align-items: center; gap: 8px; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; margin-top: 10px; opacity: 0; transform: translateY(6px); transition: all .3s; }
.cat-card:hover .go { opacity: 1; transform: none; }

/* --- 11. Ürün kartı ----------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 22px; }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }

.p-card { position: relative; display: flex; flex-direction: column; }
.p-thumb { position: relative; overflow: hidden; border-radius: var(--r-md); background: var(--sand); aspect-ratio: 3/4; display: block; }
.p-thumb img { width: 100%; height: 100%; object-fit: cover; transition: opacity .5s, transform .8s; }
.p-thumb .img-b { position: absolute; inset: 0; opacity: 0; }
.p-card:hover .img-b { opacity: 1; }
.p-card:hover .img-a { transform: scale(1.04); }
.p-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 3; }
.badge {
    font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
    padding: 5px 10px; border-radius: var(--r-sm); background: var(--ink); color: #fff;
}
.badge-gold { background: var(--gold); color: #fff; }
/* Indirim: fotograf ustunde beyaz zemin, koyu fusya yazi (7.5:1); tugla kirmizisi fusyayla catisiyordu */
.badge-red { background: #fff; color: var(--gold-deep); box-shadow: inset 0 0 0 1px var(--gold-soft); }
.badge-green { background: var(--green); }
.badge-light { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.p-fav {
    position: absolute; top: 10px; right: 10px; z-index: 3;
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, .92);
    display: grid; place-items: center; color: var(--ink-2); box-shadow: var(--sh-1);
    opacity: 0; transform: translateY(-4px); transition: all .25s;
}
.p-card:hover .p-fav { opacity: 1; transform: none; }
.p-fav:hover, .p-fav.on { color: var(--red); }
.p-fav.on svg { fill: currentColor; }
.p-quick {
    position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3;
    display: flex; gap: 8px; opacity: 0; transform: translateY(10px); transition: all .3s;
}
.p-card:hover .p-quick { opacity: 1; transform: none; }
.p-quick .btn { flex: 1; padding: 11px 10px; font-size: .72rem; letter-spacing: .08em; }
.p-info { padding: 14px 2px 0; display: flex; flex-direction: column; flex: 1; }
.p-cat { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.p-name { font-size: .93rem; color: var(--ink); margin: 5px 0 8px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.9em; }
.p-name:hover { color: var(--gold-deep); }
.p-rating { display: flex; align-items: center; gap: 5px; font-size: .74rem; color: var(--ink-3); margin-bottom: 8px; }
.stars { display: inline-flex; gap: 1px; color: var(--gold); }
.p-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 9px; margin-top: auto; }
.p-price .now, .p-price .was { white-space: nowrap; }
.p-price .now { font-size: 1.05rem; color: var(--ink); font-weight: 500; }
.p-price .was { font-size: .84rem; }
.p-price .off { font-size: .7rem; color: var(--gold-deep); border: 1px solid currentColor; padding: 1px 6px; border-radius: var(--r-sm); }
.p-swatches { display: flex; gap: 6px; margin-top: 10px; }
.swatch { width: 17px; height: 17px; border-radius: 50%; border: 1px solid var(--line); box-shadow: inset 0 0 0 2px #fff; cursor: pointer; }
.swatch.on { border-color: var(--ink); }
.sw-altin { background: linear-gradient(135deg, #E5C783, #B98E4C); }
.sw-gumus { background: linear-gradient(135deg, #EDEDED, #B9B9B9); }
.sw-rose { background: linear-gradient(135deg, #F0C5B4, #D08D74); }
.sw-siyah { background: linear-gradient(135deg, #4A4A4A, #1C1C1C); }

/* --- 12. Slider ---------------------------------------------------------- */
.rail-wrap { position: relative; }
.rail { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { flex: 0 0 clamp(220px, 23%, 300px); scroll-snap-align: start; }
.rail-nav { position: absolute; top: 34%; width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: var(--sh-2); display: grid; place-items: center; z-index: 4; }
.rail-nav:hover { background: var(--ink); color: #fff; }
.rail-prev { left: -18px; } .rail-next { right: -18px; }

/* --- 13. Şeritler / kampanya -------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 0; }
.split-media { min-height: 520px; position: relative; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-body { padding: 64px clamp(28px, 5vw, 80px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.split-body h2 { margin: 14px 0 18px; }

.promo-strip { position: relative; overflow: hidden; }
.promo-strip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-strip::after { content: ''; position: absolute; inset: 0; background: rgba(26, 29, 38, .5); }
.promo-strip .container { position: relative; z-index: 2; padding-block: 96px; color: #fff; text-align: center; }
.promo-strip h2 { color: #fff; }
.promo-strip p { color: #E5DCCF; max-width: 540px; margin: 14px auto 26px; }

.countdown { display: flex; justify-content: center; gap: 12px; margin: 24px 0 4px; }
.countdown div { background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22); border-radius: var(--r-md); padding: 12px 16px; min-width: 72px; }
.countdown b { display: block; font-family: var(--ff-title); font-size: 1.7rem; color: #fff; line-height: 1; }
.countdown span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-soft); }

/* --- 14. Yorumlar / Instagram -------------------------------------------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px 28px;
    display: flex; flex-direction: column; gap: 14px;
}
.testi p { font-family: var(--ff-title); font-size: 1.12rem; color: var(--ink); font-style: italic; line-height: 1.55; }
.testi-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--sand); display: grid; place-items: center; font-family: var(--ff-title); color: var(--gold-deep); font-size: 1.05rem; }
.testi-who strong { font-size: .88rem; color: var(--ink); font-weight: 500; display: block; }
.testi-who span:not(.avatar) { font-size: .74rem; color: var(--ink-3); }

.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.insta-grid a { position: relative; aspect-ratio: 1; overflow: hidden; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.insta-grid a:hover img { transform: scale(1.08); }
.insta-grid a::after { content: ''; position: absolute; inset: 0; background: rgba(26, 29, 38, .3); opacity: 0; transition: opacity .3s; }
.insta-grid a:hover::after { opacity: 1; }

/* --- 15. Bülten ---------------------------------------------------------- */
.newsletter { background: var(--ink); color: #DCD3C8; padding: 76px 0; }
.newsletter h2 { color: #fff; }
.newsletter p { color: #B7ABA0; margin-top: 12px; }
.nl-form { display: flex; gap: 10px; max-width: 520px; margin: 26px auto 12px; }
.nl-form input {
    flex: 1; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--r-sm); padding: 14px 18px; color: #fff; outline: 0;
}
.nl-form input::placeholder { color: #8E8378; }
.nl-form input:focus { border-color: var(--gold); }

/* --- 16. Footer ---------------------------------------------------------- */
.footer { background: var(--cream); border-top: 1px solid var(--line); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h5 { font-family: var(--ff-body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); margin-bottom: 18px; }
.footer a { display: block; padding: 5px 0; font-size: .9rem; color: var(--ink-2); }
.footer a:hover { color: var(--gold-deep); }
.footer-about p { font-size: .9rem; color: var(--ink-2); margin: 16px 0; max-width: 300px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; padding: 0; }
.socials a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.contact-line { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--ink-2); padding: 6px 0; }
.contact-line svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
    border-top: 1px solid var(--line); margin-top: 50px; padding: 22px 0;
    display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
    font-size: .82rem; color: var(--ink-2);
}
.pay-logos { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pay-chip {
    display: inline-flex; align-items: center; white-space: nowrap;
    border: 1px solid var(--line); background: #fff; border-radius: var(--r-sm);
    padding: 5px 10px; font-size: .72rem; letter-spacing: .06em; color: var(--ink-2); font-weight: 500;
}
.pay-chip svg { width: 13px; height: 13px; flex: none; margin-right: 5px; color: var(--gold-deep); }

/* --- 17. Sayfa başlığı / breadcrumb -------------------------------------- */
.page-head { background: var(--cream); border-bottom: 1px solid var(--line); padding: 42px 0 46px; }
.page-head h1 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.page-head p { color: var(--ink-3); margin-top: 10px; max-width: 620px; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .78rem; color: var(--ink-3); margin-bottom: 14px; }
.crumbs a:hover { color: var(--gold-deep); }
.crumbs span { color: var(--gold-deep); }

/* --- 18. Katalog / filtreler ---------------------------------------------- */
.catalog-layout { display: grid; grid-template-columns: 268px 1fr; gap: 40px; align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 18px); }
.filter-block { border-bottom: 1px solid var(--line); padding: 20px 0; }
.filter-block:first-child { padding-top: 0; }
.filter-block h5 { font-family: var(--ff-body); font-size: .74rem; letter-spacing: .17em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.filter-list { display: flex; flex-direction: column; gap: 9px; max-height: 260px; overflow-y: auto; }
.check { display: flex; align-items: center; gap: 10px; font-size: .88rem; cursor: pointer; color: var(--ink-2); }
.check input { width: 16px; height: 16px; accent-color: var(--gold-deep); cursor: pointer; }
.check .c { margin-left: auto; font-size: .74rem; color: var(--ink-3); }
.check:hover { color: var(--ink); }
.range-row { display: flex; align-items: center; gap: 10px; }
.range-row input[type=number] { width: 100%; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 9px 11px; outline: 0; font-size: .86rem; }
.range-row input:focus { border-color: var(--gold); }
input[type=range] { width: 100%; accent-color: var(--gold-deep); }

.catalog-toolbar {
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 26px;
}
.select {
    border: 1px solid var(--line); border-radius: var(--r-sm); padding: 10px 34px 10px 14px;
    font-size: .84rem; background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237C7168' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
    appearance: none; cursor: pointer; outline: 0;
}
.select:focus { border-color: var(--gold); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.chip {
    display: inline-flex; align-items: center; gap: 7px; font-size: .78rem;
    background: var(--sand); border-radius: var(--r-pill); padding: 6px 12px; color: var(--ink-2);
}
.chip button { color: var(--ink-3); display: grid; place-items: center; }
.chip button:hover { color: var(--red); }

.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; }
.pagination a, .pagination span {
    min-width: 40px; height: 40px; display: grid; place-items: center; padding: 0 12px;
    border: 1px solid var(--line); border-radius: var(--r-sm); font-size: .86rem;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold-deep); }
.pagination .on { background: var(--ink); color: #fff; border-color: var(--ink); }

/* --- 19. Ürün detay ------------------------------------------------------ */
.pd-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: start; }
.pd-gallery { display: grid; grid-template-columns: 88px 1fr; gap: 14px; position: sticky; top: calc(var(--header-h) + 18px); }
.pd-thumbs { display: flex; flex-direction: column; gap: 10px; }
.pd-thumbs button { border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 3/4; background: var(--sand); }
.pd-thumbs button.on { border-color: var(--gold-deep); }
.pd-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pd-main { position: relative; border-radius: var(--r-md); overflow: hidden; background: var(--sand); aspect-ratio: 3/4; }
.pd-main img { width: 100%; height: 100%; object-fit: cover; }
/* Dokunmatik cihazda "gorsele gelin" ipucunun karsiligi yok. */
.pd-zoom-hint { position: absolute; bottom: 14px; right: 14px; background: rgba(255, 255, 255, .92); border-radius: var(--r-pill); padding: 7px 14px; font-size: .72rem; color: var(--ink-2); display: flex; gap: 6px; align-items: center; }
@media (hover: none) { .pd-zoom-hint { display: none; } }
/* Renk önizlemesi: o renge ait fotoğraf yoksa ana fotoğraf seçilen renge boyanır (urun.html > gallery) */
.pd-ton-not { position: absolute; top: 14px; left: 14px; background: rgba(255, 255, 255, .94); border-radius: var(--r-pill); padding: 6px 12px; font-size: .72rem; color: var(--ink-2); }
.pd-ton-not[hidden] { display: none; }
.pd-main img, .pd-thumbs img { transition: filter .35s ease; }
.ton-gumus .pd-main img, .ton-gumus .pd-thumbs img { filter: grayscale(1) brightness(1.04) contrast(1.05); }
.ton-siyah .pd-main img, .ton-siyah .pd-thumbs img { filter: grayscale(1) contrast(1.6) brightness(.95); }
.ton-altin .pd-main img, .ton-altin .pd-thumbs img { filter: grayscale(1) sepia(1) saturate(1.8) hue-rotate(-6deg) brightness(1.02); }
.ton-rose .pd-main img, .ton-rose .pd-thumbs img { filter: grayscale(1) sepia(.9) saturate(1.5) hue-rotate(-30deg) brightness(1.03); }

.pd-title { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin: 8px 0 12px; }
.pd-meta { display: flex; align-items: center; gap: 16px; font-size: .82rem; color: var(--ink-3); flex-wrap: wrap; }
.pd-price { display: flex; align-items: baseline; gap: 12px; margin: 22px 0 6px; }
.pd-price .now { font-size: 2rem; color: var(--ink); font-family: var(--ff-title); font-weight: 600; }
.pd-price .was { font-size: 1.05rem; }
.installment { background: var(--cream); border: 1px dashed var(--gold-soft); border-radius: var(--r-md); padding: 12px 16px; font-size: .84rem; margin: 14px 0 22px; }
.installment b { color: var(--gold-deep); }
.opt-group { margin-bottom: 22px; }
.opt-group > label { display: block; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.opt-group > label span { color: var(--ink-3); letter-spacing: 0; text-transform: none; font-size: .84rem; }
.opts { display: flex; flex-wrap: wrap; gap: 9px; }
.opt {
    border: 1px solid var(--line); border-radius: var(--r-sm); padding: 9px 16px;
    font-size: .84rem; cursor: pointer; background: #fff; transition: all .2s;
}
.opt:hover { border-color: var(--gold); }
.opt.on { border-color: var(--ink); background: var(--ink); color: #fff; }
.opt-color { display: flex; align-items: center; gap: 8px; }
.opt-color i { width: 15px; height: 15px; border-radius: 50%; display: block; }
.pd-actions { display: flex; gap: 12px; margin: 26px 0 18px; }
.stock-line { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--green); }
.stock-line.low { color: var(--red); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.pd-usp { border-top: 1px solid var(--line); margin-top: 26px; padding-top: 22px; display: grid; gap: 14px; }
.pd-usp div { display: flex; gap: 12px; align-items: flex-start; font-size: .86rem; }
.pd-usp svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.tabs { border-bottom: 1px solid var(--line); display: flex; gap: 28px; overflow-x: auto; }
.tabs button {
    padding: 14px 2px; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-3); border-bottom: 2px solid transparent; white-space: nowrap;
}
.tabs button.on { color: var(--ink); border-color: var(--gold); }
/* justify-content:center tasan satirda ilk sekmeyi soldan kesiyordu; otomatik kenar boslugu kesmeden ortalar. */
.tabs-center > :first-child { margin-left: auto; }
.tabs-center > :last-child { margin-right: auto; }
.tab-panel { display: none; padding: 32px 0; }
.tab-panel.on { display: block; }
.prose { max-width: 780px; color: var(--ink-2); }
.prose p { margin-bottom: 14px; }
.prose h4 { margin: 22px 0 10px; }
/* Bolum basliklari ustteki listeye/tabloya yapisiyordu */
.prose h2, .prose h3 { margin: 38px 0 12px; }
.prose > :first-child { margin-top: 0; }
/* SSS: bolum basliklari ustteki soruya yapisiyordu */
.faq-baslik { margin-top: 40px; }
.faq-baslik:first-child { margin-top: 0; }
.prose ul, .prose ol, .prose table { margin-bottom: 14px; }
.trust-item > b { white-space: nowrap; }
.hata-404 h1 { margin: 14px 0 12px; }
.hata-404 p { color: var(--ink-3); margin-bottom: 30px; }
.prose ul { list-style: none; display: grid; gap: 8px; }
.prose ul li { padding-left: 22px; position: relative; }
.prose ul li::before { content: ''; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.spec-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: .88rem; }
.spec-table tr td:first-child { color: var(--ink-3); width: 210px; }
.spec-table tr td:last-child { color: var(--ink); }

.review-summary { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: center; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.rs-score { text-align: center; }
.rs-score b { font-family: var(--ff-title); font-size: 3.4rem; color: var(--ink); line-height: 1; }
.rs-bars { display: grid; gap: 7px; }
.rs-bar { display: flex; align-items: center; gap: 12px; font-size: .8rem; color: var(--ink-3); }
.rs-bar .track { flex: 1; height: 6px; background: var(--sand); border-radius: var(--r-pill); overflow: hidden; }
.rs-bar .track i { display: block; height: 100%; background: var(--gold); }
.review { padding: 22px 0; border-bottom: 1px solid var(--line); display: flex; gap: 16px; }
.review .rv-body { flex: 1; }
.review .rv-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.review .rv-head strong { font-size: .92rem; color: var(--ink); font-weight: 500; }
.review .rv-date { font-size: .76rem; color: var(--ink-3); margin-left: auto; }
.verified { font-size: .72rem; color: var(--green); display: inline-flex; align-items: center; gap: 4px; }

/* --- 20. Sepet / ödeme ---------------------------------------------------- */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.cart-table th {
    text-align: left; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
    color: var(--ink-3); font-weight: 500; padding: 0 0 14px; border-bottom: 1px solid var(--line);
}
.cart-row td { padding: 22px 0; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-row td:last-child { padding-left: 20px; }
.cart-prod { display: flex; gap: 18px; align-items: center; }
.cart-prod img { width: 92px; height: 112px; object-fit: cover; border-radius: var(--r-sm); background: var(--sand); }
.cart-prod .cp-name { font-size: .95rem; color: var(--ink); }
.cart-prod .cp-meta { font-size: .78rem; color: var(--ink-3); margin-top: 4px; }

.summary { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; position: sticky; top: calc(var(--header-h) + 18px); }
.summary h4 { font-family: var(--ff-body); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; }
.sum-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: .9rem; }
.sum-row.total { border-top: 1px solid var(--line); margin-top: 12px; padding-top: 16px; font-size: 1.15rem; color: var(--ink); font-weight: 500; }
.sum-row.total b { font-family: var(--ff-title); font-size: 1.5rem; }
.coupon-row { display: flex; gap: 8px; margin: 16px 0; }
.coupon-row input { flex: 1; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 11px 14px; outline: 0; background: #fff; font-size: .86rem; }
.coupon-row input:focus { border-color: var(--gold); }

.steps { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 10px; font-size: .8rem; color: var(--ink-3); }
.step i { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-style: normal; font-size: .78rem; }
.step.on { color: var(--ink); }
.step.on i { background: var(--ink); color: #fff; border-color: var(--ink); }
.step.done i { background: var(--green); border-color: var(--green); color: #fff; }
.step-sep { width: 42px; height: 1px; background: var(--line); flex-shrink: 0; }
/* Dar ekranda adimlar iki satira dusup baglanti cizgileri kiriliyordu:
   yalnizca etkin adimin etiketi gosterilir, digerleri numara olarak kalir. */
@media (max-width: 640px) {
    .steps { flex-wrap: nowrap; gap: 6px; margin-bottom: 30px; }
    .step { gap: 7px; font-size: 0; }
    .step > i { font-size: .74rem; width: 26px; height: 26px; flex-shrink: 0; }
    .step.on { font-size: .74rem; white-space: nowrap; }
    /* Birden fazla adim etkinse yalnizca sonuncusunun etiketi kalsin */
    .step.on:has(~ .step.on) { font-size: 0; }
    .step-sep { width: 18px; }
}

.panel-box { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; margin-bottom: 20px; overflow: hidden; }
.panel-box > header { padding: 18px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
@media (max-width: 640px) { .panel-box > header { flex-wrap: wrap; gap: 8px 12px; } }
.panel-box > header h4 { font-family: var(--ff-body); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; }
.panel-box .pb-body { padding: 24px; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
    border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px;
    outline: 0; background: #fff; font-size: .9rem; width: 100%; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(75, 98, 160, .12); }
.field .hint { font-size: .74rem; color: var(--ink-3); }
.field.err input { border-color: var(--red); }

.radio-card {
    display: flex; gap: 14px; align-items: flex-start; border: 1px solid var(--line);
    border-radius: var(--r-md); padding: 16px 18px; cursor: pointer; transition: all .2s; background: #fff;
}
.radio-card:hover { border-color: var(--gold-soft); }
.radio-card.on { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.radio-card input { margin-top: 3px; accent-color: var(--gold-deep); width: 17px; height: 17px; }
.radio-card .rc-body { flex: 1; }
.radio-card strong { display: block; font-size: .95rem; color: var(--ink); font-weight: 500; }
.radio-card span { font-size: .8rem; color: var(--ink-3); }
.radio-card .rc-logo { font-size: .7rem; font-weight: 600; letter-spacing: .06em; padding: 4px 9px; border-radius: var(--r-sm); background: var(--sand); color: var(--ink-2); }
.pay-methods { display: grid; gap: 12px; }

.cc-preview {
    background: linear-gradient(135deg, #2A3862 0%, var(--gold-deep) 55%, var(--gold) 100%);
    border-radius: var(--r-lg); padding: 24px; color: #fff; aspect-ratio: 1.6; max-width: 340px;
    flex: 0 1 320px; align-self: flex-start;
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: var(--sh-2);
}
.cc-chip { width: 44px; height: 32px; border-radius: 5px; background: linear-gradient(135deg, #E9EDF7, #B7C0D6); }
.cc-num { font-size: clamp(1rem, 4.6vw, 1.25rem); letter-spacing: .1em; font-family: 'Courier New', monospace; white-space: nowrap; }
.cc-foot { display: flex; justify-content: space-between; font-size: .72rem; letter-spacing: .1em; color: #CDBFAC; }

.install-table th, .install-table td { padding: 10px 12px; font-size: .84rem; border-bottom: 1px solid var(--line); text-align: center; }
.install-table th { background: var(--cream); font-weight: 500; color: var(--ink); font-size: .76rem; letter-spacing: .08em; }
.install-table tr td:first-child, .install-table tr th:first-child { text-align: left; }

/* --- 21. Hesabım / tablolar ---------------------------------------------- */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: start; }
/* Genis tablolar 1fr sutununu disari itmesin, kendi icinde kaysin. */
.account-layout > *, .cart-layout > *, .pd-layout > * { min-width: 0; }
.acc-side { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: #fff; }
.acc-user { padding: 24px; background: var(--cream); border-bottom: 1px solid var(--line); display: flex; gap: 14px; align-items: center; }
.acc-user .avatar { width: 48px; height: 48px; background: var(--ink); color: var(--gold-soft); font-size: 1.3rem; }
.acc-user strong { display: block; color: var(--ink); font-weight: 500; }
.acc-user span { font-size: .78rem; color: var(--ink-3); }
.acc-menu a {
    display: flex; align-items: center; gap: 12px; padding: 13px 22px;
    font-size: .89rem; color: var(--ink-2); border-left: 2px solid transparent;
}
.acc-menu a svg { width: 17px; height: 17px; color: var(--gold-deep); flex-shrink: 0; }
.acc-menu a:hover { background: var(--cream); }
.acc-menu a.on { border-color: var(--gold); color: var(--ink); background: var(--cream); font-weight: 500; }
.acc-menu a svg { color: var(--ink-3); }
.acc-menu a.on svg { color: var(--gold-deep); }
.acc-menu .cnt { margin-left: auto; background: var(--gold); color: #fff; font-size: .68rem; border-radius: var(--r-pill); padding: 1px 8px; }

.data-table { border: 1px solid var(--line); border-radius: var(--r-md); overflow-x: auto; background: #fff; }
/* Yana kaydırılan tabloda kenar gölgesi: devamı olduğu anlaşılsın, içerik kaydıkça kaybolur */
.data-table {
    background:
        linear-gradient(to right, #fff 30%, rgba(255,255,255,0)) left / 36px 100% no-repeat local,
        linear-gradient(to left, #fff 30%, rgba(255,255,255,0)) right / 36px 100% no-repeat local,
        radial-gradient(farthest-side at 0 50%, rgba(26,29,38,.16), rgba(26,29,38,0)) left / 12px 100% no-repeat scroll,
        radial-gradient(farthest-side at 100% 50%, rgba(26,29,38,.16), rgba(26,29,38,0)) right / 12px 100% no-repeat scroll,
        #fff;
}
.data-table th, .data-table td { white-space: nowrap; }
.data-table table { width: 100%; }
.data-table th {
    text-align: left; padding: 14px 18px; background: var(--cream); border-bottom: 1px solid var(--line);
    font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); font-weight: 500; white-space: nowrap;
}
.data-table td { padding: 15px 18px; border-bottom: 1px solid var(--line); font-size: .88rem; vertical-align: middle; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover { background: #FDFBF8; }
.tag {
    display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; padding: 4px 11px;
    border-radius: var(--r-pill); background: var(--sand); color: var(--ink-2); white-space: nowrap;
}
.tag-green { background: #E4F2ED; color: #256B54; }
.tag-red { background: #F8E7E6; color: var(--red); }
.tag-blue { background: #E6EEF8; color: #2F5C9E; }
.tag-gold { background: #F6EEDF; color: var(--gold-deep); }
.tag-gray { background: #EFEAE3; color: var(--ink-3); }

/* --- 22. Yardımcı bloklar ------------------------------------------------- */
.note {
    display: flex; gap: 12px; padding: 14px 18px; border-radius: var(--r-md); font-size: .86rem;
    background: var(--cream); border: 1px solid var(--line); color: var(--ink-2);
}
.note svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-deep); }
.note-green { background: #EFF7F4; border-color: #CFE6DD; color: #26614F; }
.note-green svg { color: var(--green); }
.note-red { background: #FBF0EF; border-color: #F0D6D4; color: #8E3730; }
.note-red svg { color: var(--red); }
.note-blue { background: #F0F4FA; border-color: #D6E1F0; color: #2F5A91; }
.note-blue svg { color: var(--blue); }

.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-head {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 0; text-align: left; font-size: 1.02rem; color: var(--ink); font-family: var(--ff-title);
}
.accordion-head svg { flex-shrink: 0; color: var(--gold-deep); transition: transform .3s; }
.accordion-item.on .accordion-head svg { transform: rotate(45deg); }
.accordion-body { display: none; padding-bottom: 22px; color: var(--ink-2); max-width: 860px; }
.accordion-item.on .accordion-body { display: block; }

/* Yukarı çık butonu */
.to-top {
    position: fixed; right: 22px; bottom: 22px; z-index: 80;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--ink); color: #fff;
    display: grid; place-items: center;
    box-shadow: var(--sh-2);
    opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: opacity .28s ease, transform .28s ease, visibility .28s, background .2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold-deep); }
.to-top:active { transform: scale(.94); }

.toast-wrap { position: fixed; right: 22px; bottom: 84px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.toast {
    background: var(--ink); color: #fff; border-radius: var(--r-md); padding: 14px 20px;
    box-shadow: var(--sh-3); font-size: .88rem; display: flex; align-items: center; gap: 11px;
    animation: toastIn .3s ease;
}
.toast svg { color: var(--gold-soft); }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px); } }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.post-card .pc-media { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 3/2; background: var(--sand); }
.post-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.post-card:hover img { transform: scale(1.05); }
.post-card .pc-meta { display: flex; gap: 12px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); margin: 16px 0 8px; }
.post-card h3 { font-size: 1.28rem; }
.post-card p { color: var(--ink-3); font-size: .9rem; margin-top: 10px; }

.map-embed {
    border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); height: 340px; position: relative;
    /* Canli surumde Google Maps gelene kadar sade bir sokak deseni */
    background-color: var(--sand);
    background-image:
        linear-gradient(90deg, transparent 0 calc(50% - 7px), #fff calc(50% - 7px) calc(50% + 7px), transparent calc(50% + 7px)),
        linear-gradient(0deg, transparent 0 calc(58% - 5px), #fff calc(58% - 5px) calc(58% + 5px), transparent calc(58% + 5px)),
        linear-gradient(28deg, transparent 0 calc(40% - 3px), rgba(255,255,255,.85) calc(40% - 3px) calc(40% + 3px), transparent calc(40% + 3px)),
        repeating-linear-gradient(0deg, transparent 0 58px, rgba(255,255,255,.55) 58px 60px),
        repeating-linear-gradient(90deg, transparent 0 74px, rgba(255,255,255,.55) 74px 76px);
}
.map-embed img { display: none; }
.map-pin { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.map-pin div { background: #fff; border-radius: var(--r-md); padding: 18px 24px; box-shadow: var(--sh-2); }

/* --- 23. Giriş / kayıt ----------------------------------------------------- */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - var(--header-h)); }
.auth-media { position: relative; background: var(--sand); }
.auth-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.auth-media .am-body { position: absolute; inset: auto 0 0 0; padding: 40px; padding-top: 120px; background: linear-gradient(rgba(26, 29, 38, 0), rgba(26, 29, 38, .62) 35%, rgba(26, 29, 38, .88)); color: #fff; }
.auth-media h2 { color: #fff; }
.auth-body { display: grid; place-items: center; padding: 60px 24px; }
.auth-card { width: 100%; max-width: 420px; }
.auth-tabs { display: flex; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; margin-bottom: 28px; }
.auth-tabs button { flex: 1; padding: 12px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.auth-tabs button.on { background: var(--ink); color: #fff; }
.or-line { display: flex; align-items: center; gap: 14px; color: var(--ink-3); font-size: .76rem; margin: 22px 0; }
.or-line::before, .or-line::after { content: ''; flex: 1; height: 1px; background: var(--line); }

/* --- 24. Duyarlılık --------------------------------------------------------- */
@media (max-width: 1180px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; row-gap: 34px; }
    .mega-grid { grid-template-columns: repeat(3, 1fr); }
    .mega-promo { display: none; }
}
@media (max-width: 1024px) {
    .nav { display: none; }
    .burger { display: grid; flex-shrink: 0; }
    .brand { min-width: 0; }
    .header-actions { margin-left: auto; }
    .catalog-layout { grid-template-columns: 1fr; }
    .filters { position: fixed; inset: 0 auto 0 0; width: min(340px, 88vw); background: #fff; z-index: 97; padding: 24px; overflow-y: auto; transform: translateX(-100%); transition: transform .3s, visibility 0s linear .3s; visibility: hidden; box-shadow: var(--sh-3); }
    .filters.open { transform: none; visibility: visible; transition: transform .3s; }
    .cart-layout, .pd-layout, .account-layout, .split, .auth-wrap { grid-template-columns: 1fr; }
    .pd-gallery { position: static; }
    .split-media { min-height: 380px; }
    .summary { position: static; }
    .testi-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .vaat-liste { grid-template-columns: repeat(2, 1fr); }
    .vaat { flex-direction: column; gap: 8px; text-align: center; padding: 24px 10px; }
    .vaat:nth-child(3)::before { display: none; }
    .vaat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .vaat b { font-size: 2.1rem; }
    .vaat span { font-size: .72rem; letter-spacing: .06em; }
    .trust-item:nth-child(2) { border-right: 0; }
    .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .auth-media { display: none; }
}
@media (max-width: 760px) {
    .section { padding: 56px 0; }
    .container { padding-inline: 18px; }
    .product-grid, .product-grid.cols-3, .product-grid.cols-5 { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cat-card { aspect-ratio: 3/4; }
    .cat-card-body { padding: 16px; }
    .cat-card-body h3 { font-size: 1.25rem; line-height: 1.2; }
    .tabs { gap: 20px; }
    .tabs button { letter-spacing: .08em; font-size: .74rem; }
    .testi-grid, .blog-grid, .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
    .hero { min-height: 640px; }
    .hero-slider .hero { min-height: 560px; }
    .hero-slider .hero-inner { padding: 36px 0 60px; }
    .hero-slider .hero-badges { gap: 10px 18px; margin-top: 22px; }
    .hero-dark .hero-media::after { background: linear-gradient(180deg, rgba(20, 24, 34, .55) 0%, rgba(20, 24, 34, .72) 55%, rgba(20, 24, 34, .8) 100%); }
    .sh-link { position: static; display: inline-block; margin-top: 14px; }
    /* Dar ekranda yazi fotografin ustune biniyor; soldan saga degil, tum alana hafif bir ortu. */
    .hero-media::after { background: linear-gradient(180deg, rgba(246, 248, 254, .72) 0%, rgba(246, 248, 254, .9) 55%, rgba(246, 248, 254, .94) 100%); }
    .pd-gallery { grid-template-columns: 1fr; }
    .pd-thumbs { flex-direction: row; overflow-x: auto; }
    .pd-thumbs button { flex: 0 0 74px; }
    .review-summary { grid-template-columns: 1fr; gap: 20px; }
    .cart-table thead { display: none; }
    .cart-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 18px 0; border-bottom: 1px solid var(--line); }
    .cart-row td, .cart-row td:last-child { border: 0; padding: 0; }
    .cart-row td:first-child { grid-column: 1 / -1; }
    .rail > * { flex-basis: 68%; }
    .rail-nav { display: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .brand-name { font-size: 1.2rem; }
    .brand-tag { font-size: .7rem; letter-spacing: .34em; }
    .brand img { width: 38px; height: 38px; }
    .pd-actions { flex-direction: column; }
    .section-head { margin-bottom: 32px; }

    /* Mobil header: taşmayı önle, arama ve sepet her zaman görünsün */
    .hide-sm { display: none !important; }
    .header-inner { gap: 10px; }
    .icon-btn { width: 40px; height: 40px; }
    .brand-text { min-width: 0; }
    .search-box { padding: 22px 0 20px; }
    .search-field input { font-size: 1.05rem; min-width: 0; }
    .search-results { grid-template-columns: 1fr; max-height: 52vh; }
    .search-hints a { font-size: .76rem; padding: 4px 10px; }
    .to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
    .toast-wrap { right: 16px; bottom: 70px; left: 16px; }
}
@media (max-width: 420px) {
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* --- 25. Baskı ------------------------------------------------------------- */
@media print {
    .header, .footer, .announce, .drawer, .drawer-scrim, .no-print { display: none !important; }
    body { background: #fff; }
}

/* Metin icindeki cizgi ikonlar (sepet notlari, guvence satiri, dogrulanmis yorum) */
.note span > svg:first-child { display: inline-block; width: 15px; height: 15px; vertical-align: -3px; margin: 0 6px 0 0; }
.guvence-satir svg { display: inline-block; width: 14px; height: 14px; vertical-align: -2px; margin-right: 5px; color: var(--gold-deep); }
.verified svg { width: 12px; height: 12px; }

/* Ayar yer tutuculari (assets/js/ayarlar.js): cevredeki yazinin stilini aynen alir */
data[data-ayar] { font: inherit; color: inherit; letter-spacing: inherit; }

/* Cormorant'in eski usul rakamlari "1.240"i "I.240" gibi gosteriyordu; tum sitede duz (lining) rakam */
body { font-variant-numeric: lining-nums; font-feature-settings: "lnum" 1; }
/* Kalın yazı: yüklü gerçek kalınlık (Jost 600, Cormorant 600); tarayıcının taklit kalını kullanılmaz */
b, strong { font-weight: 600; }
.sum-row.total b { font-weight: 500; }

/* Blog yazısı içindeki görsel: dikey ürün fotoğrafı ekranı kaplamasın */
.prose figure { margin: 32px 0; }
.prose figure img { width: 100%; max-height: 420px; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); }
.prose figcaption { margin-top: 10px; font-size: .82rem; color: var(--ink-3); text-align: center; }

/* Dosya seçme alanı: tarayıcının varsayılan düğmesi yerine site düğmesi görünümü */
input[type=file] { font: inherit; font-size: .84rem; color: var(--ink-3); }
input[type=file]::file-selector-button { font: inherit; font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); background: #fff; border: 1px solid var(--ink); border-radius: var(--r-sm); padding: 9px 16px; margin-right: 14px; cursor: pointer; transition: background .2s, color .2s; }
input[type=file]::file-selector-button:hover { background: var(--ink); color: #fff; }

/* Kayma önleme: üst şerit (40px) ve menü (78px + 1px çizgi) JS ile eklenene kadar yerleri boş tutulur.
   app.js boot() menüyü ekledikten sonra #siteChrome'u kaldırır. */
#siteChrome { height: calc(40px + var(--header-h) + 1px); }

/* 360px ve altı: logo alanı küçülebilsin, menü satırı taşmasın (320px'de 4px yatay kaydırma vardı) */
@media (max-width: 360px) {
    .brand { flex-shrink: 1; gap: 8px; }
    .brand img { width: 40px; height: 40px; }
    .brand-name { font-size: 1.18rem; letter-spacing: .12em; }
    .brand-tag { letter-spacing: .24em; }
    .header-inner { gap: 6px; }
}

/* Telefonda dokunma alanları: görünüm aynı kalır, dokunulabilir alan büyür */
@media (max-width: 767px) {
    .hs-dots button { position: relative; }
    .hs-dots button::after { content: ''; position: absolute; inset: -8px -6px; }
    .chip button { position: relative; }
    .chip button::after { content: ''; position: absolute; inset: -7px; }
    .crumbs { gap: 6px 8px; }
    .crumbs a { display: inline-flex; align-items: center; justify-content: center; min-height: 32px; min-width: 32px; }
    .contact-line a, .note a, .pb-body a:not(.btn), label.check a { display: inline-flex; align-items: center; min-height: 32px; }
}

/* Klavye odağı: adet kutusu ve filtre paneli (mobil) de görünür odak işareti alsın */
.qty:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(75, 98, 160, .12); }

/* Vitrinler (.vitrin: sabit sayıda ürün/yazı gösteren ızgaralar): sütun sayısına göre yarım kalan son satır gizlenir,
   tek başına kalan kart olmaz. Koleksiyon ve favori listesi gibi gerçek listelerde bu sınıf yok. */
@media (min-width: 1181px) {
    .product-grid.vitrin > :nth-child(4n+1):nth-last-child(-n+3):nth-child(n+5),
    .product-grid.vitrin > :nth-child(4n+1):nth-last-child(-n+3):nth-child(n+5) ~ * { display: none; }
}
@media (min-width: 761px) and (max-width: 1180px) {
    .product-grid.vitrin > :nth-child(3n+1):nth-last-child(-n+2):nth-child(n+4),
    .product-grid.vitrin > :nth-child(3n+1):nth-last-child(-n+2):nth-child(n+4) ~ * { display: none; }
}
@media (max-width: 760px) {
    .product-grid.vitrin > :nth-child(2n+1):last-child:nth-child(n+3) { display: none; }
}
@media (min-width: 761px) and (max-width: 1024px) {
    /* İki sütunda üç kart: blog vitrininde üçüncü gizlenir, yorum/koşul kartlarında son kart tam genişlik */
    .blog-grid.vitrin > :nth-child(2n+1):last-child:nth-child(n+3) { display: none; }
    .testi-grid > :nth-child(2n+1):last-child { grid-column: 1 / -1; }
}

/* Yana taşan sekme şeridi: devamı olan kenar soluklaşır (JS: data-kaydir) */
.tabs[data-kaydir="sag"] { -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 44px), transparent); mask-image: linear-gradient(90deg, #000 calc(100% - 44px), transparent); }
.tabs[data-kaydir="sol"] { -webkit-mask-image: linear-gradient(270deg, #000 calc(100% - 44px), transparent); mask-image: linear-gradient(270deg, #000 calc(100% - 44px), transparent); }
.tabs[data-kaydir="iki"] { -webkit-mask-image: linear-gradient(90deg, transparent, #000 44px, #000 calc(100% - 44px), transparent); mask-image: linear-gradient(90deg, transparent, #000 44px, #000 calc(100% - 44px), transparent); }

/* Özellik listesi (Atölye, Üretim Anlayışımız): ikonlu, çizgiyle ayrılmış maddeler */
.ozellik-liste { list-style: none; margin: 22px 0 0; padding: 0; width: 100%; max-width: 480px; }
.ozellik-liste li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-top: 1px solid rgba(75, 98, 160, .14); color: var(--ink); font-size: .94rem; line-height: 1.5; }
.ozellik-liste li:last-child { border-bottom: 1px solid rgba(75, 98, 160, .14); }
.ozellik-liste li::before {
    content: ''; flex-shrink: 0; width: 22px; height: 22px; margin-top: 0; border-radius: 50%;
    background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.split-cta { margin-top: 28px; }

/* Mobil ve tablet: fotoğraf kısalır, metin fotoğrafın üzerine taşan beyaz kart olur */
@media (max-width: 1024px) {
    .split-kart { padding-bottom: 48px; }
    .split-kart.split { background: var(--sand); }
    .split-kart .split-media { min-height: 0; aspect-ratio: 4 / 3; max-height: 460px; }
    .split-kart .split-body {
        position: relative; z-index: 1; margin: -72px 16px 0; padding: 30px 22px 26px;
        background: #fff; border-radius: var(--r-lg); box-shadow: 0 12px 34px rgba(26, 29, 38, .10);
    }
    .split-kart .split-body h2 { font-size: 1.9rem; margin: 10px 0 12px; }
    .split-kart .split-body > p { font-size: .95rem; }
    .split-kart .split-cta { align-self: stretch; justify-content: center; border: 1px solid var(--ink); padding: 14px 18px; border-radius: var(--r-sm); background: #fff; }
}
@media (min-width: 761px) and (max-width: 1024px) {
    .split-kart .split-body { margin: -110px 48px 0; padding: 40px 44px 36px; }
}

/* Koleksiyon: mobil filtre düğmesi ve panel başlığı (koleksiyon.html) */
#openFilters, #filterHead { display: none; }
@media (max-width: 1024px) { #openFilters { display: inline-flex; } #filterHead { display: flex; } }

/* Koleksiyon ızgarası JS ile dolana kadar yer tutar: alttaki bölüm önce görünüp sonra aşağı itilmesin */
#grid:empty:not([data-cizildi]) { min-height: 100vh; }

/* Alt bilgi: telif solda, tasarım imzası sağda (mobilde alt alta, ortalı) */
.footer-bottom .telif { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 14px; }
.footer-bottom .imza { display: inline-flex; align-items: center; gap: 5px; }
.footer-bottom .imza a { display: inline; padding: 0; font-size: inherit; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--gold); }
.footer-bottom .imza a:hover { color: var(--gold-deep); }
@media (max-width: 760px) {
    .footer-bottom { gap: 8px; }
}

/* Ürün künyesi (puan, kod, satış): mobilde satıra sarılınca satır sonunda "·" asılı kalıyordu; ayraç gizlenir, boşluk ayırır */
@media (max-width: 760px) {
    .pd-meta { gap: 6px 14px; }
    .pd-meta .pd-ayrac { display: none; }
}

/* Bağlantı görünümlü buton (ölü # bağlantısı yerine) */
.bag-gibi { background: none; border: 0; padding: 0; font: inherit; color: var(--gold-deep); text-decoration: underline; cursor: pointer; }
.bag-gibi:hover { color: var(--ink); }

/* Giriş kartındaki ana başlık: sayfada tek h1 olmalı, görünüm h2 ile aynı */
.h2-gibi { font-size: 1.6rem; }

/* Sonradan JS ile doldurulan bölümler yer ayırır: içerik gelince sayfa kaymaz */
#favGrid:empty, #crossSell:empty, #postProducts:empty { min-height: 430px; }
#moreposts:empty { min-height: 330px; }
#sumRows:empty { min-height: 300px; }
/* JS ile dolan başlık ve listeler için yer ayırma (yüklenirken kayma olmaz) */
#pTitle:empty { min-height: 1.15em; }
#pMeta:empty { min-height: 1.3em; }

#fCats:empty { min-height: 176px; }
#fColors:empty { min-height: 120px; }
#fMaterials:empty { min-height: 96px; }
#fRating:empty { min-height: 120px; }

/* Mobilde dokunma alanı en az 32px (görünüm değişmez, basılabilir alan büyür) */
@media (max-width: 767px) {
    .footer-col a, .footer-bottom a, .imza a { display: inline-flex; align-items: center; min-height: 32px; }
    input[type=checkbox], input[type=radio] { width: 18px; height: 18px; }
    label.inline, .check-row label { min-height: 32px; display: inline-flex; align-items: center; gap: 8px; }
}

/* Sepet tablosu dolmadan önce yer ayırır (vitrin bölümü aşağı kaymasın) */
.cart-table:not([data-cizildi]) { min-height: 430px; }
#pdInfo:empty { min-height: 620px; }

/* Mobilde arama etiketleri ve ürün adedi kutusu: dokunma alanı 32px */
@media (max-width: 767px) {
    .search-hints a, .sh-link, .link-underline { min-height: 32px; display: inline-flex; align-items: center; }
    #qMinus, #qPlus { width: 36px; height: 36px; }
    #qVal { min-height: 32px; }
    .sup-btn { min-height: 32px; }
    .bag-gibi { min-height: 32px; display: inline-flex; align-items: center; }
}

/* Sayfa, içerik yerleşene kadar gösterilmez: yükleme sırasında zıplama olmaz.
   app.js hazır olunca <html> öğesine .hazir ekler; kod çalışmazsa 1,2 saniyede kendiliğinden görünür. */
html:not(.hazir) body { visibility: hidden; animation: sayfaGoster 0s 1.2s forwards; }
@keyframes sayfaGoster { to { visibility: visible; } }

/* Klavye odağı: her giriş kutusunda görünür halka */
input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(75, 98, 160, .3);
}
/* Ürün kartındaki favori düğmesi klavyeyle gelindiğinde de görünür */
.p-card:focus-within .p-fav, .p-fav:focus-visible { opacity: 1; transform: none; }
