/* ═══════════════════════════════════════════════
   jpanel — ANA SAYFA CSS
   ═══════════════════════════════════════════════ */

:root {
    --primary:        #DC2626;
    --primary-dark:   #b91c1c;
    --primary-light:  rgba(var(--primary-rgb), 0.12);
    --primary-rgb:    220, 38, 38;
    --bg:             #ffffff;
    --bg2:            #f8fafc;
    --surface:        #ffffff;
    --border:         #e2e8f0;
    --text:           #1e293b;
    --text-muted:     #64748b;
    --heading:        #0f172a;
    --shadow:         0 4px 20px rgba(0,0,0,.08);
    --shadow-lg:      0 12px 40px rgba(0,0,0,.14);
    --radius:         12px;
    --section-py:     80px;
    --transition:     0.3s ease;
    --navbar-h:       72px;
}

/* ── Site geneli scrollbar — site rengi (--primary) ── */
html { scrollbar-width: thin; scrollbar-color: var(--primary) transparent; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 8px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* Dark Mode */
[data-theme="dark"] {
    --bg:         #0d1117;
    --bg2:        #111920;
    --surface:    #182030;
    --border:     #263347;
    --text:       #d4dce8;
    --text-muted: #8896aa;
    --heading:    #ecf0f7;
    --shadow:     0 4px 20px rgba(0,0,0,.4);
    --shadow-lg:  0 12px 40px rgba(0,0,0,.55);
}

/* ── Site Temaları ────────────────────────────────
   data-site-theme, --primary index.php'de inline
   enjekte edilir; temalar yalnızca ek değişkenleri
   ve görsel farklılıkları tanımlar.
─────────────────────────────────────────────── */

/* Modern: yuvarlatılmış, hafif gölgeli */
[data-site-theme="modern"] {
    --radius: 18px;
    --shadow: 0 6px 24px rgba(0,0,0,.10);
    --shadow-lg: 0 16px 48px rgba(0,0,0,.16);
    --bg2: #f5f3ff;
}
[data-site-theme="modern"] .btn-primary,
[data-site-theme="modern"] .hero-btn-primary { border-radius: 50px !important; }
[data-site-theme="modern"] .service-card,
[data-site-theme="modern"] .gallery-item,
[data-site-theme="modern"] .blog-card { border-radius: 20px; }

/* Koyu: hero her zaman karanlık */
[data-site-theme="dark"] {
    --bg:         #0d1117;
    --bg2:        #111920;
    --surface:    #182030;
    --border:     #263347;
    --text:       #d4dce8;
    --text-muted: #8896aa;
    --heading:    #ecf0f7;
    --shadow:     0 4px 20px rgba(0,0,0,.4);
    --shadow-lg:  0 12px 40px rgba(0,0,0,.55);
}

/* Minimal: ince sınırlar, az gölge, net tipografi */
[data-site-theme="minimal"] {
    --radius: 6px;
    --shadow: 0 1px 4px rgba(0,0,0,.06);
    --shadow-lg: 0 4px 16px rgba(0,0,0,.08);
    --bg2: #fafafa;
    --border: #d1d5db;
}
[data-site-theme="minimal"] .section-title { letter-spacing: -.5px; }
[data-site-theme="minimal"] .btn-primary,
[data-site-theme="minimal"] .hero-btn-primary { border-radius: 4px !important; }

/* Canlı: gradient hero, yuvarlatılmış aksiyon butonları */
[data-site-theme="vivid"] {
    --radius: 14px;
    --bg2: #fff7ed;
    --shadow: 0 6px 20px rgba(0,0,0,.10);
    --shadow-lg: 0 14px 42px rgba(0,0,0,.16);
}
[data-site-theme="vivid"] #hero {
    background: linear-gradient(135deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 70%, #fbbf24) 100%) !important;
}
[data-site-theme="vivid"] .btn-primary,
[data-site-theme="vivid"] .hero-btn-primary { border-radius: 50px !important; font-weight: 800; }

/* ── Dark mod: site temalarını ezer (sonra gelir, öncelik kazanır) ── */
[data-theme="dark"] {
    --bg:         #0d1117;
    --bg2:        #111920;
    --surface:    #182030;
    --border:     #263347;
    --text:       #d4dce8;
    --text-muted: #8896aa;
    --heading:    #ecf0f7;
    --shadow:     0 4px 20px rgba(0,0,0,.4);
    --shadow-lg:  0 12px 40px rgba(0,0,0,.55);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--navbar-h); }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; font-size: 16px; transition: background var(--transition), color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

