/* ============================================================
   Dr. Hakkı Beşkardeşler — "Sıcak & Kişisel" tasarım sistemi
   Konsept 2. Tema (Porto) dosyalarından bağımsız, temiz stil.
   ============================================================ */

:root {
    --paper:     #f5efe4;   /* sayfa zemini (sıcak kağıt) */
    --paper-2:   #efe6d5;   /* yükseltilmiş / alıntı zemini */
    --card:      #fffdf8;   /* kart zemini */
    --ink:       #2c2418;   /* başlıklar (sıcak siyah-kahve) */
    --body:      #574c3c;   /* gövde metni */
    --muted:     #8a7c64;   /* ikincil metin */
    --line:      #e3d9c9;   /* çizgiler/kenarlıklar */
    --green:     #35624f;   /* ana vurgu (çam yeşili) */
    --green-d:   #274b3c;   /* vurgu koyu (hover) */
    --gold:      #b07a2e;   /* ikincil vurgu / etiketler */
    --footer:    #2c2418;   /* alt bilgi zemini */
    --footer-fg: rgba(243, 236, 221, .74);

    --serif: "Newsreader", Georgia, "Iowan Old Style", "Palatino Linotype", serif;
    --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --radius:    14px;
    --radius-sm: 9px;
    --shadow-sm: 0 2px 10px rgba(60, 45, 20, .07);
    --shadow-md: 0 12px 30px rgba(60, 45, 20, .14);
    --shadow-lg: 0 22px 50px rgba(60, 45, 20, .18);
    --ease: cubic-bezier(.33, 1, .68, 1);
    --container: 1160px;
}

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

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--body);
    font-family: var(--serif);
    font-size: 1.05rem;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-d); }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 600; line-height: 1.15; letter-spacing: -.01em; margin: 0 0 .5em; text-wrap: balance; }

::selection { background: var(--green); color: #f3ecdd; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }

/* ---- yardımcılar ---- */
.eyebrow {
    font-family: var(--sans);
    font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold); margin: 0 0 14px;
}
.section { padding: clamp(48px, 8vw, 90px) 0; }
.section-tint { background: var(--paper-2); }
.lead { font-size: 1.18rem; color: var(--body); }
.text-muted { color: var(--muted); }

/* ---- butonlar ---- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--sans); font-size: .9rem; font-weight: 600;
    padding: 12px 26px; border-radius: 999px; border: 1.5px solid transparent;
    cursor: pointer; transition: all .22s var(--ease); text-align: center;
}
.btn-solid { background: var(--green); color: #f3ecdd; }
.btn-solid:hover { background: var(--green-d); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(39, 75, 60, .28); }
.btn-ghost { border-color: var(--green); color: var(--green); }
.btn-ghost:hover { background: var(--green); color: #f3ecdd; transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: .82rem; }

/* ============================================================
   BAŞLIK / MENÜ
   ============================================================ */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(245, 239, 228, .92);
    backdrop-filter: saturate(150%) blur(8px);
    border-bottom: 1px solid var(--line);
}
.site-header .bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .monogram {
    width: 44px; height: 44px; border-radius: 50%; flex: none;
    display: grid; place-items: center; background: var(--green); color: #f3ecdd;
    font-family: var(--serif); font-weight: 600; font-size: 1.05rem;
    overflow: hidden;
}
.brand .monogram img { width: 100%; height: 100%; object-fit: cover; }
.brand .bt { display: flex; flex-direction: column; line-height: 1.2; }
.brand .bt strong { color: var(--ink); font-family: var(--serif); font-weight: 600; font-size: 1.08rem; }
.brand .bt small { font-family: var(--sans); font-size: .64rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
    font-family: var(--sans); font-size: .86rem; font-weight: 500; color: var(--body);
    padding: 9px 15px; border-radius: 8px; white-space: nowrap;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--green); background: rgba(53, 98, 79, .09); }

/* açılır menü */
.nav .has-sub { position: relative; }
.nav .submenu {
    position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md); padding: 8px; margin: 0; list-style: none;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: all .2s var(--ease); z-index: 20;
}
.nav .has-sub:hover .submenu, .nav .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .submenu li { margin: 0; }
.nav .submenu a { display: block; font-size: .84rem; padding: 8px 12px; border-radius: 6px; color: var(--body); }
.nav .submenu a:hover { background: rgba(53, 98, 79, .09); color: var(--green); }

