/* ─── Apple-style Design System ─────────────────────────────────────── */

:root {
    --bg: #fbfbfd;
    --surface: #fff;
    --text: #1d1d1f;
    --muted: #86868b;
    --accent: #0071e3;
    --border: rgba(0, 0, 0, .08);
    --radius: 18px;
    --shadow: 0 1px 3px rgba(0, 0, 0, .04), 0 8px 24px rgba(0, 0, 0, .06);

    /* ── Font: TEK KAYNAK ────────────────────────────────────────────────
       Aşağıdaki iki değişken yalnızca "Tema Varsayılanı" seçiliyken geçerli
       yedeklerdir. Ayarlar → Görünüm'de bir font çifti seçilince
       GorunumKatalogu.StilEtiketi bunları ezer; gövde, başlıklar, header,
       hero, breadcrumb, pop-up ve yüzen butonlar hep bu ikisinden okur.
       Hiçbir bileşen kendi font ailesini sabitlemez. */
    --font-govde:  "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    --font-baslik: var(--font-govde);

    --bs-primary: var(--accent);
    --bs-body-bg: var(--bg);
    --bs-body-color: var(--text);
    --bs-font-sans-serif: var(--font-govde);
    --bs-border-radius: var(--radius);
    --bs-card-border-color: var(--border);
    --bs-card-bg: var(--surface);
}

/* ─── Base ───────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-govde);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background .3s cubic-bezier(.4, 0, .2, 1), color .3s cubic-bezier(.4, 0, .2, 1);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color .25s cubic-bezier(.4, 0, .2, 1);
}

a:hover { color: var(--accent); opacity: .8; }

img { max-width: 100%; display: block; }

/* ─── Glass effect ───────────────────────────────────────────────────── */

.glass {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--border);
}

/* ─── Bootstrap overrides ────────────────────────────────────────────── */

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: box-shadow .3s cubic-bezier(.4, 0, .2, 1), transform .3s cubic-bezier(.4, 0, .2, 1);
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .06), 0 16px 40px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
}

.card-body { padding: 1.75rem; }

.btn {
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: -.01em;
    padding: .55rem 1.4rem;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s cubic-bezier(.4, 0, .2, 1), background .2s, border-color .2s;
}

.btn:hover { transform: scale(1.02); }
.btn:active { transform: scale(.98); }

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    border-radius: 999px;
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    opacity: .88;
    box-shadow: 0 4px 16px rgba(0, 113, 227, .35);
}

.btn-outline-primary {
    color: var(--accent);
    border-color: var(--accent);
    border-radius: 999px;
}

.btn-outline-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.02);
}

.btn-secondary {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
    border-radius: 999px;
}

.btn-secondary:hover {
    background: var(--bg);
    border-color: var(--muted);
    color: var(--text);
    transform: scale(1.02);
}

/* ─── Form controls ──────────────────────────────────────────────────── */

.form-control,
.form-select {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    transition: border-color .25s, box-shadow .25s;
}

.form-control:focus,
.form-select:focus {
    background: var(--surface);
    border-color: var(--accent);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, .15);
}

.form-control::placeholder { color: var(--muted); }

/* ─── Navbar ─────────────────────────────────────────────────────────── */

.navbar {
    background: rgba(255, 255, 255, .8) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--text) !important;
}

.nav-link {
    color: var(--text) !important;
    font-weight: 400;
    opacity: .85;
    transition: opacity .2s;
    border-radius: 8px;
    padding: .4rem .75rem !important;
}

.nav-link:hover { opacity: 1; background: var(--border); }
.nav-link.active { opacity: 1; font-weight: 600; }

/* ─── Dropdown ───────────────────────────────────────────────────────── */

.dropdown-menu {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: .5rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.dropdown-item {
    color: var(--text);
    border-radius: 8px;
    padding: .45rem .85rem;
    font-size: .9375rem;
    transition: background .15s;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--bg);
    color: var(--text);
}

/* ─── Section / Container helpers ───────────────────────────────────── */

section {
    padding: 5rem 0;
}

.section-sm { padding: 3rem 0; }
.section-lg { padding: 8rem 0; }

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── Typography ─────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-baslik);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -.04em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.375rem, 2.5vw, 2rem); }
h4 { font-size: 1.375rem; }

p { line-height: 1.75; }

.text-muted { color: var(--muted) !important; }

/* ─── Hero ───────────────────────────────────────────────────────────── */

.hero {
    padding: 7rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 113, 227, .12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.hero-lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--muted);
    max-width: 640px;
    margin: 1.25rem auto 2.5rem;
    line-height: 1.6;
}

/* ─── Product card ───────────────────────────────────────────────────── */