/* ── Bootstrap btn-primary → tema rengi ── */
.btn-primary { background-color: var(--primary) !important; border-color: var(--primary) !important; color: #fff !important; }
.btn-primary:hover, .btn-primary:focus, .btn-primary:active { background-color: var(--primary-dark) !important; border-color: var(--primary-dark) !important; color: #fff !important; }
.btn-primary:focus { box-shadow: 0 0 0 .25rem rgba(var(--primary-rgb), .35) !important; }
.btn-outline-primary { color: var(--primary) !important; border-color: var(--primary) !important; }
.btn-outline-primary:hover, .btn-outline-primary:active { background-color: var(--primary) !important; border-color: var(--primary) !important; color: #fff !important; }

/* ── Loading Screen ── */
#loadingScreen {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loadingScreen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.loader-logo img { height: 60px; margin: 0 auto 12px; object-fit: contain; transition: filter var(--transition); }

/* Loading ekranı — dark modda logo beyaz */
[data-theme="dark"] .loader-logo img  { filter: brightness(0) invert(1); }

/* Auto mod: sistem dark tercih ediyorsa beyaz */
@media (prefers-color-scheme: dark) {
    [data-theme="auto"] .loader-logo img { filter: brightness(0) invert(1); }
}
.loader-name { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.loader-bar { width: 200px; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.loader-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    animation: loadProgress 1.8s ease-in-out forwards;
}
@keyframes loadProgress { from { width: 0 } to { width: 100% } }

/* ── Multipage — İç sayfa başlığı ── */
.page-hero { padding: calc(var(--navbar-h) + 48px) 0 40px; background: var(--primary); color: #fff; }
.page-hero .breadcrumb { font-size: 13px; margin-bottom: 8px; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.8); text-decoration: none; }
.page-hero .breadcrumb-item a:hover { color: #fff; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.65); }
.page-hero-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; margin: 0; line-height: 1.2; }

/* ── Header & Navbar ── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all var(--transition); }
.site-header.scrolled .navbar {
    background: var(--surface) !important;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border);
}
.navbar {
    background: transparent;
    padding: 0;
    height: var(--navbar-h);
    transition: all var(--transition);
}
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo {
    height: 44px;
    object-fit: contain;
    transition: filter var(--transition);
    /* Varsayılan: hero slider üzerinde — beyaz */
    filter: brightness(0) invert(1);
}
.nav-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    transition: color var(--transition);
}

/* Light mod + scroll sonrası → orijinal renkli logo */
.site-header.scrolled .nav-logo { filter: none; }
.site-header.scrolled .nav-logo-text { color: var(--primary); }

/* Dark mod → her zaman beyaz (scroll olsa bile) */
[data-theme="dark"] .nav-logo,
[data-theme="dark"] .site-header.scrolled .nav-logo { filter: brightness(0) invert(1); }
[data-theme="dark"] .nav-logo-text,
[data-theme="dark"] .site-header.scrolled .nav-logo-text { color: #fff; }
.navbar-toggler { border: none; padding: 6px 8px; }
.navbar-toggler:focus { box-shadow: none; }
/* Dark modda hamburger ikonu koyu zeminde görünmez kalıyordu → beyaza çevir */
[data-theme="dark"] .navbar-toggler { border-color: rgba(255,255,255,.25); }
[data-theme="dark"] .navbar-toggler-icon { filter: brightness(0) invert(1); }
/* Mobilde hamburger yanına taşınan arama/sepet/dil öğeleri (JS ile .nav-mobile-actions)
   — 4 buton da tema butonuyla aynı 38px daire, hizalı. */
.nav-mobile-actions .nav-item { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; }
.nav-mobile-actions .jx-lang-nav { position: relative; width: auto; }
/* Dil butonu bar'da tekrar 38px daire olsun (mobil tam-genişlik override'ını ez) */
.nav-mobile-actions .jx-lang-btn {
    width: 38px !important; height: 38px !important;
    border-radius: 50% !important; justify-content: center !important;
    gap: 0 !important; padding: 0 !important;
}
.nav-mobile-actions .jx-lang-dd {
    position: absolute !important; top: calc(100% + 8px) !important;
    right: 0; left: auto; width: auto !important; min-width: 190px !important; margin-top: 0 !important;
    box-shadow: 0 8px 36px rgba(0,0,0,.18);
}
.nav-mobile-actions .navbar-toggler { width: 38px; height: 38px; padding: 0; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

@media (max-width: 991.98px) {
    /* Sitenin en üstünde (hero şeffaf) açılan mobil menü kutusu solid arka planlıdır;
       hero-nav linkleri beyaz kalıp görünmez oluyordu → kutu içinde normal renk */
    .hero-nav .navbar-collapse .nav-link { color: var(--text) !important; }
    .hero-nav .navbar-collapse .nav-link:hover,
    .hero-nav .navbar-collapse .nav-link.active { color: var(--primary) !important; background: var(--primary-light); }
    .nav-mobile-actions .jx-lang-dd { max-width: calc(100vw - 20px); }

    /* Mobilde 4 aksiyon + hamburger + logo dar ekranlara (iPhone 8/8+/SE) sığsın:
       buton/gap/logo küçültülür, taşma olmaz. (Dar media query'leri taşma anında
       eşleşmediğinden boyutlandırma burada — daima eşleşen 992px altında — yapılır.) */
    #mainNav .container { padding-left: 10px; padding-right: 10px; }
    #mainNav .navbar-brand { gap: 6px; min-width: 0; }
    #mainNav .navbar-brand .nav-logo { max-height: 32px; max-width: 128px; }
    .nav-mobile-actions { gap: 5px !important; flex-shrink: 0; flex-wrap: nowrap; }
    .nav-mobile-actions .theme-toggle,
    .nav-mobile-actions .nav-search-btn,
    .nav-mobile-actions .cart-nav-btn,
    .nav-mobile-actions .jx-lang-btn,
    .nav-mobile-actions .navbar-toggler {
        width: 34px !important; height: 34px !important; font-size: 14px !important;
    }
    .nav-mobile-actions .jx-flag-img { width: 20px !important; height: 20px !important; }
}
/* Çok dar (≤340px) — bir tık daha küçült (taşma yoksa bu query de eşleşir) */
@media (max-width: 340px) {
    #mainNav .navbar-brand .nav-logo { max-width: 96px; }
    .nav-mobile-actions .theme-toggle,
    .nav-mobile-actions .nav-search-btn,
    .nav-mobile-actions .cart-nav-btn,
    .nav-mobile-actions .jx-lang-btn,
    .nav-mobile-actions .navbar-toggler { width: 31px !important; height: 31px !important; }
}
.nav-link {
    color: var(--text) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
}
.nav-link:hover { background: var(--primary); color: #fff !important; }
.nav-link.active  { background: var(--primary-light); color: var(--primary) !important; font-weight: 600; }

/* ── Navbar Ürünler Açılır Menüsü ── */
.nav-dropdown-wrap { position: relative !important; }
.nav-dropdown-toggle .nav-dd-arrow {
    font-size: 9px;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform .25s;
}
.nav-dropdown-wrap:hover .nav-dd-arrow,
.nav-dropdown-wrap.open .nav-dd-arrow { transform: rotate(180deg); }

.nav-products-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    width: 220px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s, transform .18s;
    padding-top: 8px;
    padding-bottom: 6px;
    padding-left: 6px;
    padding-right: 6px;
    max-height: 70vh;
    overflow-y: auto;
}
.nav-dropdown-wrap:hover .nav-products-dropdown,
.nav-dropdown-wrap.open .nav-products-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-pd-inner { display: flex; flex-direction: column; }
.nav-pd-col { width: 100%; }
.nav-pd-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--heading) !important;
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 8px;
    transition: background .13s, color .13s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nav-pd-title:hover { background: var(--primary-light); color: var(--primary) !important; }
.nav-pd-thumb {
    width: 22px; height: 22px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
    border: 1px solid var(--border);
}
.nav-pd-sub { display: none; }
.nav-pd-sub-item { display: none; }

.nav-pd-footer {
    border-top: 1px solid var(--border);
    margin: 4px 0 0;
    padding: 6px 4px 2px;
}
.nav-pd-all {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary) !important;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background .13s;
}
.nav-pd-all:hover { background: var(--primary-light); }

/* Hero üzerinde (şeffaf nav) */
.hero-nav .nav-products-dropdown {
    background: rgba(10,18,35,.94);
    border-color: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
}
.hero-nav .nav-pd-title { color: #e2e8f0 !important; }
.hero-nav .nav-pd-title:hover { background: rgba(255,255,255,.08); color: #fff !important; }
.hero-nav .nav-pd-footer { border-color: rgba(255,255,255,.1); }

/* Mobil */
@media (max-width: 991.98px) {
    .nav-products-dropdown {
        position: static;
        transform: none !important;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        border-radius: 8px;
        display: none;
        margin-top: 4px;
        width: 100%;
        max-height: none;
    }
    .nav-dropdown-wrap.open .nav-products-dropdown { display: block; }
}

/* ── Navbar "Devamı" Menüsü — 5'ten fazla link taşınca fazlası buraya (JS: initNavMore) ── */
.nav-more-wrap { position: relative !important; }
.nav-more-dd {
    position: absolute;
    top: 100%;
    right: 0;
    transform: translateY(-4px);
    min-width: 200px;
    margin: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s, transform .18s;
    padding: 8px 6px 6px;
    max-height: 70vh;
    overflow-y: auto;
}
.nav-more-wrap:hover .nav-more-dd,
.nav-more-wrap.open .nav-more-dd { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-more-dd .nav-item { list-style: none; width: 100%; }
.nav-more-dd .nav-link {
    display: block;
    padding: 8px 12px !important;
    border-radius: 8px;
    color: var(--heading) !important;
    font-size: 13.5px;
    white-space: nowrap;
}
.nav-more-dd .nav-link:hover,
.nav-more-dd .nav-link.active { background: var(--primary-light); color: var(--primary) !important; }
.hero-nav .nav-more-dd {
    background: rgba(10,18,35,.94);
    border-color: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
}
.hero-nav .nav-more-dd .nav-link { color: #e2e8f0 !important; }
.hero-nav .nav-more-dd .nav-link:hover,
.hero-nav .nav-more-dd .nav-link.active { background: rgba(255,255,255,.08); color: #fff !important; }

/* Şeffaf hero üzerinde beyaz yazı */
.hero-nav .nav-link { color: #fff !important; }
.hero-nav .nav-link.active { background: rgba(255,255,255,.15); color: #fff !important; }
.hero-nav .nav-link:hover { background: rgba(255,255,255,.9); color: var(--primary) !important; }

.theme-toggle {
    background: var(--bg2);
    border: none;
    color: var(--text);
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: all var(--transition);
}
.theme-toggle:hover { background: var(--primary); color: #fff; }
/* ── WhatsApp Nav Butonu — her zaman yeşil, dark/light/hero modunda sabit ── */
.whatsapp-btn,
.whatsapp-btn.btn,
.whatsapp-btn.btn-primary {
    background:   #25d366 !important;
    border-color: #25d366 !important;
    color:        #fff    !important;
    border-radius: 20px  !important;
    font-weight:  600;
    font-size:    14px;
    padding:      7px 16px !important;
    box-shadow:   0 2px 12px rgba(37,211,102,.35);
    transition:   all var(--transition);
    white-space:  nowrap;
}
.whatsapp-btn:hover,
.whatsapp-btn.btn-primary:hover {
    background:   #1da851 !important;
    border-color: #1da851 !important;
    color:        #fff    !important;
    transform:    translateY(-1px);
    box-shadow:   0 4px 18px rgba(37,211,102,.5);
}
/* Hero şeffaf modda da yeşil kalır */
.hero-nav .whatsapp-btn,
.hero-nav .whatsapp-btn.btn-primary {
    background:   #25d366 !important;
    border-color: #25d366 !important;
    color:        #fff    !important;
}

/* ── Arama Nav Butonu — WA butonuyla aynı şekil, primary renk ── */
.call-nav-btn,
.call-nav-btn.btn,
.call-nav-btn.btn-primary {
    border-radius: 20px  !important;
    font-weight:  600;
    font-size:    14px;
    padding:      7px 16px !important;
    box-shadow:   0 2px 12px rgba(0,0,0,.15);
    transition:   all var(--transition);
    white-space:  nowrap;
}
.call-nav-btn:hover,
.call-nav-btn.btn-primary:hover {
    transform:    translateY(-1px);
    box-shadow:   0 4px 18px rgba(0,0,0,.25);
}

/* ── WhatsApp Yüzen Buton (gelişmiş) ── */
.whatsapp-float-wrap {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9990;
}
.whatsapp-wrap-left {
    right: auto;
    left: 20px;
}
.whatsapp-float-item {
    position: relative;
    display: flex;
}
.whatsapp-float-tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);   /* her zaman butonun SOLUNDA */
    transform: translateY(-50%) translateX(8px) scale(0.95);
    transform-origin: right center;
    background: #075e54;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(7,94,84,.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.whatsapp-wrap-left .whatsapp-float-tooltip {
    right: auto;
    left: calc(100% + 12px);    /* sol buton → tooltip sağda */
    transform: translateY(-50%) translateX(-8px) scale(0.95);
    transform-origin: left center;
}
.whatsapp-float-item:hover .whatsapp-float-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0) scale(1);
}
.whatsapp-float {
    width: 64px;
    height: 64px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 6px 28px rgba(37,211,102,.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(37,211,102,.65);
    color: #fff;
}
@keyframes wpPulse {
    0%   { box-shadow: 0 0 0 0    rgba(37,211,102,.6); }
    70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0    rgba(37,211,102,0); }
}
.whatsapp-float-pulse { animation: wpPulse 2s ease infinite; }

/* ── Arama Yüzen Buton ── */
.call-float-wrap {
    position: fixed;
    right: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-wrap-left {
    right: auto;
    left: 20px;
}
.call-float-tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    transform: translateY(-50%) translateX(6px) scale(0.95);
    transform-origin: right center;
    background: #fff;
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1;
}
.call-wrap-left .call-float-tooltip {
    right: auto;
    left: calc(100% + 12px);
    transform: translateY(-50%) translateX(-6px) scale(0.95);
    transform-origin: left center;
}
.call-float-wrap:hover .call-float-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0) scale(1);
}
.call-float {
    /* boyut inline style ile belirlenir — varsayılan: 52px */
    width: 52px;
    height: 52px;
    font-size: 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}
.call-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
}
@keyframes callPulse {
    0%   { box-shadow: 0 4px 16px rgba(0,0,0,.25), 0 0 0 0    rgba(0,0,0,.25); }
    70%  { box-shadow: 0 4px 16px rgba(0,0,0,.25), 0 0 0 12px rgba(0,0,0,0); }
    100% { box-shadow: 0 4px 16px rgba(0,0,0,.25), 0 0 0 0    rgba(0,0,0,0); }
}
.call-float-pulse { animation: callPulse 2s ease infinite; }

/* ── Sections ── */
.section-padding { padding: var(--section-py) 0; }
.section-bg { background: var(--bg2); }
.section-header { margin-bottom: 48px; }
.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.section-title { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: var(--heading); margin-bottom: 12px; line-height: 1.2; }
.section-subtitle { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ── Scroll Animations ── */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* ── Hero Section ── */
.hero-section { min-height: 100vh; position: relative; overflow: hidden; }
.hero-bg-img { width: 100%; height: 100vh; object-fit: cover; display: block; }
/* Video arka plan (yüklenen/mp4) — object-position + scale ile çerçevelenir */
.hero-bg-video { width: 100%; height: 100vh; object-fit: cover; display: block; transform-origin: center; background: #0f172a; }
/* YouTube/Vimeo tam ekran kaplayan iframe */
.hero-bg-video-wrap { position: absolute; inset: 0; width: 100%; height: 100vh; overflow: hidden; background: #0f172a; }
.hero-bg-iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.78vh; transform: translate(-50%, -50%); border: 0; pointer-events: none; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.75) 0%, rgba(15,23,42,0.45) 100%); }
.hero-static { min-height: 100vh; background: linear-gradient(135deg, #0f172a 0%, var(--primary-dark) 100%); position: relative; display: flex; align-items: center; }
.hero-no-img { width: 100%; height: 100vh; background: linear-gradient(135deg, #0f172a 0%, var(--primary) 100%); }
.carousel-item { position: relative; }
.hero-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: var(--navbar-h) 0 80px;
}
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 20px; margin-bottom: 16px; letter-spacing: 0.5px; }
.hero-title { font-size: clamp(28px, 5vw, 60px); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.hero-subtitle { font-size: clamp(15px, 2vw, 20px); color: rgba(255,255,255,.85); margin-bottom: 8px; font-weight: 500; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 28px; max-width: 560px; }
.hero-btn { border-radius: 30px; padding: 14px 32px; font-weight: 700; font-size: 16px; box-shadow: 0 8px 24px rgba(var(--primary-rgb),.4); transition: transform var(--transition), box-shadow var(--transition); }
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(var(--primary-rgb),.5); }

/* Carousel overrides */
.carousel-indicators [data-bs-target] { width: 10px; height: 10px; border-radius: 50%; border: none; opacity: 0.5; }
.carousel-indicators .active { opacity: 1; background-color: var(--primary); width: 28px; border-radius: 5px; }
.carousel-control-prev, .carousel-control-next { width: 52px; height: 52px; background: var(--primary); border-radius: 50%; margin: auto 16px; backdrop-filter: blur(4px); opacity: .9; transition: opacity .2s, transform .2s; }
.carousel-control-prev:hover, .carousel-control-next:hover { opacity: 1; transform: scale(1.08); }

/* ── Hero Info Bar ── */
.hero-info-bar { background: var(--primary); color: #fff; }
.info-bar-item { display: flex; align-items: center; gap: 10px; padding: 14px 20px; border-right: 1px solid rgba(255,255,255,.2); font-size: 14px; }
.info-bar-item:last-child { border-right: none; }
.info-bar-item i { font-size: 18px; opacity: 0.8; }
.info-bar-item a { color: #fff; }
.info-bar-item a:hover { opacity: 0.8; }

/* ── Hakkımızda ── */
.about-text { font-size: 17px; line-height: 1.8; color: var(--text); margin-bottom: 0; }
.about-extra {
    background: var(--bg2);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin-bottom: 8px;
}
.about-extra p { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin: 0; }
.about-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.about-stats.justify-content-center { justify-content: center; }
.about-stat { text-align: center; }
.stat-num { font-size: 32px; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-lbl { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
/* ── Hakkımızda — Ana resim (sağ kolon) ── */
.about-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-main-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.about-img-wrap:hover .about-main-img { transform: scale(1.03); }

/* ── Hakkımızda — Alt 3 resim grid ── */
.about-gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-gallery-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.about-gallery-item:hover .about-gallery-img { transform: scale(1.06); }

/* ── Eski about-visual-row (artık kullanılmıyor, geriye dönük) ── */
.about-visual-row { display: flex; justify-content: center; }
.about-img-side { position: relative; max-width: 680px; width: 100%; }
.about-stats-overlay {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.about-stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 24px;
    flex: 1;
    min-width: 120px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.about-stat-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.asp-num { font-size: 28px; font-weight: 900; color: var(--primary); line-height: 1; }
.asp-lbl { font-size: 12px; color: var(--text-muted); margin-top: 4px; text-align: center; font-weight: 500; }
.about-stats-row-only { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }
@media (max-width: 575.98px) {
    .about-main-img { height: 260px; }
    .about-gallery-img { height: 160px; }
    .about-stat-pill { padding: 12px 16px; }
    .asp-num { font-size: 22px; }
}

/* ── Firma Görselleri (Hakkımızda) — geriye dönük uyumluluk ── */
.about-firm-img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); display: block; transition: transform var(--transition); }
.about-firm-img:hover { transform: scale(1.02); }

/* eski mission-card (geriye dönük uyumluluk) */
.mission-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; height: 100%; box-shadow: var(--shadow); transition: transform var(--transition); }
.mission-card:hover { transform: translateY(-4px); }
.mission-card-alt { background: var(--primary); border-color: var(--primary); }
.mission-card-alt h4, .mission-card-alt p { color: #fff; }
.mission-icon { font-size: 28px; color: var(--primary); margin-bottom: 12px; }
.mission-card-alt .mission-icon { color: rgba(255,255,255,.8); }
.mission-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--heading); }
.mission-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ── Misyon / Vizyon Kartları (yeni) ── */
.mv-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mv-icon {
    width: 54px; height: 54px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
}
.mv-mission .mv-icon { background: rgba(var(--primary-rgb),.12); color: var(--primary); }
.mv-vision  .mv-icon { background: rgba(59,130,246,.12);          color: #3b82f6; }
.mv-body { flex: 1; }
.mv-title {
    font-size: 18px; font-weight: 700;
    color: var(--heading); margin-bottom: 10px;
}
.mv-mission .mv-title { color: var(--primary); }
.mv-vision  .mv-title { color: #3b82f6; }
.mv-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── Hizmetler ── */
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon-wrap {
    height: 100px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-light);
    font-size: 42px;
    color: var(--primary);
}
.service-img-wrap { height: 180px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-body { padding: 20px 20px 8px; flex: 1; }
.service-title { font-size: 18px; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.service-desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }
.service-link { display: flex; align-items: center; padding: 12px 20px; color: var(--primary); font-weight: 600; font-size: 14px; border-top: 1px solid var(--border); transition: all var(--transition); }
.service-link:hover { background: var(--primary); color: #fff; }

/* ── Markalar Marquee ── */
.brands-marquee-wrap { overflow: hidden; padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-marquee {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 28s linear infinite;
    width: max-content;
}
.brands-marquee:hover { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.brand-item { display: flex; align-items: center; flex-shrink: 0; }
.brand-item img { height: 50px; max-width: 130px; object-fit: contain; filter: grayscale(1); opacity: 0.6; transition: all var(--transition); }
.brand-item img:hover { filter: grayscale(0); opacity: 1; }
.brand-text { font-size: 18px; font-weight: 800; color: var(--text-muted); letter-spacing: 1px; white-space: nowrap; }

/* ── Galeri ── */
.gallery-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.gal-filter {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 7px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
    font-weight: 500;
}
.gal-filter:hover, .gal-filter.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 991px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { transition: opacity var(--transition); }
.gallery-item.hidden { display: none; }
.gallery-thumb { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 1 / 1; }
.gallery-no-img { width:100%; height:100%; display:flex; align-items:center; justify-content:center; background:var(--bg2); color:var(--text-muted); font-size:2.5rem; }
.gallery-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.4s ease; }
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(var(--primary-rgb),.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-thumb:hover .gallery-overlay { opacity: 1; }
.gallery-zoom { background: none; border: 2px solid #fff; color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.gallery-zoom:hover { background: #fff; color: var(--primary); }
.gallery-like { position: absolute; bottom: 10px; right: 10px; background: rgba(255,255,255,.18); backdrop-filter: blur(4px); border: none; color: #fff; border-radius: 20px; padding: 4px 10px; font-size: 13px; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: all var(--transition); }
.gallery-like:hover,.gallery-like.liked { background: var(--primary); }
.gallery-like .fa-heart { font-size: 12px; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; display: block; }
.lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: none; color: #fff; font-size: 22px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; z-index: 10000; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.3); }
.lightbox-caption {
    text-align: center; color: rgba(255,255,255,.85); font-size: 14px; margin-top: 14px;
    max-width: min(720px, 88vw); margin-left: auto; margin-right: auto;
    background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px; padding: 10px 18px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.lightbox-caption:empty { display: none; }
.lb-cap-title { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: .2px; }
.lb-cap-desc  { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 3px; line-height: 1.5; }
.lightbox-counter { text-align: center; color: rgba(255,255,255,.6); font-size: 12px; font-weight: 600; margin-top: 6px; letter-spacing: .5px; }
.gallery-count { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,.6); color: #fff; font-size: 11px; padding: 2px 7px; border-radius: 10px; pointer-events: none; }

/* ── Galeri Klasör Görünümü ── */
.gallery-folders { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 991px) { .gallery-folders { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .gallery-folders { grid-template-columns: repeat(2, 1fr); } }
.gal-folder { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all var(--transition); }
.gal-folder:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.gal-folder-cover { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.gal-folder-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gal-folder:hover .gal-folder-cover img { transform: scale(1.05); }
.gal-folder-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--bg2); color: var(--text-muted); font-size: 2rem; }
.gal-folder-count { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,.6); color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 10px; }
.gal-folder-name { padding: 10px 14px; font-weight: 600; font-size: 14px; color: var(--text); display: flex; align-items: center; }
.gal-folder-name i { color: var(--primary); }
.gal-folder-bar { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.gal-folder-title { font-weight: 700; font-size: 17px; color: var(--text); }

/* ── Banka Hesapları (IBAN) ── */
.iban-heading { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.iban-heading i { color: var(--primary); }
.iban-card { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; }
.iban-bank-logo { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; color: #fff; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; letter-spacing: .5px; text-shadow: 0 1px 2px rgba(0,0,0,.25); }
.iban-info { flex: 1; min-width: 0; }
.iban-bank { font-weight: 700; font-size: 14px; color: var(--text); }
.iban-currency { display: inline-block; font-size: 11px; font-weight: 700; color: var(--primary); background: var(--bg2); border: 1px solid var(--border); border-radius: 6px; padding: 1px 7px; margin-left: 6px; vertical-align: 1px; }
.iban-holder { font-size: 12px; color: var(--text-muted); }
.iban-meta { font-size: 11px; color: var(--text-muted); opacity: .85; }
.iban-number { font-family: monospace; font-size: 14px; color: var(--text); margin-top: 4px; word-break: break-all; }
.iban-copy { flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg2); color: var(--text-muted); cursor: pointer; transition: all var(--transition); display: flex; align-items: center; justify-content: center; }
.iban-copy:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.iban-copy.copied { background: #22c55e; border-color: #22c55e; color: #fff; }

/* ── Anasayfa Yazısı (hp_intro_html) ── */
.hp-intro-section { padding: 44px 0 4px; text-align: center; }
.hp-intro-section .btn { margin-top: 8px; }
.hp-intro-box { background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: var(--radius); padding: 16px 20px; margin: 14px auto; max-width: 760px; text-align: left; color: var(--text); }
.hp-intro-divider { border: 0; border-top: 1px solid var(--border); max-width: 320px; margin: 22px auto; opacity: 1; }

/* ── Ekibimiz (organizasyon şeması) ── */
.team-children { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; align-items: flex-start; }
.team-node > .team-children { padding-top: 20px; position: relative; }
.team-node > .team-children::before { content: ''; position: absolute; top: 4px; left: 50%; width: 2px; height: 14px; background: var(--border); transform: translateX(-50%); }
.team-node { display: flex; flex-direction: column; align-items: center; }
.team-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; text-align: center; min-width: 150px; transition: border-color var(--transition); }
.team-card:hover { border-color: var(--primary); }
.team-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin: 0 auto 10px; display: block; }
.team-photo-ph { display: flex; align-items: center; justify-content: center; background: var(--bg2); color: var(--text-muted); font-size: 22px; }
.team-name { font-weight: 700; font-size: 14px; color: var(--text); }
.team-title { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── Hakkımızda Belgeler ── */
.about-doc-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.about-doc-img { width: 100%; height: 160px; object-fit: cover; cursor: zoom-in; transition: transform var(--transition); display: block; }
.about-doc-img:hover { transform: scale(1.03); }
.about-doc-body { padding: 10px 12px; display: flex; flex-direction: column; align-items: flex-start; }
.about-doc-title { font-weight: 700; font-size: 13px; color: var(--text); }
.about-doc-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.about-doc-file { display: inline-flex; align-items: center; margin-top: 8px; padding: 4px 10px; font-size: 12px; font-weight: 600; color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, transparent); border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent); border-radius: 6px; text-decoration: none; transition: all var(--transition); }
.about-doc-file:hover { background: var(--primary); color: #fff; }

/* ── E-Katalog Modal ── */
.catalog-row { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; text-decoration: none; transition: all var(--transition); background: var(--surface); }
.catalog-row:hover { border-color: var(--primary); transform: translateX(3px); }
.catalog-row-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(var(--primary-rgb), .1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.catalog-row-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.catalog-row-title { font-weight: 600; font-size: 14px; color: var(--text); }
.catalog-row-desc { font-size: 12px; color: var(--text-muted); }
.catalog-row-main { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; text-decoration: none; }
.catalog-row-dl { color: var(--text-muted); font-size: 15px; transition: all var(--transition); text-decoration: none; width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.catalog-row-dl:hover { color: #fff; background: var(--primary); }
.catalog-row:hover .catalog-row-dl { color: var(--primary); }
.catalog-row:hover .catalog-row-dl:hover { color: #fff; }
.catalog-folder-head { display: flex; align-items: center; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--primary); margin: 18px 0 10px; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.catalog-folder-head:first-child { margin-top: 0; }
.catalog-folder-head .catalog-folder-count { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--text-muted); background: rgba(var(--primary-rgb), .1); border-radius: 10px; padding: 1px 9px; }

/* ── Blog ── */
.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-img { overflow: hidden; height: 210px; position: relative; flex-shrink: 0; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; display: block; }
.blog-card:hover .blog-img img { transform: scale(1.07); }
.blog-no-img {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg2) 100%);
    display: flex; align-items: center; justify-content: center;
}
.blog-no-img i { font-size: 40px; color: var(--primary); opacity: .35; }
.blog-body { padding: 22px 20px 18px; flex: 1; display: flex; flex-direction: column; gap: 0; }
.blog-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.blog-meta-item { display: inline-flex; align-items: center; gap: 4px; }
.blog-likes { cursor: pointer; display: inline-flex; align-items: center; gap: 4px; transition: color var(--transition); }
.blog-likes:hover, .blog-likes.liked { color: var(--primary); }
.blog-comments-count { display: inline-flex; align-items: center; gap: 4px; }
.blog-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 10px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-excerpt {
    font-size: 13.5px;
    color: var(--text-muted);
    flex: 1;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.btn-blog-read {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    padding: 8px 0 0;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition), gap var(--transition);
}
.btn-blog-read i { font-size: 11px; transition: transform var(--transition); }
.btn-blog-read:hover { color: var(--primary-dark); }
.btn-blog-read:hover i { transform: translateX(3px); }

/* ── Beğeni & Yorum ── */
.btn-like-blog { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 6px 14px; font-size: 13px; font-weight: 600; color: var(--text-muted); cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: all var(--transition); }
.btn-like-blog:hover,.btn-like-blog.liked { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-comment-tab { background: transparent; border-color: transparent; }
.btn-comment-tab:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.comment-list { display: flex; flex-direction: column; gap: 12px; }
.comment-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; transition: box-shadow var(--transition); }
.comment-item:hover { box-shadow: var(--shadow); }
.comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.comment-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.comment-meta { flex: 1; min-width: 0; }
.comment-author { font-weight: 700; font-size: 13px; color: var(--heading); display: block; line-height: 1.3; }
.comment-date { font-size: 11px; color: var(--text-muted); display: block; margin-top: 1px; }
.comment-stars { color: #f59e0b; font-size: 13px; margin-left: auto; flex-shrink: 0; }
.comment-text { font-size: 14px; color: var(--text); margin: 0; line-height: 1.7; }
.comment-empty { text-align: center; color: var(--text-muted); font-size: 14px; padding: 32px 0; }
.comment-form-wrap { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; margin-top: 8px; }

/* ── Şube Kartları ── */
.branch-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.branch-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.branch-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading);
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.branch-name i { color: var(--primary); font-size: 14px; }
.branch-addr {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}
.branch-detail {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color var(--transition);
}
.branch-detail i { color: var(--primary); font-size: 12px; width: 14px; flex-shrink: 0; }
a.branch-detail:hover { color: var(--primary); }

/* ── İletişim ── */
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: var(--primary-light); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item h5 { font-size: 14px; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item a, .contact-item p { color: var(--text); font-size: 16px; margin: 0; }
.btn-directions { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; padding: 6px 14px; background: var(--primary); color: #fff !important; border-radius: 20px; font-size: 13px; font-weight: 600; text-decoration: none !important; transition: background var(--transition), transform .15s; }
.btn-directions:hover { background: var(--primary-dark); transform: translateY(-1px); }
.contact-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
    width: 42px; height: 42px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    transition: all var(--transition);
}
.social-btn:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.contact-form-wrap .form-label { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.contact-form-wrap .form-control { border-color: var(--border); background: var(--bg); color: var(--text); border-radius: 8px; padding: 10px 14px; font-size: 15px; transition: border-color var(--transition), box-shadow var(--transition); }
.contact-form-wrap .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15); }

/* ── Müşteri Yorumları Slider ── */
/* ── Testimonial slider ── */
.tsl-wrap { position: relative; display: flex; align-items: center; gap: 12px; }
.tsl-viewport {
    overflow: hidden; flex: 1; min-width: 0; position: relative;
}
.tsl-viewport::before,
.tsl-viewport::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 40px;
    z-index: 2; pointer-events: none;
}
.tsl-viewport::before { left:  0; background: linear-gradient(to right, var(--bg), transparent); }
.tsl-viewport::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }
.tsl-track {
    display: flex;
    gap: 24px;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.tsl-track .testimonial-card { flex: 0 0 calc(25% - 18px); min-width: 0; }
.tsl-arrow {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--surface); border: 1.5px solid var(--border);
    color: var(--text-muted); display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0; font-size: 13px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transition: background .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.tsl-arrow:hover:not(:disabled) {
    background: var(--primary); border-color: var(--primary); color: #fff;
    transform: scale(1.1); box-shadow: 0 4px 16px rgba(var(--primary-rgb),.35);
}
.tsl-arrow:disabled { opacity: .2; cursor: default; pointer-events: none; }
.tsl-dots { display: flex; justify-content: center; gap: 6px; margin-top: 28px; }
.tsl-dot {
    height: 6px; border-radius: 3px; background: var(--border);
    cursor: pointer; width: 6px; border: none; padding: 0;
    transition: width .35s ease, background .35s ease;
}
.tsl-dot.active { background: var(--primary); width: 28px; }
@media (max-width: 991px) {
    .tsl-track .testimonial-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 575px) {
    .tsl-track .testimonial-card { flex: 0 0 100%; }
    .tsl-arrow { width: 36px; height: 36px; font-size: 12px; }
    .tsl-viewport::before, .tsl-viewport::after { width: 20px; }
}

/* ── Testimonial kartlar ── */
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px 22px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 6px; right: 18px;
    font-size: 96px;
    line-height: 1;
    color: var(--primary);
    opacity: .07;
    font-family: Georgia, serif;
    pointer-events: none;
    user-select: none;
}
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .35s ease;
    border-radius: 16px 16px 0 0;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,.11);
    border-color: var(--primary);
}
.testimonial-card:hover::after { transform: scaleX(1); }
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars i { font-size: 13px; }
.testimonial-content {
    font-size: 14.5px;
    line-height: 1.78;
    color: var(--text);
    margin: 0;
    font-style: italic;
    flex: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.testimonial-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border);
}
.testimonial-avatar-placeholder {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    flex-shrink: 0;
}
.testimonial-info { display: flex; flex-direction: column; gap: 2px; }
.testimonial-info strong { font-size: 13.5px; color: var(--heading); font-weight: 700; }
.testimonial-info span { font-size: 12px; color: var(--text-muted); }

/* ── Firma Referansları Grid ── */
.ref-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}
.ref-company-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    overflow: visible;
}
.ref-company-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0,0,0,.09);
    transform: translateY(-3px);
    z-index: 10;
}
.ref-company-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.ref-company-logo {
    max-width: 130px;
    max-height: 56px;
    object-fit: contain;
    filter: grayscale(40%);
    opacity: .8;
    transition: filter .2s, opacity .2s;
}
.ref-company-card:hover .ref-company-logo { filter: grayscale(0); opacity: 1; }
.ref-company-name-only {
    font-weight: 700;
    font-size: 14px;
    color: var(--heading);
    text-align: center;
    line-height: 1.3;
}
/* Tooltip */
.ref-company-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%; transform: translateX(-50%);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    width: 240px;
    box-shadow: 0 12px 32px rgba(0,0,0,.14);
    z-index: 100;
    text-align: left;
    pointer-events: none;
}
.ref-company-tooltip::after {
    content: '';
    position: absolute;
    top: 100%; left: 50%; transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--border);
}
.ref-company-card.has-quote:hover .ref-company-tooltip { display: block; }
.ref-company-quote {
    font-size: 13px;
    font-style: italic;
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.6;
}
.ref-company-meta { display: flex; flex-direction: column; gap: 3px; border-top: 1px solid var(--border); padding-top: 8px; }
.ref-stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; }
.ref-company-meta-name { font-size: 12.5px; font-weight: 700; color: var(--heading); }
.ref-company-contact { font-size: 11.5px; color: var(--text-muted); }
.section-divider-sm { height: 32px; }
.ref-persons-title { font-size: 1.25rem; color: var(--heading); font-weight: 700; margin-bottom: 28px; }
@media (max-width: 767px) {
    .ref-companies-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
    .ref-company-tooltip { display: none !important; }
}

/* ── SSS / FAQ ── */
#sss.section-padding { padding: 64px 0; }
.faq-accordion { display: flex; flex-direction: column; gap: 6px; }
.faq-category-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--primary); padding: 6px 0 2px; margin-top: 4px;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--surface);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
    border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(var(--primary-rgb), .08);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: var(--surface);
    border: none;
    color: var(--heading);
    font-size: 14.5px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition), background var(--transition);
    outline: none;
    line-height: 1.4;
}
.faq-question:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; }
.faq-question:hover { color: var(--primary); }
.faq-question[aria-expanded="true"] {
    color: var(--primary);
    background: rgba(var(--primary-rgb), .04);
}
.faq-chevron {
    font-size: 11px; color: var(--text-muted); flex-shrink: 0;
    transition: transform .3s ease, color .3s ease;
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
    padding: 0 16px 13px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}