.nav-toggle {
    display: none; background: none; border: 1.5px solid var(--line); border-radius: 8px;
    width: 44px; height: 44px; cursor: pointer; color: var(--ink); align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 940px) {
    .nav-toggle { display: inline-flex; }
    .nav {
        position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
        background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px clamp(18px, 4vw, 40px) 20px;
        box-shadow: var(--shadow-md); max-height: calc(100vh - 78px); overflow-y: auto;
        transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
        transition: transform .22s var(--ease), opacity .22s var(--ease), visibility .22s var(--ease);
    }
    .nav.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
    .nav a { padding: 12px 14px; font-size: .95rem; }
    .nav .submenu {
        position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
        border: none; border-left: 2px solid var(--line); border-radius: 0; margin: 2px 0 6px 14px; padding: 2px 0 2px 8px;
    }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(40px, 7vw, 76px) 0; }
.hero .grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: .5em; }
.hero p { font-size: 1.15rem; max-width: 48ch; margin: 0 0 26px; }
.hero .btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-portrait {
    position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5; background: linear-gradient(150deg, #cdb78d, #6f5a3a);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero-portrait figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 20px 16px;
    font-family: var(--sans); font-size: .72rem; letter-spacing: .08em; color: #f7f0e2;
    background: linear-gradient(to top, rgba(44, 36, 24, .75), transparent);
}

/* Hero foto slaytı — fade geçiş */
.hero-slider {
    position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 3 / 2; background: linear-gradient(150deg, #cdb78d, #6f5a3a);
}
.hero-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transition: opacity 0.8s ease; will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide-cap {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 20px 14px;
    font-family: var(--sans); font-size: .78rem; letter-spacing: .04em; color: #f7f0e2;
    background: linear-gradient(to top, rgba(44, 36, 24, .78), transparent);
}
.hero-slider:has(.hero-dots) .hero-slide-cap { bottom: 26px; }
.hero-dots {
    position: absolute; left: 0; right: 0; bottom: 12px; z-index: 2;
    display: flex; gap: 7px; justify-content: center;
}
.hero-dot {
    width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
    background: rgba(255, 255, 255, .5); transition: background .2s var(--ease), transform .2s var(--ease);
}
.hero-dot:hover { background: rgba(255, 255, 255, .8); }
.hero-dot.active { background: #fff; transform: scale(1.25); }

@media (max-width: 800px) {
    .hero .grid { grid-template-columns: 1fr; }
    .hero-portrait { max-width: 320px; margin: 0 auto; order: -1; }
    .hero-slider { order: -1; aspect-ratio: 16 / 9; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-slide { transition: none; }
}

/* ============================================================
   ALINTI ŞERİDİ
   ============================================================ */
.quote-band { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-band blockquote { margin: 0; max-width: 760px; }
.quote-band p { font-size: clamp(1.25rem, 2.6vw, 1.7rem); font-style: italic; color: var(--ink); line-height: 1.45; margin: 0 0 14px; }
.quote-band cite { font-family: var(--sans); font-style: normal; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* ============================================================
   BÖLÜM BAŞLIĞI
   ============================================================ */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin: 0; }
.section-head .sub { color: var(--muted); font-size: .98rem; margin-top: 4px; }
.section-head .more { font-family: var(--sans); font-size: .86rem; font-weight: 600; }

/* ============================================================
   KARTLAR (arşiv / basın / dergi / video)
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 26px; }
.card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
    transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card .thumb { aspect-ratio: 3 / 2; overflow: hidden; background: var(--paper-2); position: relative; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .thumb img { transform: scale(1.05); }
.card .thumb .play {
    position: absolute; inset: 0; display: grid; place-items: center; color: #fff;
    background: rgba(44, 36, 24, .28);
}
.card .thumb .play svg { width: 54px; height: 54px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.card .body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card .kicker { font-family: var(--sans); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.card h3 { font-size: 1.16rem; margin: 0 0 10px; line-height: 1.3; }
.card h3 a { color: var(--ink); }
.card h3 a:hover { color: var(--green); }
.card .excerpt { font-size: .95rem; color: var(--muted); margin: 0 0 16px; flex: 1; }
.card .card-link { font-family: var(--sans); font-size: .84rem; font-weight: 600; color: var(--green); margin-top: auto; display: inline-flex; align-items: center; gap: 6px; }
.card .card-link svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.card:hover .card-link svg { transform: translateX(3px); }

/* ============================================================
   GALERİ IZGARASI
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.gallery-grid.cols-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.tile {
    position: relative; display: block; border-radius: var(--radius-sm); overflow: hidden;
    aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); background: var(--paper-2);
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tile:hover img { transform: scale(1.06); }
.tile .cap {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 12px;
    font-family: var(--sans); font-size: .8rem; font-weight: 600; color: #fff;
    background: linear-gradient(to top, rgba(44, 36, 24, .8), transparent);
    opacity: 0; transform: translateY(6px); transition: all .25s var(--ease);
}
.tile:hover .cap { opacity: 1; transform: translateY(0); }
.tile.album::after {
    content: ""; position: absolute; inset: 0; border: 3px solid var(--card); border-radius: var(--radius-sm);
    box-shadow: 6px 6px 0 -3px var(--paper-2), 12px 12px 0 -6px rgba(255,253,248,.6); pointer-events: none;
}

/* ============================================================
   SAYFA BAŞLIĞI (iç sayfalar)
   ============================================================ */
.page-header { background: linear-gradient(160deg, #f6f0e6 0%, #efe4d2 100%); border-bottom: 1px solid var(--line); padding: clamp(40px, 6vw, 64px) 0; text-align: center; }
.page-header h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin: 0 0 12px; }
.breadcrumb { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; list-style: none; padding: 0; margin: 0; font-family: var(--sans); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--line); }
.breadcrumb a { color: var(--gold); }

/* ============================================================
   ARŞİV DETAY (tekil içerik)
   ============================================================ */
.article { max-width: 820px; margin: 0 auto; }
.article-media { border-radius: var(--radius); overflow: hidden; margin-bottom: 30px; box-shadow: var(--shadow-md); background: var(--paper-2); }
.article-media img, .article-media video { width: 100%; display: block; }
.article-meta { font-family: var(--sans); font-size: .82rem; color: var(--muted); display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.article-meta .by { color: var(--green); font-weight: 600; }
.article-body { font-size: 1.1rem; line-height: 1.85; }
.article-body p { margin: 0 0 1.2em; }
.article-body img { border-radius: var(--radius-sm); margin: 1.2em 0; }

/* çoklu görsel şeridi */
.media-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin-bottom: 30px; }
.media-strip a, .media-strip .item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); background: var(--paper-2); }
.media-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.media-strip a:hover img { transform: scale(1.05); }

/* paylaş kutusu */
.share { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.share h4 { font-family: var(--sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.share-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: .84rem; font-weight: 600; padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--line); color: var(--ink); }
.share-btn svg { width: 17px; height: 17px; }
.share-btn.fb:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.share-btn.wa:hover { background: #25d366; border-color: #25d366; color: #fff; }
.share-btn.x:hover { background: #111; border-color: #111; color: #fff; }

/* yazar kutusu */
.author-box { margin-top: 36px; display: flex; gap: 18px; align-items: flex-start; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.author-box .ava { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; flex: none; background: var(--green); }
.author-box h4 { margin: 0 0 4px; }
.author-box p { margin: 0; font-size: .95rem; color: var(--muted); }

/* ============================================================
   SAYFALAMA
   ============================================================ */
.pagination { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin-top: 44px; font-family: var(--sans); list-style: none; padding: 0; }
.pagination li a, .pagination li span { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; border-radius: 9px; border: 1px solid var(--line); background: var(--card); color: var(--body); font-size: .9rem; font-weight: 500; }
.pagination li a:hover { border-color: var(--green); color: var(--green); background: rgba(53,98,79,.06); }
.pagination li.active span, .pagination li[aria-current] span { background: var(--green); border-color: var(--green); color: #f3ecdd; }
.pagination li.disabled span { opacity: .4; }

/* ============================================================
   ALT BİLGİ
   ============================================================ */
.site-footer { background: var(--footer); color: var(--footer-fg); border-top: 4px solid var(--green); }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: clamp(44px, 6vw, 66px) 0; }
.site-footer h5 { font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #f3ecdd; margin: 0 0 16px; }
.site-footer p, .site-footer li { color: var(--footer-fg); font-size: .95rem; }
.site-footer a { color: #e8dcc4; }
.site-footer a:hover { color: #fff; }
.footer-about .fbrand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-about .fbrand .monogram { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; background: var(--green); display: grid; place-items: center; color: #f3ecdd; font-weight: 600; }
.footer-about .fbrand strong { color: #f3ecdd; font-size: 1.06rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; line-height: 1.4; }
.footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--gold); }

/* ziyaretçi sayacı (basit) */
.counter-line { display: flex; align-items: center; gap: 10px; margin-top: 18px; flex-wrap: wrap; font-family: var(--sans); font-size: .82rem; }
.counter-line .digits { display: flex; gap: 3px; }
.counter-line .digits b { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-weight: 700; font-size: .92rem; padding: 4px 6px; border-radius: 5px; background: rgba(243, 236, 221, .1); color: #f3ecdd; }
.counter-line .today { color: var(--footer-fg); }

.footer-bottom { border-top: 1px solid rgba(243, 236, 221, .12); }
.footer-bottom .row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 20px 0; flex-wrap: wrap; font-family: var(--sans); font-size: .82rem; color: rgba(243, 236, 221, .55); }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(243,236,221,.2); display: grid; place-items: center; color: #e8dcc4; }
.footer-bottom .socials a:hover { background: var(--green); border-color: var(--green); color: #fff; }
.footer-bottom .socials svg { width: 16px; height: 16px; }

@media (max-width: 780px) {
    .site-footer .cols { grid-template-columns: 1fr; gap: 30px; }
}

/* ---- boş durum ---- */
.empty-note { text-align: center; color: var(--muted); padding: 60px 20px; font-size: 1.05rem; }

/* ---- lightbox (klasik galeri: ileri/geri) ---- */
.lightbox { position: fixed; inset: 0; background: rgba(28, 22, 12, .94); display: none; align-items: center; justify-content: center; z-index: 2000; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox .stage { position: relative; display: flex; align-items: center; justify-content: center; max-width: 94vw; max-height: 90vh; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); background: #1c160c; }
.lightbox .lb-btn {
    position: fixed; top: 50%; transform: translateY(-50%);
    width: 54px; height: 54px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(243, 236, 221, .12); color: #f3ecdd; display: grid; place-items: center;
    transition: background .2s var(--ease), transform .2s var(--ease);
}
.lightbox .lb-btn:hover { background: var(--green); }
.lightbox .lb-btn svg { width: 26px; height: 26px; }
.lightbox .lb-prev { left: 20px; }
.lightbox .lb-next { right: 20px; }
.lightbox .lb-btn[hidden] { display: none; }
.lightbox .close { position: fixed; top: 22px; right: 26px; background: none; border: none; color: #f3ecdd; font-size: 2.6rem; line-height: 1; cursor: pointer; opacity: .85; z-index: 2; }
.lightbox .close:hover { opacity: 1; }
.lightbox .counter {
    position: fixed; top: 26px; left: 50%; transform: translateX(-50%);
    font-family: var(--sans); font-size: .82rem; letter-spacing: .06em; color: rgba(243, 236, 221, .8);
    font-variant-numeric: tabular-nums;
}
.lightbox .lb-bottom {
    position: fixed; left: 0; right: 0; bottom: 16px; padding: 0 70px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.lightbox .caption {
    text-align: center; font-family: var(--sans); font-size: .9rem; color: #f3ecdd;
}
.lightbox .lb-share { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; justify-content: center;
    background: rgba(243, 236, 221, .08); border: 1px solid rgba(243, 236, 221, .14); border-radius: 999px; padding: 7px 10px 7px 16px; }
.lightbox .lb-share-label { font-family: var(--sans); font-size: .8rem; color: rgba(243, 236, 221, .8); margin-right: 2px; }
.lightbox .lb-s { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
    border: none; cursor: pointer; background: rgba(243, 236, 221, .12); color: #f3ecdd; transition: background .18s var(--ease), transform .18s var(--ease); }
.lightbox .lb-s:hover { transform: translateY(-2px); }
.lightbox .lb-s svg { width: 17px; height: 17px; }
.lightbox .lb-s.fb:hover { background: #1877f2; }
.lightbox .lb-s.wa:hover { background: #25d366; }
.lightbox .lb-s.pg:hover, .lightbox .lb-s.copy:hover { background: var(--green); }
.lightbox .lb-copied { font-family: var(--sans); font-size: .78rem; color: #9be3b8; }
@media (max-width: 640px) {
    .lightbox .lb-btn { width: 46px; height: 46px; }
    .lightbox .lb-prev { left: 10px; } .lightbox .lb-next { right: 10px; }
    .lightbox img { max-width: 96vw; }
    .lightbox .lb-bottom { padding: 0 12px; bottom: 10px; }
    .lightbox .lb-share-label { display: none; }
}

/* sayfa içi paylaş: kopyala butonu */
.share-btn.copy { cursor: pointer; background: transparent; }
.share-btn.copy:hover { background: var(--green); border-color: var(--green); color: #fff; }
.share-btn.copied { background: var(--green); border-color: var(--green); color: #fff; }

/* ---- erişilebilirlik ---- */
a:focus-visible, .btn:focus-visible, button:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