.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .3s cubic-bezier(.4, 0, .2, 1), transform .3s cubic-bezier(.4, 0, .2, 1);
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .06), 0 16px 40px rgba(0, 0, 0, .12) !important;
    transform: translateY(-4px);
}

.product-card img {
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.product-card:hover img { transform: scale(1.04); }

/* ─── Category card ──────────────────────────────────────────────────── */

.category-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s cubic-bezier(.4, 0, .2, 1);
}

.category-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .14) !important;
}

/* ─── Badge ──────────────────────────────────────────────────────────── */

.badge {
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: .01em;
    padding: .35em .75em;
}

.badge-accent {
    background: rgba(0, 113, 227, .1);
    color: var(--accent);
}

/* ─── Blog ───────────────────────────────────────────────────────────── */

.blog-content h1,
.blog-content h2,
.blog-content h3 {
    margin-top: 2rem;
    margin-bottom: .75rem;
}

.blog-content p { line-height: 1.85; }

.blog-content img { border-radius: 14px; margin: 1.5rem 0; }

.blog-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Prose ──────────────────────────────────────────────────────────── */

.prose img { border-radius: 14px; }

/* ─── Footer ─────────────────────────────────────────────────────────── */

footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 2rem;
    color: var(--muted);
    font-size: .9375rem;
}

footer a { color: var(--muted); transition: color .2s; }
footer a:hover { color: var(--text); }

/* ─── Divider ────────────────────────────────────────────────────────── */

hr {
    border: none;
    border-top: 1px solid var(--border);
    opacity: 1;
}

/* ─── Scrollbar (webkit) ─────────────────────────────────────────────── */

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* ─── Utilities ──────────────────────────────────────────────────────── */

.surface { background: var(--surface); }
.bg-surface { background: var(--surface) !important; }
.text-accent { color: var(--accent) !important; }
.border-subtle { border-color: var(--border) !important; }
.radius { border-radius: var(--radius) !important; }
.radius-sm { border-radius: 10px !important; }
.radius-xs { border-radius: 6px !important; }
.shadow-card { box-shadow: var(--shadow) !important; }

/* ─── Alert ──────────────────────────────────────────────────────────── */

.alert {
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
}

/* ─── Table ──────────────────────────────────────────────────────────── */

.table {
    color: var(--text);
}

.table > :not(caption) > * > * {
    background-color: transparent;
    border-bottom-color: var(--border);
    color: var(--text);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(0, 0, 0, .02);
    color: var(--text);
}

/* ─── Modal ──────────────────────────────────────────────────────────── */

.modal-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.modal-header {
    border-bottom-color: var(--border);
}

.modal-footer {
    border-top-color: var(--border);
}

/* ─── Pagination ─────────────────────────────────────────────────────── */

.page-link {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
    border-radius: 8px !important;
    margin: 0 2px;
    transition: background .2s, color .2s;
}

.page-link:hover {
    background: var(--bg);
    border-color: var(--accent);
    color: var(--accent);
}

.page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
}

/* ─── Responsive grid helpers ────────────────────────────────────────── */

@media (max-width: 575.98px) {
    section { padding: 3rem 0; }
    .hero { padding: 4rem 0 3rem; }
    .card-body { padding: 1.25rem; }
    h1 { letter-spacing: -.03em; }
}

@media (max-width: 767.98px) {
    .section-lg { padding: 5rem 0; }
    .navbar .btn { display: none; }
}

@media (min-width: 992px) {
    .hero { padding: 9rem 0 7rem; }
}