/* ── Dark Mode: Form Input Genel ── */
[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background-color: var(--surface) !important;
    border-color: var(--border) !important;
    color: var(--text) !important;
}
[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    background-color: var(--surface) !important;
    border-color: var(--primary) !important;
    color: var(--text) !important;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15) !important;
}
[data-theme="dark"] .form-control::placeholder { color: var(--text-muted) !important; }
[data-theme="dark"] .form-select option { background: var(--surface); color: var(--text); }

/* ── Dark Mode: İletişim Bölümü ── */
[data-theme="dark"] .contact-form-wrap {
    background: var(--surface);
    border-color: var(--border);
}
[data-theme="dark"] .contact-item h5 { color: var(--text-muted); }
[data-theme="dark"] .contact-item a, [data-theme="dark"] .contact-item p { color: var(--text) !important; }
[data-theme="dark"] .contact-icon { background: rgba(var(--primary-rgb), 0.18); }
[data-theme="dark"] .branch-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .branch-name { color: var(--heading); }
[data-theme="dark"] .branch-addr { color: var(--text-muted); }
[data-theme="dark"] a.branch-detail { color: var(--text) !important; }
[data-theme="dark"] span.branch-detail { color: var(--text-muted); }

/* ── Dark Mode: Bootstrap Modal ── */
[data-theme="dark"] .modal-content {
    background-color: var(--surface);
    color: var(--text);
    border-color: var(--border);
}
[data-theme="dark"] .modal-header,
[data-theme="dark"] .modal-footer {
    border-color: var(--border);
    background-color: var(--surface);
    color: var(--text);
}
[data-theme="dark"] .modal-body { background-color: var(--surface); color: var(--text); }
[data-theme="dark"] .btn-close { filter: invert(1) grayscale(1) brightness(2); }
[data-theme="dark"] .nav-tabs { border-color: var(--border); }
[data-theme="dark"] .nav-tabs .nav-link { color: var(--text-muted); border-color: transparent; }
[data-theme="dark"] .nav-tabs .nav-link.active { background: var(--surface); border-color: var(--border) var(--border) var(--surface); color: var(--text); }
[data-theme="dark"] .nav-tabs .nav-link:hover { border-color: var(--border); color: var(--text); }