/* ─── Smooth page transition ─────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
    .fade-up {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .5s cubic-bezier(.4, 0, .2, 1), transform .5s cubic-bezier(.4, 0, .2, 1);
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

/* ═══ Floating Header — balancia.vamtam.com/psychologist header'ının uyarlaması ═══
   Ölçüler canlı sitede getComputedStyle ile alındı (2026-09-02):
     dış kap   padding 10px 30px             (≤1024px: 10px 20px)
     hap       min-height 60px / radius 60px (≤1024px: 50px)
               bg rgba(255,255,255,.08) + backdrop-filter blur(40px) saturate(1.8)
               padding 5px 5px 5px 20px      (≤1024px: 0 20px 0 15px)
     menü      Manrope 14px/600, line-height 1em, beyaz, padding 12px 15px
               hover → ::before opacity 0→1, bg #E9FFF4, radius 24px, geçiş .3s
               aktif → ::before bg rgba(255,255,255,.2)
     dropdown  bg #E9FFF4, radius 24px, gölge 0 10px 30px rgba(0,0,0,.04)
               üst boşluk 20px, min-width 195px, link padding 13px 15px
     CTA       bg #E9FFF4, radius 80px, padding 16px 30px, 14px/700
               ok rozeti 33px daire (bg #352A44, ikon 13px, margin -7px -22px -7px 0)
               hover → hap #352A44 / metin #FAF2EA, rozet renkleri ters + grow animasyonu

   İki bilinçli sapma:
   1) Balancia'da header sayfayla birlikte kayar. Burada mevcut sticky davranış
      korundu (position:fixed); kaydırıldığında hap Balancia'nın KENDİ sticky
      header token'ına (#352A44) döner ki açık zeminli içerik üzerinde beyaz menü
      okunur kalsın. Koyu hero'su olmayan sayfalarda aynı katı zemin en baştan
      uygulanır (.is-solid — JS ilk boyamadan önce ekler).
   2) Balancia'nın mobil paneli sola 15px kaymış (Elementor stretch artefaktı);
      burada hap genişliğine simetrik hizalandı.
   Not: mono.css'in köşe/gölge sıfırlama kuralları header için bilinçli olarak
   devre dışı bırakıldı — bkz. mono.css içindeki "Header" notu.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Header/hero renkleri SABİT DEĞİL — Ayarlar → Görünüm paletinden türetilir
   (GorunumKatalogu.StilEtiketi → --accent + --accent-alt). Böylece palet ve font
   tüm sitede ortak: paleti panelden değiştirince header, hero, CTA ve dropdown
   birlikte değişir. Balancia'nın orijinal mor–nane ikilisi için panelde
   "Mor–Nane (Balancia)" paleti seçilir (--accent #352A44 / --accent-alt #E9FFF4).
   Aşağıdaki fallback'ler palet "Tema Varsayılanı" iken devreye girer. */
:root {
    --header-h: 70px;
    --ann-h: 0px;

    --bh-koyu:   var(--accent, #352a44);        /* koyu yüzey: hap, ok rozeti, hero    */
    --bh-mint:   color-mix(in srgb, var(--accent-alt, #e9fff4) 34%, #fff);
                                                /* açık yüzey: CTA, dropdown, panel    */
    --bh-krem:   color-mix(in srgb, var(--accent-alt, #e9fff4) 12%, #fff);
                                                /* koyu yüzey üstü metin (CTA hover)   */
    --bh-beyaz:  #ffffff;                       /* menü metni                          */
    --bh-metin:  var(--text, #1b1b1b);          /* açık yüzey üstü metin               */
    --bh-aktif:  rgba(255, 255, 255, .2);       /* aktif menü dolgusu                  */
    --bh-cam:    rgba(255, 255, 255, .08);      /* koyu hero üstündeki cam hap         */
}
/* --header-h = header'ın kapladığı toplam yükseklik (body padding'i ve hero'nun
   header altına kayması bu değere bağlı — hap yüksekliği değişirse burası da değişmeli):
   ≤1024px → 10 (üst pad) + 50 (hap) + 10 (alt pad)                        =  70px
   ≥1025px → 10 (üst boşluk) + 10 + 70 (hap: 60px logo + 5+5) + 10 (alt pad) = 100px */
@media (min-width: 1025px) { :root { --header-h: 100px; } }

/* --ann-h: header üstü duyuru çubuğu yüksekliği. Çubuk yoksa 0 (DuyuruCubugu bileşeni aktifken
   :root'u 44px'e çeker; kapatılınca JS 0'a döndürür). Header ve body bu değişkenle kayar. */
body { padding-top: calc(var(--header-h) + var(--ann-h)); }

.site-header-float {
    position: fixed;
    top: var(--ann-h);
    left: 0;
    right: 0;
    z-index: 1040;
    /* Font da sistemden. Balancia'da menü/CTA GÖVDE fontudur (Manrope), başlıklar
       ayrı bir serif (Baskervville) — bu yüzden header --font-govde'ye bağlı. */
    font-family: var(--font-govde);
}

/* Balancia'da hap masaüstünde 10px daha aşağıda başlar (dış kabın margin-top'u) */
@media (min-width: 1025px) { .site-header-float { padding-top: 10px; } }

.site-header-inner {
    position: relative;
    padding: 10px 20px;
}
@media (min-width: 1025px) { .site-header-inner { padding: 10px 30px; } }

/* ── Hap (pill) ──────────────────────────────────────────────────────
   Varsayılan KATI koyu zemin: iç sayfalarda / koyu hero'su olmayan
   dizilimlerde beyaz menü açık içerik üstünde okunmaz olmasın diye.
   Cam görünüm (Balancia'nın kendi hali) yalnızca sayfada koyu bir hero
   varken ve henüz kaydırılmamışken uygulanır — :has() desteklenmezse
   güvenli tarafta, katı zeminde kalınır. */
.site-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 50px;
    padding: 0 20px 0 15px;
    border-radius: 60px;
    background: var(--bh-koyu);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    backdrop-filter: saturate(180%) blur(40px);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    transition: background .3s, box-shadow .3s;
}
@media (min-width: 1025px) {
    .site-header-bar { min-height: 60px; padding: 5px 5px 5px 20px; }
}

body:has(#main-content > .hero-dark:first-child) .site-header-float:not(.scrolled) .site-header-bar {
    background: var(--bh-cam);
    box-shadow: none;
}

/* ── Logo ── */
.site-header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding-right: 15px;
    text-decoration: none !important;
    color: var(--bh-beyaz);
}
@media (min-width: 1025px) { .site-header-logo { min-width: 190px; } }
/* Hap her iki durumda da koyu (cam → koyu hero üstünde, katı → #352A44), Balancia'da
   logo beyaz. Site logosu siyah-beyaz (mono paleti) olduğu için beyaza çevriliyor.
   Renkli bir logoya geçilirse bu filtre kaldırılmalı, yerine beyaz logo verilmeli. */
.site-header-logo img { max-height: 26px; width: auto; filter: brightness(0) invert(1); }
@media (min-width: 1025px) { .site-header-logo img { max-height: 60px; } }
.site-header-logo-text { font-weight: 700; font-size: 1.0625rem; letter-spacing: -.01em; }

/* ── Masaüstü menü (Balancia kırılımı: >1024px) ── */
.site-header-nav { display: none; }
@media (min-width: 1025px) {
    .site-header-nav { display: flex; flex: 1 1 auto; justify-content: center; }
}

.site-header-menu {
    position: relative;
    z-index: 2;              /* link ::before'unun z-index:-1'i bu bağlamda kalsın */
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.site-header-menu > li { position: relative; display: flex; margin: 0 .1vw; }

.site-header-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-grow: 1;
    padding: 12px clamp(10px, 1.05vw, 15px);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    color: var(--bh-beyaz);
    text-decoration: none !important;
    transition: color .4s;
}
.site-header-link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 24px;
    background: var(--bh-mint);
    opacity: 0;
    transition: opacity .3s;
}
.site-header-link:hover,
.site-header-link:focus-visible,
.site-header-dd:hover > .site-header-link,
.site-header-dd:focus-within > .site-header-link { color: var(--bh-metin); opacity: 1; }
.site-header-link:hover::before,
.site-header-link:focus-visible::before,
.site-header-dd:hover > .site-header-link::before,
.site-header-dd:focus-within > .site-header-link::before { opacity: 1; }

/* Aktif sayfa: beyaz metin + %20 beyaz dolgu (Balancia accent_8) */
.site-header-link.is-active { color: var(--bh-beyaz); }
.site-header-link.is-active::before { background: var(--bh-aktif); opacity: 1; }
.site-header-link.is-active:hover { color: var(--bh-metin); }
.site-header-link.is-active:hover::before { background: var(--bh-mint); }

.site-header-caret { width: 14px; height: 14px; flex: 0 0 auto; fill: currentColor; }

/* ── Dropdown ── */
.site-header-dd-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 20px;
    min-width: 195px;
    padding: 0;
    list-style: none;
    background: var(--bh-mint);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .25s, transform .25s, visibility .25s;
    z-index: 1050;
}
/* Link ile panel arasındaki 20px boşlukta hover kopmasın (görünmez köprü) */
.site-header-dd-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}
.site-header-dd:hover > .site-header-dd-menu,
.site-header-dd:focus-within > .site-header-dd-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header-dd-link {
    display: flex;
    align-items: center;
    padding: 13px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--bh-metin);
    text-decoration: none !important;
    white-space: nowrap;
    transition: background .4s, color .4s;
}
.site-header-dd-menu > li:first-child > .site-header-dd-link { border-radius: 24px 24px 0 0; }
.site-header-dd-menu > li:last-child  > .site-header-dd-link { border-radius: 0 0 24px 24px; }
.site-header-dd-link:hover,
.site-header-dd-link:focus-visible { background: var(--bh-beyaz); color: var(--bh-koyu); opacity: 1; }

/* ── Sağ aksiyonlar ── */
.site-header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}
@media (min-width: 1025px) { .site-header-actions { min-width: 190px; gap: 15px; } }

/* İkon butonlar (AI arama, sosyal) */
.site-header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: var(--bh-beyaz);
    line-height: 1;
    cursor: pointer;
    text-decoration: none !important;
    transition: background .3s, color .3s;
}
.site-header-icon-btn:hover,
.site-header-icon-btn:focus-visible { background: var(--bh-mint); color: var(--bh-metin); opacity: 1; }
.site-header-social { display: none; }
@media (min-width: 1400px) { .site-header-social { display: inline-flex; } }

/* Giriş / üye — cam hap üstünde ince çerçeveli hap.
   1025–1279px arası yer dar: hap yuvarlak ikon butona iner, etiket gizlenir. */