/* Blog yazı içerik stilleri (modal içi) */
#blogModalBody h1,#blogModalBody h2,#blogModalBody h3,#blogModalBody h4 { color: var(--heading); margin: 1.2em 0 .5em; font-weight: 700; line-height: 1.3; }
#blogModalBody p { color: var(--text); line-height: 1.8; margin-bottom: 1em; }
#blogModalBody ul,#blogModalBody ol { color: var(--text); margin-bottom: 1em; padding-left: 1.5em; line-height: 1.8; }
#blogModalBody a { color: var(--primary); }
#blogModalBody img { max-width: 100%; border-radius: var(--radius); margin: .75em 0; }
#blogModalBody blockquote { border-left: 4px solid var(--primary); padding: 12px 16px; background: var(--bg2); border-radius: 0 8px 8px 0; margin: 1em 0; font-style: italic; color: var(--text-muted); }
#blogModalBody pre { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 14px; overflow-x: auto; font-size: 13px; margin-bottom: 1em; }
#blogModalBody code { background: var(--bg2); padding: 2px 6px; border-radius: 4px; font-size: 13px; }
#blogModalBody table { width: 100%; border-collapse: collapse; margin-bottom: 1em; font-size: 14px; }
#blogModalBody th,#blogModalBody td { border: 1px solid var(--border); padding: 8px 12px; }
#blogModalBody th { background: var(--bg2); font-weight: 600; }