.site-header-ghost {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 80px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap;
    color: var(--bh-beyaz);
    text-decoration: none !important;
    background: transparent;
    cursor: pointer;
    transition: background .3s, color .3s, border-color .3s;
}
@media (min-width: 1025px) { .site-header-ghost { display: inline-flex; } }
@media (max-width: 1279.98px) {
    .site-header-ghost { width: 34px; height: 34px; padding: 0; border-radius: 50%; }
}
.site-header-ghost-label { display: none; }
@media (min-width: 1280px) { .site-header-ghost-label { display: inline; } }
.site-header-ghost:hover,
.site-header-ghost:focus-visible {
    background: var(--bh-mint);
    border-color: var(--bh-mint);
    color: var(--bh-metin);
    opacity: 1;
}

/* Üye dropdown'ı — menü dropdown'ıyla aynı dil */
.site-header-user { position: relative; }
.site-header-user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    min-width: 195px;
    padding: 0;
    list-style: none;
    background: var(--bh-mint);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .25s, transform .25s, visibility .25s;
    z-index: 1050;
    overflow: hidden;
}
.site-header-user-menu::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
}
.site-header-user:hover > .site-header-user-menu,
.site-header-user:focus-within > .site-header-user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.site-header-user-menu button.site-header-dd-link {
    width: 100%;
    border: 0;
    background: transparent;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
}

/* ── CTA — mint hap + koyu ok rozeti ── */
.site-header-cta {
    display: none;
    align-items: center;
    flex-direction: row-reverse;   /* ikon DOM'da önce, görsel olarak sağda */
    gap: 20px;
    padding: 13px 20px;
    border-radius: 80px;
    background: var(--bh-mint);
    color: var(--bh-metin);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
    text-decoration: none !important;
    transition: background .3s, color .3s, box-shadow .3s;
}
@media (min-width: 768px)  { .site-header-cta { display: inline-flex; } }
@media (min-width: 1025px) { .site-header-cta { padding: 16px 30px; } }

.site-header-cta-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin: -5px -12px -5px 0;
    padding: 7px;
    border-radius: 50%;
    background: var(--bh-koyu);
    color: var(--bh-mint);
    transition: background .3s, color .3s;
}
@media (min-width: 1025px) {
    .site-header-cta-icon { margin: -7px -22px -7px 0; padding: 10px; }
}
.site-header-cta-icon svg { position: relative; z-index: 1; width: 13px; height: 13px; fill: currentColor; }
/* Rozetin büyüyüp sönen halkası (Balancia vamtam-btn-grow / -shrink) */
.site-header-cta-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-color: inherit;
    z-index: 0;
}
.site-header-cta:hover .site-header-cta-icon::after,
.site-header-cta:focus-visible .site-header-cta-icon::after { animation: bh-btn-grow .7s ease forwards; }
.site-header-cta:not(:hover):not(:focus-visible) .site-header-cta-icon::after { animation: bh-btn-shrink .7s ease forwards; }
@keyframes bh-btn-grow   { 0% { opacity: 0; scale: 1; } 1% { opacity: 1; } 100% { opacity: 1; scale: 1.25; } }
@keyframes bh-btn-shrink { 0% { opacity: 1; scale: 1.25; } 99% { opacity: 1; } 100% { opacity: 0; scale: 1; } }

.site-header-cta:hover,
.site-header-cta:focus-visible {
    background: var(--bh-koyu);
    color: var(--bh-krem);
    box-shadow: 0 0 10px rgba(7, 8, 7, .898);
    opacity: 1;
}
.site-header-cta:hover .site-header-cta-icon,
.site-header-cta:focus-visible .site-header-cta-icon { background: var(--bh-mint); color: var(--bh-koyu); }

/* CTA metninde soldan sağa büyüyen alt çizgi (vamtam-has-underline-anim) */
.site-header-cta-text {
    display: inline;
    padding-bottom: 2px;
    background-image: linear-gradient(currentColor 0 0);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0% 1px;
    transition: background-size .5s, background-position 0s .5s;
}
.site-header-cta:hover .site-header-cta-text,
.site-header-cta:focus-visible .site-header-cta-text {
    background-position: 100% 100%;
    background-size: 100% 1px;
}

/* ── Hamburger (≤1024px) ── */
.site-header-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 33px;
    padding: 5.5px;
    border: 0;
    background: transparent;
    color: var(--bh-beyaz);
    line-height: 1;
    cursor: pointer;
    transition: color .3s;
}
.site-header-burger:hover { color: var(--bh-mint); }
.site-header-burger svg { width: 22px; height: 22px; fill: currentColor; }
.site-header-burger .bh-icon-close { display: none; }
.site-header-burger[aria-expanded="true"] .bh-icon-open  { display: none; }
.site-header-burger[aria-expanded="true"] .bh-icon-close { display: block; }
@media (min-width: 1025px) { .site-header-burger { display: none; } }

/* ── Mobil panel ── */
.site-header-panel {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 100%;
    margin-top: 5px;
    max-height: 0;
    overflow-y: auto;
    transform: scaleY(0);
    transform-origin: center top;
    background: var(--bh-mint);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    transition: max-height .3s, transform .3s;
    z-index: 1045;
}
.site-header-panel.open {
    max-height: calc(100vh - var(--header-h) - var(--ann-h) - 20px);
    transform: scaleY(1);
}
@media (min-width: 1025px) { .site-header-panel { display: none; } }

.site-header-panel-menu { list-style: none; margin: 0; padding: 0; }

.site-header-panel-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: var(--bh-metin);
    text-decoration: none !important;
    cursor: pointer;
    transition: background .3s, color .3s;
}
.site-header-panel-menu > li:first-child > .site-header-panel-link { border-radius: 24px 24px 0 0; }
.site-header-panel-link:hover,
.site-header-panel-link:focus-visible { background: var(--bh-beyaz); color: var(--bh-koyu); opacity: 1; }
.site-header-panel-link .site-header-caret { transition: transform .3s; }
.site-header-panel-link[aria-expanded="true"] .site-header-caret { transform: rotate(180deg); }

.site-header-panel-sub {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
}
.site-header-panel-sub.open { max-height: 600px; }
.site-header-panel-sub .site-header-panel-link {
    padding-left: 36px;
    font-weight: 500;
    opacity: .82;
}

.site-header-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(53, 42, 68, .1);
}
.site-header-panel-btn {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 20px;
    border: 1px solid var(--bh-koyu);
    border-radius: 80px;
    background: transparent;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--bh-koyu);
    text-decoration: none !important;
    cursor: pointer;
    transition: background .3s, color .3s;
}
.site-header-panel-btn:hover,
.site-header-panel-btn:focus-visible { background: var(--bh-koyu); color: var(--bh-mint); opacity: 1; }
.site-header-panel-btn--dolu { background: var(--bh-koyu); color: var(--bh-mint); }
.site-header-panel-btn--dolu:hover { background: transparent; color: var(--bh-koyu); }

.site-header-panel-social { display: flex; gap: 14px; align-items: center; padding: 0 20px 18px; }
.site-header-panel-social a { color: var(--bh-koyu); font-size: 1.1rem; text-decoration: none !important; }

/* Panel açıkken arka planın kaymasını engelle (Balancia: vamtam-has-mobile-disable-scroll) */
body.site-header-panel-acik { overflow: hidden; }

/* ─── Hero v2 (video / image background) — KOYU ──────────────────────────
   Header, Balancia'daki gibi yarı saydam cam + beyaz metin. Bunun okunur
   olması için hero'nun altındaki yuvarlak kutu koyu olmak zorunda: kutu artık
   ::before ile HER ZAMAN çizilir (video/görsel olmasa da), medya varsa üstüne
   okunabilirlik gradyanı biner. Header bu bölümü .hero-dark sınıfından tanır;
   bulamazsa kendini katı zemine (.is-solid) alır.
   ──────────────────────────────────────────────────────────────────────── */

.hero-v2 {
    position: relative;
    overflow: hidden;
    background: var(--bg);
    margin-top: calc(-1 * var(--header-h));
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 5rem;
    min-height: 100vh;
}

@media (min-width: 768px)  { .hero-v2 { padding-top: calc(var(--header-h) + 5rem); padding-bottom: 7rem; } }
@media (min-width: 992px)  { .hero-v2 { padding-top: calc(var(--header-h) + 10rem); padding-bottom: 9rem; } }

/* Koyu taban kutu — medya yokken de hero koyu kalır */
.hero-v2::before {
    content: "";
    position: absolute;
    inset: 4px;
    z-index: 0;
    border-radius: 24px;
    background: linear-gradient(158deg,
        color-mix(in srgb, var(--bh-koyu) 78%, #000) 0%,
        var(--bh-koyu) 52%,
        color-mix(in srgb, var(--bh-koyu) 86%, #0b1a2a) 100%);
}
@media (min-width: 992px) { .hero-v2::before { border-radius: 48px; } }

.hero-v2-bg {
    position: absolute;
    inset: 4px;
    z-index: 1;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 992px) { .hero-v2-bg { border-radius: 48px; } }

/* Metin kontrastı için üst/alt koyulaştırma */
.hero-v2-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,8,14,.74) 0%, rgba(10,8,14,.34) 40%, rgba(10,8,14,.66) 100%);
}