/* Dark mode fixes */
[data-theme="dark"] .faq-question {
    background: var(--surface);
    color: var(--heading);
}
[data-theme="dark"] .faq-question:hover,
[data-theme="dark"] .faq-question[aria-expanded="true"] { color: var(--primary); }
[data-theme="dark"] .faq-question[aria-expanded="true"] {
    background: rgba(var(--primary-rgb), .08);
}
[data-theme="dark"] .faq-item { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .faq-item:has(.faq-question[aria-expanded="true"]) { border-color: var(--primary); }
[data-theme="dark"] .faq-answer { color: var(--text-muted); border-color: var(--border); }

/* ── Dark Mode: Genel ── */
[data-theme="dark"] .text-muted { color: var(--text-muted) !important; }
[data-theme="dark"] .btn-link { color: var(--primary); }
[data-theme="dark"] .btn-link:hover { color: var(--primary-dark); }

/* ── Harita ── */
.map-section iframe { width: 100%; height: 400px; display: block; border: none; }

/* ── Footer ── */
.site-footer { background: #0f172a; color: #94a3b8; padding: 60px 0 0; }
[data-theme="dark"] .site-footer { background: #1e293b; }
@media (prefers-color-scheme: dark) { [data-theme="auto"] .site-footer { background: #1e293b; } }
.footer-top { padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo {
    height: 40px;
    max-width: 160px;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: .9;
}
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.fsoc-btn { width: 38px; height: 38px; background: rgba(255,255,255,.08); color: #94a3b8; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all var(--transition); }
.fsoc-btn:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-heading { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 16px; }
.footer-links { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.footer-links a { color: #94a3b8; font-size: 14px; transition: color var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '›'; font-size: 16px; color: var(--primary); }
.footer-links a:hover { color: #fff; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.footer-contact-list i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: #94a3b8; }
.footer-contact-list a:hover { color: #fff; }
/* ── Footer E-Bülten ── */
.footer-subscribe {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
    margin-top: 28px; padding: 20px 22px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
}
.footer-subscribe .fs-desc { color: #94a3b8; font-size: 13px; }
.footer-subscribe .fs-form { display: flex; gap: 8px; flex: 1; max-width: 420px; min-width: 260px; position: relative; }
.footer-subscribe .fs-input {
    flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px; padding: 9px 14px; color: #e2e8f0; font-size: 13.5px; outline: none;
    transition: border-color .15s;
}
.footer-subscribe .fs-input::placeholder { color: #64748b; }
.footer-subscribe .fs-input:focus { border-color: var(--primary); }
.footer-subscribe .fs-btn { white-space: nowrap; border-radius: 10px; font-size: 13.5px; }
.footer-subscribe .fs-msg { width: 100%; font-size: 12.5px; min-height: 0; }
.footer-subscribe .fs-msg:empty { display: none; }
@media (max-width: 768px) {
    .footer-subscribe { flex-direction: column; align-items: stretch; text-align: center; }
    .footer-subscribe .fs-form { max-width: none; }
}

.footer-bottom { padding: 20px 0; }
.footer-copy { margin: 0; font-size: 13px; }
.footer-legal-link { color: #64748b; font-size: 13px; margin-left: 16px; transition: color var(--transition); }
.footer-legal-link:hover { color: var(--primary); }
.footer-credit { text-align: center; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-credit-link { display: inline-flex; align-items: center; gap: 7px; color: #475569; font-size: 12px; text-decoration: none; transition: color var(--transition); }
.footer-credit-link:hover { color: #94a3b8; }
.footer-credit-logo { height: 16px; width: auto; opacity: .55; filter: brightness(0) invert(1); transition: opacity var(--transition); }
.footer-credit-link:hover .footer-credit-logo { opacity: .85; }
/* jokedr imza ikonu (fab fa-jokedr) — boyut yanındaki yazıya göre (em) ölçeklenir, link rengini alır */
.footer-credit-ficon { font-size: 1.4em; line-height: 1; opacity: .6; transition: opacity var(--transition); }
.footer-credit-link:hover .footer-credit-ficon { opacity: .9; }

/* WhatsApp Float eski stiller kaldırıldı — yenisi :root öncesinde tanımlandı */

/* ── Scroll Top ── */
.scroll-top {
    position: fixed;
    bottom: 20px; right: 20px;
    width: 44px; height: 44px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 16px;
    box-shadow: var(--shadow);
    z-index: 499;
    opacity: 0; visibility: hidden;
    transition: all var(--transition);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ── Çerez Banner ── */
/* ── Push Bildirim Banner ── */
.push-banner {
    position: fixed;
    bottom: 24px; left: 20px;
    background: #1e293b;
    border: 1px solid #334155;
    color: #f1f5f9;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 801;
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
    max-width: 320px;
    animation: slideInLeft .35s ease;
}
@keyframes slideInLeft {
    from { transform: translateX(-120%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}
.push-banner-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), .4);
}
.push-banner-text { flex: 1; min-width: 0; font-size: 13px; }
.push-banner-text strong { display: block; margin-bottom: 2px; color: #f1f5f9; font-size: 13.5px; }
.push-banner-text span   { color: #94a3b8; font-size: 12px; line-height: 1.4; }
.push-banner-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.push-banner-allow {
    background: var(--primary); color: #fff; border: none;
    padding: 7px 14px; border-radius: 8px; font-size: 12px;
    font-weight: 700; cursor: pointer; white-space: nowrap;
    transition: opacity .15s, transform .15s;
}
.push-banner-allow:hover { opacity: .9; transform: scale(1.03); }
.push-banner-dismiss {
    background: rgba(255,255,255,.08); border: none; color: #94a3b8;
    cursor: pointer; padding: 6px; border-radius: 6px; font-size: 13px;
    transition: background .15s, color .15s;
    display: flex; align-items: center; justify-content: center;
}
.push-banner-dismiss:hover { background: rgba(255,255,255,.15); color: #f1f5f9; }
.push-subscribe-btn { font-size: 12px; transition: .2s; }

/* ── Footer Bildirim Aç/Kapat Anahtarı ── */
.push-toggle {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 5px 9px 5px 5px; border-radius: 30px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.07); color: #fff;
    font-size: 12.5px; font-weight: 600; cursor: pointer;
    transition: all .2s ease;
}
.push-toggle:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); }
.push-toggle:disabled { opacity: .55; cursor: default; }
.push-toggle .pt-ic {
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(255,255,255,.14);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; flex-shrink: 0; transition: all .2s ease;
}
.push-toggle.on .pt-ic {
    background: var(--primary); color: #fff;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .28);
}
.push-toggle .pt-label { white-space: nowrap; }
.push-toggle .pt-switch {
    width: 32px; height: 18px; border-radius: 20px;
    background: rgba(255,255,255,.25); position: relative;
    transition: background .2s ease; flex-shrink: 0;
}
.push-toggle .pt-knob {
    position: absolute; top: 2px; left: 2px;
    width: 14px; height: 14px; border-radius: 50%;
    background: #fff; transition: left .2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,.35);
}
.push-toggle.on .pt-switch { background: var(--primary); }
.push-toggle.on .pt-knob { left: 16px; }

/* ── Seksi Modal Stiller ── */
.site-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.18);
}
.site-modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark, #b81e1e) 100%);
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.site-modal-header .modal-title {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}
.site-modal-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #fff; flex-shrink: 0;
}
.site-modal-close {
    filter: invert(1) grayscale(1) brightness(2);
    opacity: .8;
    margin-left: auto;
    flex-shrink: 0;
}
.site-modal-close:hover { opacity: 1; }
.site-modal-body {
    padding: 28px 28px 20px;
    background: var(--surface);
    color: var(--text);
}
.site-modal-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
}

/* Dark mode modal */
[data-theme="dark"] .site-modal { box-shadow: 0 24px 64px rgba(0,0,0,.45); }
[data-theme="dark"] .site-modal-body, [data-theme="dark"] .site-modal-footer { background: var(--surface); border-color: var(--border); }
@media (prefers-color-scheme: dark) {
    [data-theme="auto"] .site-modal-body, [data-theme="auto"] .site-modal-footer { background: var(--surface); border-color: var(--border); }
}

/* Modal backdrop blur */
.modal-backdrop { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

/* ── Çerez Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 20px; left: 50%; transform: translateX(-50%) translateY(0);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 800;
    box-shadow: 0 8px 40px rgba(0,0,0,.14);
    max-width: 580px;
    width: calc(100% - 32px);
    transition: opacity .3s ease, transform .3s ease;
}
.cookie-banner-show { animation: cookieSlideUp .4s ease both; }
@keyframes cookieSlideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(24px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-icon {
    width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark, #b91c1c));
    color: #fff; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.cookie-content { flex: 1; min-width: 0; }
.cookie-content strong { display: block; font-size: 13.5px; color: var(--heading); margin-bottom: 2px; }
.cookie-content span { font-size: 12.5px; color: var(--text-muted); line-height: 1.4; }
.cookie-content span a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; white-space: nowrap; flex-shrink: 0; }
.btn-ghost-sm {
    background: none; border: 1px solid var(--border);
    color: var(--text-muted); padding: 5px 12px;
    border-radius: 8px; font-size: 13px; cursor: pointer;
    transition: border-color .15s, color .15s;
}
.btn-ghost-sm:hover { border-color: var(--text-muted); color: var(--text); }


/* ── Alert ── */
.alert-contact-success { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3); color: #16a34a; border-radius: 10px; padding: 14px 18px; font-size: 14.5px; }
.alert-contact-error   { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.3);  color: #dc2626; border-radius: 10px; padding: 14px 18px; font-size: 14.5px; }

/* ── Animate Fade Up (Hero) ── */
.animate-fade-up {
    animation: fadeUpHero 0.8s ease both;
}
.animate-fade-up:nth-child(2) { animation-delay: .15s; }
.animate-fade-up:nth-child(3) { animation-delay: .3s; }
.animate-fade-up:nth-child(4) { animation-delay: .45s; }
.animate-fade-up:nth-child(5) { animation-delay: .6s; }
@keyframes fadeUpHero {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Arama Butonu (Navbar) ── */
.nav-search-btn {
    background: var(--bg2);
    border: none;
    color: var(--text);
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: all var(--transition);
}
.nav-search-btn:hover { background: var(--primary); color: #fff; }

/* Hero üzeri — arama, tema, dil butonları cam efekti */
.hero-nav .nav-search-btn,
.hero-nav .theme-toggle,
.hero-nav .cart-nav-btn {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-nav .nav-search-btn:hover,
.hero-nav .theme-toggle:hover,
.hero-nav .cart-nav-btn:hover {
    background: rgba(255,255,255,.9);
    border-color: transparent;
    color: var(--primary);
}

/* ── Arama Overlay ── */
.search-overlay {
    position: fixed; inset: 0; z-index: 9998;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(8px);
    display: flex; align-items: flex-start; justify-content: center;
    padding: 80px 20px 20px;
    opacity: 0; visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay-inner { width: 100%; max-width: 680px; }
.search-form { position: relative; display: flex; align-items: center; }
.search-input-wrap {
    flex: 1;
    display: flex; align-items: center; gap: 14px;
    background: var(--surface);
    border: 1.5px solid var(--primary);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.search-input-icon { color: var(--primary); font-size: 18px; flex-shrink: 0; }
.search-input {
    flex: 1;
    background: none; border: none; outline: none;
    font-size: 18px; color: var(--text);
    font-family: inherit;
}
.search-input::placeholder { color: var(--text-muted); }
.search-close-btn {
    background: rgba(255,255,255,.15); border: none; color: #fff;
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; cursor: pointer; flex-shrink: 0; margin-left: 12px;
    transition: background .2s;
}
.search-close-btn:hover { background: rgba(255,255,255,.25); }
.search-results {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-top: 10px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,.2);
    max-height: 60vh;
    overflow-y: auto;
    display: none;
}
.search-results.has-results { display: block; }
.search-result-item {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 18px;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: background .15s;
    text-decoration: none;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--primary-light); }
.sri-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.sri-body { flex: 1; min-width: 0; }
.sri-title { font-size: 14px; font-weight: 600; color: var(--heading); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sri-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sri-type { font-size: 11px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; flex-shrink: 0; }
.search-no-result { padding: 24px; text-align: center; color: var(--text-muted); font-size: 14px; }
.search-view-all {
    display: flex; align-items: center; justify-content: center;
    padding: 13px 16px; font-size: 13.5px; font-weight: 600;
    color: var(--primary); text-decoration: none;
    border-top: 1px solid var(--border);
    transition: background .15s;
}
.search-view-all:hover { background: var(--primary-light); color: var(--primary); }

/* ═══════════════════════════════════════════════
   ÜRÜNLER — Alışveriş Sitesi Layout
   ═══════════════════════════════════════════════ */
.products-layout { display: flex; gap: 24px; align-items: flex-start; }
.products-layout.no-sidebar .prd-main-col { width: 100%; }

/* ── Kategori Sidebar ── */
.products-sidebar {
    flex: 0 0 240px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 8px 0 12px;
    box-shadow: var(--shadow);
    position: sticky;
    top: calc(var(--navbar-h) + 16px);
    max-height: calc(100vh - var(--navbar-h) - 32px);
    overflow-y: auto;
}
.prd-main-col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0; }
.products-content { flex: 1; min-width: 0; }

/* ── Ürün Araç Çubuğu ── */
.prd-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 0 18px;
    flex-wrap: wrap;
}
.prd-search-wrap {
    flex: 1;
    min-width: 200px;
    max-width: 420px;
    position: relative;
    display: flex;
    align-items: center;
}
.prd-search-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 13px;
    pointer-events: none;
}
.prd-search-input {
    width: 100%;
    padding: 10px 40px 10px 38px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.prd-search-input::placeholder { color: var(--text-muted); }
.prd-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 220,38,38), .1);
}
.prd-search-clear {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 13px;
    padding: 4px;
    line-height: 1;
    border-radius: 50%;
    transition: color .15s, background .15s;
}
.prd-search-clear:hover { color: var(--primary); background: rgba(var(--primary-rgb,220,38,38),.08); }
.prd-result-count {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}
.psb-root-label { padding: 14px 16px 6px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-muted); }
.psb-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 16px;
    cursor: pointer; border-radius: 0;
    font-size: 13.5px; font-weight: 500; color: var(--text);
    transition: background .12s, color .12s;
    border: none; background: none; width: 100%; text-align: left; position: relative;
}
.psb-item:hover { background: rgba(var(--primary-rgb,220,38,38),.07); color: var(--primary); }
.psb-item.active { background: rgba(var(--primary-rgb,220,38,38),.12); color: var(--primary); font-weight: 700; border-right: 3px solid var(--primary); }
.psb-arrow { margin-left: auto; font-size: 10px; color: var(--text-muted); transition: transform .2s; }
.psb-item.open .psb-arrow { transform: rotate(90deg); }
.psb-indent { padding-left: 0; display: none; }
.psb-indent.open { display: block; }
.psb-item.level-1 { padding-left: 32px; font-size: 13px; }
.psb-item.level-2 { padding-left: 48px; font-size: 12.5px; }

/* ── Breadcrumb ── */
.prd-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap; }
.prd-breadcrumb a, .prd-breadcrumb button { color: var(--text-muted); text-decoration: none; background: none; border: none; cursor: pointer; padding: 0; font-size: inherit; transition: color .15s; }
.prd-breadcrumb a:hover, .prd-breadcrumb button:hover { color: var(--primary); }
.prd-breadcrumb .sep { opacity: .4; }
.prd-breadcrumb .current { color: var(--heading); font-weight: 600; }

/* ── Ürün kartları grid ── */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shop-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow .2s, transform .2s, border-color .2s;
    display: flex; flex-direction: column;
    position: relative;
}
.shop-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.12); transform: translateY(-3px); border-color: rgba(var(--primary-rgb,220,38,38),.3); }
.shop-card-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--bg2);
    overflow: hidden;
}
.shop-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; display: block; }
.shop-card:hover .shop-card-img-wrap img { transform: scale(1.05); }
.shop-card-no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--text-muted); opacity: .3; }
.shop-card-badge {
    position: absolute; top: 10px; left: 10px;
    font-size: 10px; font-weight: 800; padding: 3px 9px;
    border-radius: 20px; line-height: 1.5; z-index: 1;
}
.shop-card-badge--custom   { background: var(--primary); color: #fff; }
.shop-card-badge--discount { background: #16a34a; color: #fff; }
.shop-card-share {
    position: absolute; top: 8px; right: 8px; z-index: 2;
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,.85); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: var(--text-muted);
    opacity: 0; transition: opacity .2s, background .15s;
    backdrop-filter: blur(4px);
}
.shop-card:hover .shop-card-share { opacity: 1; }
.shop-card-share:hover { background: var(--primary); color: #fff; }
.shop-card-body { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.shop-card-name { font-size: 14px; font-weight: 700; color: var(--heading); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.shop-card-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.shop-card-price-row { display: flex; align-items: baseline; gap: 6px; margin-top: auto; padding-top: 4px; }
.shop-card-price { font-size: 17px; font-weight: 900; color: var(--primary); }
.shop-card-price-old { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }
.shop-card-sub { font-size: 11px; color: var(--text-muted); }
.shop-card-footer { padding: 0 14px 14px; }
.shop-card-btn {
    width: 100%; padding: 9px; border: none; border-radius: 10px;
    background: var(--primary); color: #fff;
    font-size: 13px; font-weight: 700; cursor: pointer;
    transition: background .15s, transform .1s;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.shop-card-btn:hover { filter: brightness(1.1); }
.shop-card-btn:active { transform: scale(.97); }
.shop-card-btn.no-cart { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.shop-card-btn.no-cart:hover { background: rgba(var(--primary-rgb,220,38,38),.08); }
.shop-card-children-badge { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,.55); color: #fff; font-size: 10px; border-radius: 20px; padding: 2px 8px; backdrop-filter: blur(4px); }

/* ── Ürün Detay (2 sütun) ── */
.prd-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
}
.prd-detail-gallery {}
.prd-gallery-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; display: block; border: 1px solid var(--border); transition: opacity .2s, transform .2s; cursor: zoom-in; }
.prd-gallery-main:hover { opacity: .92; }
.prd-gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.prd-gallery-thumb { width: 68px; height: 60px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid var(--border); transition: border-color .15s, opacity .15s; opacity: .65; }
.prd-gallery-thumb:hover { opacity: 1; }
.prd-gallery-thumb.active { border-color: var(--primary); opacity: 1; }
.prd-detail-info { display: flex; flex-direction: column; gap: 14px; }
.prd-detail-badge { display: inline-block; font-size: 11px; font-weight: 800; padding: 3px 12px; border-radius: 20px; }
.prd-detail-badge--custom   { background: var(--primary); color: #fff; }
.prd-detail-badge--discount { background: #16a34a; color: #fff; }
.prd-detail-name { font-size: 22px; font-weight: 900; color: var(--heading); line-height: 1.3; margin: 0; }
.prd-detail-sku { font-size: 11.5px; color: var(--text-muted); }
.prd-detail-price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.prd-detail-price { font-size: 30px; font-weight: 900; color: var(--primary); }
.prd-detail-price-old { font-size: 16px; color: var(--text-muted); text-decoration: line-through; }
.prd-detail-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.prd-detail-full { font-size: 14px; color: var(--text); line-height: 1.8; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 4px; }
/* ── Ürün dökümanları ── */
.prd-detail-docs { border-top: 1px solid var(--border); padding-top: 14px; margin-top: 4px; display: flex; flex-direction: column; gap: 8px; }
.prd-docs-title { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.prd-doc-link {
    display: flex; align-items: center; gap: 10px;
    border: 1px solid var(--border); border-radius: 10px;
    padding: 10px 14px; text-decoration: none;
    color: var(--text); font-size: 14px; font-weight: 500;
    background: var(--bg2); transition: border-color .15s, background .15s;
}
.prd-doc-link:hover { border-color: var(--primary); color: var(--primary); background: rgba(var(--primary-rgb,220,38,38),.05); }
.prd-doc-link > i:first-child { font-size: 18px; color: var(--primary); flex-shrink: 0; }
.prd-doc-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.prd-doc-ext { font-size: 10px; font-weight: 700; text-transform: uppercase; background: var(--border); color: var(--text-muted); border-radius: 4px; padding: 2px 7px; letter-spacing: .4px; flex-shrink: 0; }
.prd-doc-dl { font-size: 12px; color: var(--text-muted); flex-shrink: 0; }
.prd-doc-link:hover .prd-doc-dl { color: var(--primary); }
.prd-detail-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.prd-detail-actions .btn { min-width: 140px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.prd-detail-share-btn {
    width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--border);
    background: none; cursor: pointer; color: var(--text-muted);
    display: flex; align-items: center; justify-content: center; font-size: 15px;
    transition: border-color .15s, color .15s, background .15s;
    flex-shrink: 0;
}
.prd-detail-share-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(var(--primary-rgb,220,38,38),.07); }
.prd-detail-children { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 8px; }
.prd-detail-children h6 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted); margin-bottom: 12px; }

/* Kök grid (başlangıç ekranı) */
.prd-root-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.product-cat-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
    padding: 20px 14px; text-align: center; cursor: pointer;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.product-cat-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.pcc-icon { font-size: 28px; color: var(--primary); margin-bottom: 8px; }
.pcc-name { font-size: 13px; font-weight: 700; color: var(--heading); line-height: 1.3; }
.pcc-count { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.pcc-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-bottom: 6px; line-height: 1.6; }
.pcc-badge--custom   { background: var(--primary); color: #fff; }
.pcc-badge--discount { background: #16a34a; color: #fff; }
.product-badge { display: inline-block; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px; margin-bottom: 12px; line-height: 1.6; }
.product-badge--custom   { background: var(--primary); color: #fff; }
.product-badge--discount { background: #16a34a; color: #fff; }

/* Responsive */
@media (max-width: 1100px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 991.98px) {
    .products-layout { flex-direction: column; gap: 16px; }
    .products-sidebar { flex: none; width: 100%; position: static; max-height: 56vh; border-radius: 12px; }
    .prd-detail-grid { grid-template-columns: 1fr; gap: 20px; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .prd-search-wrap { max-width: 100%; }
}
@media (max-width: 480px) {
    .shop-grid { grid-template-columns: 1fr; }
    .prd-toolbar { padding-bottom: 12px; }
}

/* Share Toast */
.share-toast {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(16px);
    background: #1a1a1a; color: #fff; border-radius: 30px;
    padding: 10px 22px; font-size: 14px; font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    opacity: 0; transition: opacity .25s, transform .25s; z-index: 9999;
    box-shadow: 0 8px 32px rgba(0,0,0,.25); pointer-events: none;
}
.share-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.share-toast i { color: #4ade80; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

/* ── Tablet & Mobil (< 992px) ── */
@media (max-width: 991.98px) {
    :root { --section-py: 56px; }

    /* Hero metin ortala */
    .hero-caption { text-align: center; align-items: center; }
    .hero-desc    { text-align: center; }
    .hero-badge   { margin: 0 auto 16px; }

    /* Info bar yatay → dikey */
    .info-bar-item {
        border-right:  none;
        border-bottom: 1px solid rgba(255,255,255,.2);
        justify-content: center;
    }
    .info-bar-item:last-child { border-bottom: none; }

    /* Mobil açılan menü kutusu */
    .navbar-collapse {
        background:    var(--surface);
        border-radius: var(--radius);
        padding:       16px;
        margin-top:    10px;
        border:        1px solid var(--border);
        box-shadow:    var(--shadow-lg);
    }

    /* Menü linkleri mobilde daha büyük dokunma alanı */
    .nav-link {
        padding:     10px 14px !important;
        font-size:   16px;
        border-radius: 8px;
    }

    /* Hero şeffaf modda hamburger ve tema butonu beyaz */
    .hero-nav .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }
    .hero-nav .navbar-toggler {
        border-color: rgba(255,255,255,.4);
    }

    /* Mobilde WhatsApp butonu satır içi, tam genişlik değil */
    .whatsapp-btn {
        display:     inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width:       auto !important;
        margin-top:  8px;
    }

    /* Hakkımızda istatistikler */
    .about-stats { justify-content: center; }

    /* Misyon/Vizyon kartları mobilde tam yükseklik */
    .mission-card { margin-bottom: 0; }

    /* Galeri 3 sütun */
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }

    /* Footer düzeni */
    .footer-bottom .row { gap: 12px; }
    .footer-bottom .text-md-end { text-align: left !important; }
    .footer-legal-link:first-child { margin-left: 0; }
}

/* ── Küçük Tablet (576px – 768px) ── */
@media (min-width: 576px) and (max-width: 767.98px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stat .stat-num { font-size: 26px; }
}

/* ── Mobil (< 576px) ── */
@media (max-width: 575.98px) {
    :root { --section-py: 40px; --navbar-h: 64px; }

    /* Navbar */
    .nav-logo { height: 36px; }
    .nav-logo-text { font-size: 17px; }

    /* Hero */
    .hero-title { font-size: clamp(22px, 8vw, 34px); }
    .hero-subtitle { font-size: 15px; }
    .hero-btn { padding: 12px 24px; font-size: 15px; }
    .carousel-control-prev,
    .carousel-control-next { display: none; }

    /* Bölüm başlıkları */
    .section-header { margin-bottom: 32px; }
    .section-title  { font-size: clamp(20px, 6vw, 28px); }
    .section-subtitle { font-size: 15px; }

    /* Galeri 2 sütun */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    /* İletişim formu */
    .contact-form-wrap { padding: 20px 16px; }

    /* Cookie banner */
    .cookie-banner { flex-direction: column; text-align: center; gap: 10px; padding: 16px; }
    .cookie-actions { justify-content: center; }
    .cookie-icon { margin: 0 auto; }

    /* Footer */
    .footer-top    { gap: 32px; }
    .footer-legal-link { display: inline-block; margin: 4px 8px 0 0; }

    /* Lightbox tam ekran */
    .lightbox-inner img { max-width: 95vw; max-height: 80vh; }

    /* Scroll top & WhatsApp float */
    .whatsapp-float-wrap { bottom: 72px; right: 14px; }
    .whatsapp-float      { width: 54px; height: 54px; font-size: 26px; }
    .call-float-wrap     { right: 14px; }
    .call-wrap-left      { right: auto; left: 14px; }
    .scroll-top          { width: 40px; height: 40px; font-size: 14px; right: 14px; bottom: 16px; }

    /* Testimonials */
    .tsl-track .testimonial-card { flex: 0 0 100%; }
    .testimonial-card { padding: 20px; border-radius: 14px; }

    /* FAQ */
    .faq-question { font-size: 14px; padding: 12px 14px; }
    .faq-answer { padding: 0 14px 12px; font-size: 13.5px; }

    /* Stat kartları */
    .about-stats   { gap: 20px; }
    .stat-num      { font-size: 26px; }

    /* Hizmetler grid mobilde 1 sütun zaten, ama icon daha küçük */
    .service-icon-wrap { height: 80px; font-size: 34px; }

    /* Blog card */
    .blog-img { height: 160px; }

}

/* ═══════════════════════════════════════
   ÜRÜNLER
   ═══════════════════════════════════════ */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .22s;
    letter-spacing: .2px;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(var(--primary-rgb, 224 38 38 / .35));
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── Kart ── */
.product-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .28s, box-shadow .28s, border-color .28s;
    position: relative;
}
.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 56px rgba(0,0,0,.14);
    border-color: var(--primary);
}

/* ── Görsel alanı ── */
.product-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--bg2);
    flex-shrink: 0;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-img { transform: scale(1.07); }

/* Görsel üzeri gradient (sadece resim varken) */
.product-img-wrap.has-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.52) 0%, rgba(0,0,0,.08) 50%, transparent 100%);
    pointer-events: none;
}

/* ── Placeholder (resim yoksa) ── */
.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(145deg, var(--bg2) 0%, var(--border) 100%);
}
.ph-initial {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(224,38,38,.35);
    transition: transform .3s;
}
.product-card:hover .ph-initial { transform: scale(1.08); }
.ph-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: .4px;
}
.ph-label i { margin-right: 4px; }

/* ── Rozetler ── */
.product-badge-sale {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 3;
    letter-spacing: .4px;
    box-shadow: 0 4px 14px rgba(224,38,38,.45);
}
.product-badge-sale i { margin-right: 4px; font-size: 9px; }
.product-badge-cat {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 3;
    letter-spacing: .3px;
    border: 1px solid rgba(255,255,255,.25);
}

/* ── Kart içerik ── */
.product-body {
    padding: 22px 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading, var(--text));
    margin: 0;
    line-height: 1.35;
}
.product-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: 2px;
}
.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.product-price-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}
.product-price-ask {
    font-size: 12.5px;
    color: var(--text-muted);
    font-style: italic;
}
.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, transform .2s, box-shadow .2s;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(224,38,38,.3);
}
.product-cta:hover {
    background: var(--primary-dark, #b81e1e);
    color: #fff;
    transform: translateX(3px);
    box-shadow: 0 6px 18px rgba(224,38,38,.4);
}
.product-cta i { font-size: 10px; transition: transform .2s; }
.product-cta:hover i { transform: translateX(2px); }

@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .product-img-wrap { height: 210px; }
}
@media (max-width: 576px) {
    .products-grid { grid-template-columns: 1fr; }
    .product-img-wrap { height: 230px; }
}