.hero-v2-bg video {
    width: 100%; height: 100%; object-fit: cover; display: block;
    opacity: .55;
}

.hero-v2-bg img {
    width: 100%; height: 100%; object-fit: cover; display: block; opacity: .55;
}

.hero-v2-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 992px) { .hero-v2-content { padding: 0 3rem; } }

.hero-v2-text { max-width: 42rem; text-align: center; margin: 0 auto; }
@media (min-width: 992px) { .hero-v2-text { text-align: left; margin: 0; max-width: 100%; } }

.hero-v2-h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -.05em;
    line-height: 1.05;
    max-width: 32rem;
    margin: 0 auto 2rem;
    color: #fff;
}
@media (min-width: 992px) { .hero-v2-h1 { margin: 0 0 2rem; } }

.hero-v2-lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .74);
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}
@media (min-width: 992px) { .hero-v2-lead { margin: 0 0 2.5rem; } }

/* Koyu hero üstündeki CTA'lar — header'ın mint/koyu diliyle aynı hizada */
.hero-v2-btns .btn { border-radius: 80px; padding: .9rem 1.75rem; font-weight: 700; }
.hero-v2-btns .btn-primary {
    background: var(--bh-mint); border-color: var(--bh-mint); color: var(--bh-metin);
}
.hero-v2-btns .btn-primary:hover,
.hero-v2-btns .btn-primary:focus-visible {
    background: var(--bh-koyu); border-color: var(--bh-mint); color: var(--bh-krem);
}
.hero-v2-btns .btn-outline-secondary,
.hero-v2-btns .btn-outline-dark {
    background: transparent; border-color: rgba(255, 255, 255, .4); color: #fff;
}
.hero-v2-btns .btn-outline-secondary:hover,
.hero-v2-btns .btn-outline-dark:hover,
.hero-v2-btns .btn-outline-secondary:focus-visible,
.hero-v2-btns .btn-outline-dark:focus-visible {
    background: rgba(255, 255, 255, .14); border-color: #fff; color: #fff;
}

.hero-v2-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    margin-bottom: 0;
}
@media (min-width: 576px) { .hero-v2-btns { flex-direction: row; justify-content: center; } }
@media (min-width: 992px) { .hero-v2-btns { justify-content: flex-start; } }

/* ─── Logo Slider ────────────────────────────────────────────────────── */

.logo-slider-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: .25rem 0 .75rem;
}

.logo-slider-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}
@media (min-width: 768px) {
    .logo-slider-wrap { flex-direction: row; padding: 0 3rem; }
}

.logo-slider-label {
    font-size: .8125rem;
    color: var(--muted);
    white-space: nowrap;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .logo-slider-label { min-width: 8rem; text-align: right; padding-right: 1.5rem; border-right: 1px solid var(--border); }
}

.logo-slider-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 1.25rem 0;
    min-width: 0;
}

.logo-slider-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: logo-scroll 36s linear infinite;
}
.logo-slider-track:hover { animation-play-state: paused; }

@keyframes logo-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.logo-slider-track img {
    height: 20px;
    width: auto;
    flex-shrink: 0;
    display: inline-block;
    opacity: .55;
    filter: grayscale(1);
    transition: opacity .2s, filter .2s;
}
.logo-slider-track img:hover { opacity: 1; filter: none; }

.logo-slider-fade-l {
    position: absolute; inset-y: 0; left: 0; width: 4rem;
    background: linear-gradient(to right, var(--bg), transparent);
    pointer-events: none; z-index: 1;
}
.logo-slider-fade-r {
    position: absolute; inset-y: 0; right: 0; width: 4rem;
    background: linear-gradient(to left, var(--bg), transparent);
    pointer-events: none; z-index: 1;
}

/* ─── Faz 8.5: Accessibility (WCAG AA) ─────────────────────────── */
/* Focus ring — keyboard kullanıcıları için belirgin */
:focus-visible {
    outline: 3px solid #0071e3;
    outline-offset: 2px;
    border-radius: 2px;
}
/* Mouse click'te outline gözükmesin */
:focus:not(:focus-visible) {
    outline: none;
}
/* Skip-link odaklanınca görünür */
.visually-hidden-focusable:focus,
.visually-hidden-focusable:focus-within {
    position: fixed !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
}
/* Reduced motion — kullanıcı animasyon istemiyorsa kapat */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* Form input renk kontrastı — light mode */
input::placeholder, textarea::placeholder {
    color: #6c757d;
    opacity: 1;
}

/* ── Ürün detay: sağ kenarda sabit hızlı aksiyonlar (Yazdır / Teklif İste) ── */
.urun-fixed-actions {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1030;
    flex-direction: column;
    align-items: flex-end;
    gap: .6rem;
    max-width: 100vw;
}
.urun-fixed-actions .uf-print {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.15rem;
    margin-right: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}