/* ═══════════════════════════════════════════════
   Ürün Opsiyonları (frontend)
   ═══════════════════════════════════════════════ */
.prd-opts-form {
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.prd-opt-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.prd-opt-label-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.prd-opt-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--heading);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.prd-opt-req { color: var(--primary); font-size: 14px; line-height: 1; }
.prd-opt-selected-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}
/* Chip seçici */
.prd-opt-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.prd-opt-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 7px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .15s, background .15s, color .15s, transform .1s, box-shadow .15s;
    line-height: 1;
    white-space: nowrap;
    user-select: none;
}
.prd-opt-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb, 220,38,38), .05);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 220,38,38), .08);
}
.prd-opt-chip.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb, 220,38,38), .25);
    transform: translateY(-1px);
}
.prd-opt-chip:active { transform: translateY(0); }

/* Shake animasyonu (eksik seçim uyarısı) */
@keyframes prdChipShake {
    0%,100%{transform:translateX(0)} 20%{transform:translateX(-6px)} 40%{transform:translateX(6px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(4px)}
}
.prd-opt-chips-shake { animation: prdChipShake .55s ease; }
.prd-opt-chips-shake .prd-opt-chip { border-color: #ef4444 !important; }

/* Metin/numara input */
.prd-opt-input {
    width: 100%;
    max-width: 280px;
    padding: 9px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}
.prd-opt-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 220,38,38), .1);
}