.urun-fixed-actions .uf-teklif {
    display: flex;
    align-items: center;
    border-radius: 2rem 0 0 2rem;
    font-weight: 600;
    padding: .7rem 1.2rem;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

/* ── WhatsApp yüzen buton efekti (SET projesindeki .wa-fab'dan) ──
   Hafif yukarı-aşağı süzülme + yeşil nabız halkası */
.wa-fab { animation: waFloat 3s ease-in-out infinite; }
.wa-fab::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid #25d366; animation: waPulse 2.4s ease-out infinite; pointer-events: none;
}
@keyframes waFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes waPulse { 0% { transform: scale(1); opacity: .65; } 100% { transform: scale(1.75); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-fab, .wa-fab::before { animation: none; } }

/* Tekil kurumsal sayfa (/sayfa/*): bölüm partial'larının col-lg-9 daralmasını kaldır —
   içerik tam genişlik akar (kullanıcı kararı, "Ayrı Sayfalar" düzeni) */
.icerik-tam .col-lg-9 { flex: 0 0 100%; max-width: 100%; width: 100%; margin-left: 0 !important; margin-right: 0 !important; }

/* Kart görsel placeholder'ı — bg-light yerine tema yüzeyi */
.kart-gorsel-bos {
    display: flex; align-items: center; justify-content: center;
    background: var(--bg);
    color: var(--muted);
}

/* Filtre hapları (tekil sayfa iç-link navigasyonu) — 44px dokunma hedefi */
.filtre-hap {
    border-radius: 999px;
    padding: .55rem 1.25rem;
    min-height: 44px;
    font-weight: 500;
}

/* ═══ SocialDock — sol altta yüzen buzlu sosyal medya dock'u ═══════════════
   Eski WhatsApp FAB'ın yerine geçti (2026-09-02). Cam reçetesi header hap'ıyla
   aynı aile: --bh-koyu zemin + saturate/blur; ikonlar beyaz, hover'da mint zemin.
   ≥1025px: dikey liste hep açık, + butonu gizli.
   ≤1024px: yalnız + butonu görünür; tıklanınca liste yukarı doğru açılır
   (aria-expanded, Escape/dışarı-tık kapatır — script SocialDock.cshtml'de).
   Dokunma hedefleri ≥44px; prefers-reduced-motion'da geçişler kapalı.
   Çerez banner'ı açıkken _CookieBanner geçici gizler (.social-dock). */
.social-dock {
    position: fixed;
    /* SAĞ alt (Umut'un kararı, 2026-09-03). AI sohbet balonu da varsayılan olarak
       sağda ama tabandan 88-96px yukarıda başlıyor; dock 16px'te olduğundan
       üst üste binmiyorlar (AiChatWidgetMiddleware: "sag", alt 96/88). */
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 998;               /* modallar (1000+) üstte kalır, içerik altta */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.social-dock-list {
    display: flex;
    flex-direction: row;        /* yatay şerit (kullanıcı kararı, 2026-09-02) */
    flex-wrap: wrap;            /* dar ekranda ikinci satıra kırılır */
    justify-content: flex-end;  /* sarınca satırlar sağa yaslansın */
    max-width: calc(100vw - 32px);
    gap: 2px;
    margin: 0;
    padding: 6px;
    list-style: none;
    border-radius: 60px;
    background: color-mix(in srgb, var(--bh-koyu) 82%, transparent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    backdrop-filter: saturate(180%) blur(40px);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
}
.social-dock-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.05rem;
    text-decoration: none;
    transition: background .25s ease, color .25s ease;
}
.social-dock-link:hover,
.social-dock-link:focus-visible {
    background: var(--bh-mint);
    color: var(--bh-metin);
}
.social-dock :focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* + / × butonu — yalnız mobil-tablet */
.social-dock-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: color-mix(in srgb, var(--bh-koyu) 82%, transparent);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    backdrop-filter: saturate(180%) blur(40px);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}
.social-dock-toggle svg { transition: transform .25s ease; }
.social-dock-toggle:hover,
.social-dock-toggle:focus-visible { background: var(--bh-mint); color: var(--bh-metin); }

@media (max-width: 1024px) {
    .social-dock-toggle { display: flex; }
    .social-dock-list {
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        pointer-events: none;
        transition: opacity .25s ease, transform .25s ease, visibility .25s;
    }
    .social-dock.is-open .social-dock-list {
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }
    .social-dock.is-open .social-dock-toggle svg { transform: rotate(45deg); } /* + → × */
}

@media (prefers-reduced-motion: reduce) {
    .social-dock-list, .social-dock-toggle svg, .social-dock-link, .social-dock-toggle { transition: none; }
}