/* Adet + sepete ekle satırı */
.prd-action-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; align-items: center; }
.prd-action-row .btn { min-width: 140px; }
.prd-qty-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface);
}
.prd-qty-btn {
    width: 38px; height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 13px;
    color: var(--text);
    transition: background .15s, color .15s;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.prd-qty-btn:hover { background: var(--primary); color: #fff; }
.prd-qty-input {
    width: 52px; height: 42px;
    border: none;
    border-left: 1.5px solid var(--border);
    border-right: 1.5px solid var(--border);
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    background: var(--bg);
    color: var(--text);
    -moz-appearance: textfield;
}
.prd-qty-input::-webkit-inner-spin-button, .prd-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ═══════════════════════════════════════════════
   Sepet Navbar Butonu
   ═══════════════════════════════════════════════ */
.cart-nav-btn {
    position: relative;
    background: var(--bg2);
    border: none;
    color: var(--text);
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: all var(--transition);
}
.cart-nav-btn:hover { background: var(--primary); color: #fff; }
.cart-nav-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
}

/* ═══════════════════════════════════════════════
   Sepet Sidebar
   ═══════════════════════════════════════════════ */
.cart-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1099;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-sidebar {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 400px; max-width: 100vw;
    background: var(--surface, #fff);
    box-shadow: -4px 0 32px rgba(0,0,0,.18);
    z-index: 1100;
    display: flex; flex-direction: column;
    transform: translateX(110%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.cart-sidebar.open { transform: none; }
.cart-sidebar-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 16px; font-weight: 700; color: var(--heading);
    flex-shrink: 0;
}
.cart-close-btn { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--text-muted, #666); padding: 4px; border-radius: 6px; transition: background .2s; }
.cart-close-btn:hover { background: var(--hover-bg, #f1f5f9); }

.cart-body { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }

.cart-tabs { display: flex; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.cart-tab { flex: 1; padding: 10px; background: none; border: none; border-bottom: 2px solid transparent; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--text-muted,#666); transition: color .2s, border-color .2s; }
.cart-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

#cartItems { padding: 12px; }
.cart-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 8px;
    background: var(--bg, #f8fafc);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--heading); margin-bottom: 4px; }
.cart-item-opts { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 4px; }
.cart-item-opt { font-size: 11px; background: var(--tag-bg, #e2e8f0); color: var(--text-muted); border-radius: 4px; padding: 1px 6px; }
.cart-item-price { font-size: 13px; color: var(--primary); font-weight: 700; }
.cart-item-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.cart-qty-btn { width: 28px; height: 28px; border: 1px solid var(--border); background: var(--surface,#fff); border-radius: 6px; cursor: pointer; font-size: 12px; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.cart-qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-qty-val { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; }
.cart-qty-del:hover { background: #ef4444; border-color: #ef4444; }

.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 48px 20px; color: var(--text-muted,#888); font-size: 14px; }
.cart-empty i { font-size: 36px; opacity: .4; }

#cartFooter { padding: 12px; border-top: 1px solid var(--border); flex-shrink: 0; }
.cart-form-title { font-size: 13px; font-weight: 700; color: var(--heading); margin-bottom: 10px; }
.cart-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.cart-form .form-control { margin-bottom: 8px; }
.cart-form .form-control:last-of-type { margin-bottom: 0; }
.cart-form-error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #ef4444; border-radius: 6px; padding: 8px 12px; font-size: 13px; margin-top: 8px; }

/* Geçmiş siparişler */
#orderList { padding: 12px; }
.order-card { border: 1px solid var(--border); border-radius: 10px; padding: 12px; margin-bottom: 10px; background: var(--bg,#f8fafc); }
.order-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.order-card-date { font-size: 11px; color: var(--text-muted); }
.order-card-name { font-size: 13px; font-weight: 600; color: var(--heading); }
.order-card-items { list-style: none; padding: 0; margin: 0; font-size: 12px; color: var(--text-muted); }
.order-card-items li { padding: 2px 0; }

/* ── Sepet paneli — dark mod düzeltmeleri (tanımsız --tag-bg/--hover-bg fallback'leri açık kalıyordu) ── */
[data-theme="dark"] .cart-item,
[data-theme="dark"] .order-card { background: var(--bg2); border-color: var(--border); }
[data-theme="dark"] .cart-item-opt { background: rgba(255,255,255,.09); color: var(--text); }
[data-theme="dark"] .cart-qty-btn { background: var(--bg2); color: var(--text); }
[data-theme="dark"] .cart-close-btn:hover,
[data-theme="dark"] .order-track-close:hover { background: rgba(255,255,255,.09); }
[data-theme="dark"] .cart-tab { color: var(--text-muted); }
[data-theme="dark"] .cart-form-error { background: rgba(239,68,68,.16); }

/* Onay overlay */
.cart-confirm-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.6);
    z-index: 1200; display: flex; align-items: center; justify-content: center; padding: 20px;
}
.cart-confirm-box {
    background: var(--surface,#fff); border-radius: 20px; padding: 40px 32px;
    max-width: 360px; width: 100%; text-align: center;
    box-shadow: 0 32px 64px rgba(0,0,0,.3);
}
.cart-confirm-icon { font-size: 52px; color: #22c55e; margin-bottom: 16px; }
.cart-confirm-box h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--heading); }
.cart-confirm-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.cart-confirm-box .btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; }
/* Sipariş URL kutusu */
.cart-confirm-url-wrap { background: var(--bg2); border-radius: 12px; padding: 14px; margin-bottom: 16px; text-align: left; }
.cart-confirm-url-label { font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.cart-confirm-url-row { display: flex; gap: 6px; }
.cart-confirm-url-input { flex: 1; font-size: 12px; padding: 6px 10px; border-radius: 8px; border: 1px solid var(--border); background: var(--surface); color: var(--text); min-width: 0; }
.cart-confirm-url-copy { flex-shrink: 0; width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border); background: var(--surface); color: var(--text-muted); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s; }
.cart-confirm-url-copy:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-confirm-url-hint { font-size: 11px; color: var(--text-muted); margin-top: 6px; margin-bottom: 0; }
/* Sipariş takip modalı */
.order-track-box { max-width: 460px; padding: 0; text-align: left; overflow: hidden; }
.order-track-title { display: flex; align-items: center; font-size: 16px; font-weight: 700; color: var(--heading); padding: 20px 24px; border-bottom: 1px solid var(--border); }
.order-track-close { margin-left: auto; background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 16px; padding: 2px 6px; border-radius: 6px; transition: background .15s; }
.order-track-close:hover { background: var(--bg2); }
#orderTrackBody { padding: 20px 24px; max-height: 70vh; overflow-y: auto; }
.order-track-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.order-track-status { font-size: 11px; font-weight: 800; padding: 3px 12px; border-radius: 20px; }
.order-track-date { font-size: 12px; color: var(--text-muted); margin-left: auto; }
.order-track-customer { background: var(--bg2); border-radius: 10px; padding: 12px 14px; margin-bottom: 14px; }
.order-track-customer p { font-size: 13px; color: var(--text); margin: 0 0 4px; }
.order-track-customer p:last-child { margin: 0; }
.order-track-items { padding-left: 16px; font-size: 13px; color: var(--text); margin-bottom: 14px; }
.order-track-items li { margin-bottom: 8px; }
.order-track-note { background: #fef9c3; color: #713f12; border-radius: 8px; padding: 10px 14px; font-size: 12px; }
[data-theme="dark"] .order-track-note { background: rgba(234,179,8,.15); color: #fde68a; }
.order-opt-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 3px; }
.order-opt-tag { background: var(--bg2); border: 1px solid var(--border); border-radius: 4px; padding: 1px 6px; font-size: 11px; color: var(--text-muted); }


/* ── Projeler ─────────────────────────────────────────────────────────── */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.project-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.project-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.project-cover { position: relative; }
.project-cover-media { aspect-ratio: 16/9; background: var(--bg2); overflow: hidden; }
.project-cover-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.project-card:hover .project-cover-media img { transform: scale(1.05); }
.project-cover-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 40px; opacity: .5; }
.project-logo { position: absolute; left: 16px; bottom: -26px; z-index: 3; width: 56px; height: 56px; border-radius: 12px; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 12px rgba(0,0,0,.12); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.project-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.project-body { padding: 20px; padding-top: 34px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.project-title { font-size: 18px; font-weight: 700; color: var(--text); margin: 0; }
.project-desc { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.55; }
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.project-tag { background: var(--bg2); border: 1px solid var(--border); color: var(--text-muted); border-radius: 20px; padding: 3px 12px; font-size: 12px; font-weight: 500; }
.project-links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: auto; padding-top: 6px; }
.project-web { display: inline-flex; align-items: center; font-size: 13px; font-weight: 600; color: var(--primary); text-decoration: none; }
.project-web:hover { text-decoration: underline; }
.project-soc { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; background: var(--bg2); border: 1px solid var(--border); color: var(--text); font-size: 15px; text-decoration: none; transition: background .15s ease, color .15s ease; }
.project-soc:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Projeler — devamı linki + detay butonu + modal */
.project-more { font-size: 13px; font-weight: 600; color: var(--primary); text-decoration: none; white-space: nowrap; }
.project-more:hover { text-decoration: underline; }
.project-detail-btn { display: inline-flex; align-items: center; font-size: 13px; font-weight: 600; color: var(--text); background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 6px 12px; cursor: pointer; transition: background .15s ease, color .15s ease; }
.project-detail-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.proj-modal-cover { position: relative; margin-bottom: 34px; }
.proj-modal-cover-img { width: 100%; max-height: 320px; object-fit: cover; border-radius: 12px; display: block; }
.proj-modal-logo { position: absolute; left: 16px; bottom: -22px; width: 64px; height: 64px; border-radius: 14px; background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 14px rgba(0,0,0,.15); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.proj-modal-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.proj-modal-desc { color: var(--text); font-size: 15px; line-height: 1.7; white-space: normal; }
