/*
Theme Name: Kumru Elektronik
Theme URI: https://kumruelektronik.com
Author: Kumru Yazılım
Author URI: https://kumruelektronik.com
Description: Premium TV Tamir ve Elektronik Servisi Teması — Hamburger Sidebar, Yönetici Paneli, TV Tamir Kayıt Sistemi (AI Asistan kaldırıldı)
Version: 7.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
Text Domain: kumru-elektronik
*/

/* Google Fonts — must be at top */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Barlow+Condensed:wght@500;700;800&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary:       #E8650A;
    --primary-dark:  #c4520a;
    --primary-light: #f07830;
    --accent:        #FF7A1A;
    --accent2:       #ffaa44;
    --dark:          #1a0a00;
    --dark2:         #2d1500;
    --dark3:         #3d1e00;
    --glass:         rgba(255,255,255,0.12);
    --glass-border:  rgba(255,255,255,0.25);
    --text:          #ffffff;
    --text-muted:    #ffe0c0;
    --white:         #ffffff;
    --nav-h:         50px;
    --radius:        12px;
    --shadow:        0 8px 32px rgba(232,101,10,0.3);
    --glow:          0 0 18px rgba(232,101,10,0.6);
    --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', 'Nunito Sans', sans-serif;
    background: #f4f4f6;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ============================================================
   TOP BAR (logo + search + user zone)
   ============================================================ */
.site-topbar {
    background: var(--dark);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

/* Hamburger Butonu — sol üst köşe */
.kumru-hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.10);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background .15s;
    flex-shrink: 0;
    margin-right: 10px;
}
.kumru-hamburger-btn:hover { background: rgba(255,255,255,0.22); }

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.site-branding .brand-icon {
    width: 42px; height: 42px;
    background: var(--primary);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff;
    box-shadow: var(--glow);
}

.site-branding .brand-text { line-height: 1.2; }
.site-branding .brand-name {
    font-size: 16px; font-weight: 800;
    color: var(--white); letter-spacing: 0.5px;
}
.site-branding .brand-tagline {
    font-size: 11px; color: var(--text-muted);
    font-weight: 400; letter-spacing: 1px;
    text-transform: uppercase;
}

/* Search bar */
/* Arama kutusu stilleri aşağıda (dosya sonu) tanımlanmıştır */

/* Topbar right zone */
.topbar-right {
    display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}

/* Search + telefon sarmalayıcı */
.topbar-search-phone-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 20px;
    max-width: 600px;
}

.topbar-search-phone-wrap .topbar-search {
    flex: 1;
    margin: 0;
    max-width: none;
}

/* Topbar'daki telefon numarası */
.topbar-phone-inline {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 7px 14px;
    color: var(--accent2);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: default;
}
.topbar-phone-inline i { color: #ffd700; font-size: 14px; }

.topbar-phone-switcher { position: relative; height: 20px; overflow: hidden; min-width: 130px; }
.phone-num-top {
    position: absolute; top: 0; left: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: translateY(0); opacity: 1;
}
.phone-num-top.hidden { opacity: 0; transform: translateY(-8px); }

/* Currency badge */
.currency-badge {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; padding: 6px 12px;
    font-size: 12px; color: var(--text-muted);
    cursor: default;
}
.currency-badge .currency-val {
    color: var(--accent2); font-weight: 700; font-size: 13px;
}

/* Cart icon */
.cart-icon-wrap {
    position: relative; cursor: pointer;
    color: var(--text-muted); font-size: 20px;
    transition: var(--transition);
}
.cart-icon-wrap:hover { color: #fff; }
.cart-count {
    position: absolute; top: -6px; right: -8px;
    background: var(--accent); color: #fff;
    font-size: 10px; font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    animation: pulse-red 1.5s infinite;
}
@keyframes pulse-red {
    0%,100% { box-shadow: 0 0 0 0 rgba(231,76,60,0.7); }
    50%      { box-shadow: 0 0 0 6px rgba(231,76,60,0); }
}

/* Bayi giriş button */
.bayi-login-btn {
    display: flex; align-items: center; gap: 8px;
    background: transparent;
    border: 1.5px solid var(--primary);
    border-radius: 25px; padding: 8px 16px;
    color: #fff; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    box-shadow: 0 0 10px rgba(232,101,10,0.3);
    white-space: nowrap;
}
.bayi-login-btn:hover {
    background: var(--primary);
    box-shadow: var(--glow);
}

/* User dropdown */
.user-zone { position: relative; }
.user-trigger {
    display: flex; align-items: center; gap: 8px;
    cursor: pointer; padding: 6px 12px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 25px; color: #fff;
    font-weight: 700; font-size: 13px;
    transition: var(--transition);
    user-select: none;
}
.user-trigger:hover { background: rgba(255,255,255,0.14); }
.user-trigger .user-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800;
}

.user-dropdown {
    position: absolute; top: calc(100% + 10px); right: 0;
    width: 220px;
    background: rgba(20,20,20,0.92);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 8px 0;
    opacity: 0; pointer-events: none;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 9999;
}
.user-zone:hover .user-dropdown,
.user-dropdown.open {
    opacity: 1; pointer-events: auto; transform: translateY(0);
}
.user-dropdown a, .user-dropdown .dd-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; color: var(--text);
    font-size: 13px; font-weight: 500;
    transition: var(--transition); cursor: pointer;
}
.user-dropdown a:hover, .user-dropdown .dd-item:hover {
    background: rgba(255,255,255,0.07); color: #fff;
}
.user-dropdown .dd-divider {
    height: 1px; background: rgba(255,255,255,0.08);
    margin: 4px 0;
}
.badge-approved {
    background: #1a5c2a; color: #4ade80;
    border-radius: 10px; padding: 2px 8px; font-size: 11px;
    box-shadow: 0 0 8px rgba(74,222,128,0.4);
}
.badge-pending {
    background: rgba(231,76,60,0.2); color: var(--accent);
    border-radius: 10px; padding: 2px 8px; font-size: 11px;
    animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0.4; } }

/* ============================================================
   NAVIGATION BAR (50px strict height)
   ============================================================ */
.site-nav {
    background: var(--primary);
    height: var(--nav-h);
    min-height: var(--nav-h);
    max-height: var(--nav-h);
    overflow: hidden;
    position: sticky;
    top: 64px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(232,101,10,0.4);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    overflow: hidden;
}

.primary-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0;
    height: var(--nav-h);
    overflow: hidden;
}

.primary-menu li {
    display: inline-flex !important;
    align-items: center !important;
    height: var(--nav-h);
    flex-shrink: 0;
}

.primary-menu li a,
.primary-menu > li > a {
    display: inline-flex;
    align-items: center;
    height: var(--nav-h);
    padding: 0 14px;
    color: rgba(255,255,255,0.88);
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.primary-menu li a::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; right: 50%;
    height: 3px; background: #fff;
    border-radius: 2px 2px 0 0;
    transition: left 0.3s ease, right 0.3s ease;
}
.primary-menu li a:hover::after,
.primary-menu li.current-menu-item a::after {
    left: 8px; right: 8px;
}
.primary-menu li a:hover { color: #fff; }
.primary-menu li.current-menu-item > a { color: #fff; }

/* ── Pill-style nav menu items (örnekbut.png design) ── */
.primary-menu li a.nav-menu-pill,
.primary-menu > li > a.nav-menu-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: auto;
    padding: 6px 13px;
    margin: 0 2px;
    background: rgba(255,255,255,0.13);
    border: 1.5px solid rgba(255,255,255,0.22);
    border-radius: 50px;
    color: rgba(255,255,255,0.92);
    font-size: 12.5px;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
    letter-spacing: 0.2px;
    backdrop-filter: blur(4px);
}
.primary-menu li a.nav-menu-pill i:first-child {
    font-size: 11px;
    opacity: 0.85;
}
.primary-menu li a.nav-menu-pill .nav-caret {
    font-size: 8px;
    margin-left: 2px;
    opacity: 0.65;
}
.primary-menu li a.nav-menu-pill::after {
    display: none !important;
}
.primary-menu li a.nav-menu-pill:hover,
.primary-menu li.current-menu-item > a.nav-menu-pill {
    background: rgba(255,255,255,0.26);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    transform: translateY(-1px);
}

/* WhatsApp Products link */
.nav-wa-link a {
    color: #ffd700 !important;
    font-weight: 700 !important;
}
.nav-wa-link a::after { background: #ffd700 !important; }

/* Nav phone */
.nav-phone {
    display: flex; align-items: center; gap: 8px;
    color: #fff; font-weight: 700; font-size: 14px;
    white-space: nowrap; flex-shrink: 0;
}
.nav-phone i { color: #ffd700; }
.phone-switcher { position: relative; height: 20px; overflow: visible; }
.phone-num {
    position: absolute; top: 0; left: 0;
    transition: opacity 0.6s ease;
    white-space: nowrap;
}
.phone-num.hidden { opacity: 0; }

/* ============================================================
   HERO BANNER — Tek Büyük Kohesif Panel
   ============================================================ */
.hero-banner {
    max-width: 1400px;
    margin: 28px auto;
    padding: 0 24px;
}

.hero-banner > * { position: relative; z-index: 2; }

/* Ana panel: koyu kırmızıdan koyu turuncuya gradient */
.hero-banner {
    background: linear-gradient(135deg,
        #6b1209 0%,
        #8B1E12 30%,
        #a83212 60%,
        #b84e00 85%,
        #c26000 100%
    );
    border-radius: calc(var(--radius) * 1.5);
    padding: 56px 56px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Dekoratif ışıma efektleri */
.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}
.hero-bg-glow-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    top: -150px; left: -100px;
}
.hero-bg-glow-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,150,0,0.12) 0%, transparent 70%);
    bottom: -100px; right: -80px;
}

/* Dekoratif büyük TV ikonu */
.hero-bg-tv-icon {
    position: absolute;
    right: -30px; top: 50%;
    transform: translateY(-60%);
    font-size: 320px;
    color: rgba(255,255,255,0.04);
    pointer-events: none;
    z-index: 1;
    line-height: 1;
}

/* İçerik alanı */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-bottom: 40px;
    max-width: 760px;
    width: 100%;
}

/* Üst rozet */
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
    padding: 6px 14px; border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* Büyük başlık */
.hero-title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title span {
    color: #ffd166;
    text-shadow: 0 0 40px rgba(255,200,0,0.4);
}

/* Alt metin */
.hero-sub {
    color: rgba(255,255,255,0.78);
    font-size: clamp(14px, 1.8vw, 17px);
    line-height: 1.6;
    margin: 0;
    max-width: 560px;
}

/* Tek merkezi CTA butonu */
.hero-cta-main {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff;
    color: #8B1E12;
    border-radius: 50px;
    padding: 16px 36px;
    font-weight: 800; font-size: 16px;
    letter-spacing: 0.2px;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 0 3px rgba(255,255,255,0.15);
    text-decoration: none;
    margin-top: 8px;
}
.hero-cta-main .fab { font-size: 22px; color: #25d366; }
.hero-cta-main:hover {
    background: #ffd166;
    color: #6b1209;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.hero-cta-main:hover .fab { color: #6b1209; }

/* Hizmet özellikleri şeridi — panelin alt kısmına entegre */
.hero-features {
    display: flex;
    align-items: stretch;
    width: calc(100% + 112px);
    margin-left: -56px;
    margin-right: -56px;
    background: rgba(0,0,0,0.22);
    border-top: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    border-radius: 0 0 calc(var(--radius) * 1.5) calc(var(--radius) * 1.5);
    overflow: hidden;
}

.hero-feature {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    transition: background 0.2s;
}
.hero-feature:hover {
    background: rgba(255,255,255,0.06);
}

.hero-feature-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; color: #ffd166;
    flex-shrink: 0;
}

.hero-feature-title {
    font-size: 13px; font-weight: 700; color: #fff;
    margin-bottom: 2px;
}
.hero-feature-sub {
    font-size: 11px; color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

.hero-feature-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
    align-self: stretch;
    flex-shrink: 0;
}

/* Eski sidebar kartlar — artık kullanılmıyor, gizle */
.hero-sidebar, .hero-card, .hero-cta { display: none; }

/* ============================================================
   SERVICE CARDS (TV LED / TV ELED / TV Panel)
   ============================================================ */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 400px));
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto 24px;
    padding: 0 24px;
    justify-content: center;
}

.svc-card {
    border-radius: var(--radius); padding: 24px;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 130px; cursor: pointer;
    transition: var(--transition); position: relative; overflow: hidden;
    text-decoration: none;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-card-led     { background: linear-gradient(135deg, #8B1E12, #c0392b); color: #fff; }
.svc-card-eled    { background: linear-gradient(135deg, #7a1a10, #b03228); color: #fff; }
.svc-card-panel   { background: linear-gradient(135deg, #0d1b2a, #1e3048); color: #fff; }
.svc-card-led-deg { background: linear-gradient(135deg, #1a3a6b, #2563eb); color: #fff; }

.svc-card-title {
    font-size: 20px; font-weight: 800; line-height: 1.2;
    color: #fff;
}
.svc-card-sub { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 6px; }
.svc-card-icon {
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    font-size: 48px; opacity: 0.2;
}

/* TV Panel Değişimi Banner (Ana Sayfa) */
.tv-panel-degisimi-banner {
    position: relative;
    background: linear-gradient(135deg, #0d1b2a 0%, #8B1E12 100%);
    padding: 56px 24px 48px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    margin-bottom: 0;
}
.tv-panel-degisimi-banner .tpdb-bg-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    z-index: 0;
}
.tv-panel-degisimi-banner .tpdb-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,10,.72);
    z-index: 1;
}
.tv-panel-degisimi-banner .tpdb-inner {
    position: relative; z-index: 2;
    max-width: 780px; margin: 0 auto;
}
.tpdb-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px; padding: 5px 16px; font-size: 12px; font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase; margin-bottom: 18px;
}
.tpdb-baslik {
    font-size: clamp(26px, 5vw, 44px);
    font-weight: 900; margin: 0 0 14px;
    line-height: 1.1;
}
.tpdb-alt {
    font-size: 15px; opacity: .8;
    max-width: 580px; margin: 0 auto 24px;
    line-height: 1.6;
}
.tpdb-ozellikler {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center; margin-bottom: 28px;
}
.tpdb-ozellik {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px; padding: 6px 14px; font-size: 13px; font-weight: 600;
}
.tpdb-ozellik i { color: #4ade80; }
.tpdb-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; color: #8B1E12;
    padding: 14px 30px; border-radius: 14px;
    font-weight: 800; font-size: 15px;
    text-decoration: none;
    transition: background .15s, transform .15s;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.tpdb-btn:hover { background: #f5f5f5; transform: translateY(-2px); }
@media(max-width: 768px) {
    .service-cards { grid-template-columns: repeat(2, 1fr); }
    .tpdb-ozellikler { gap: 8px; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 16px; max-width: 1400px; margin: 0 auto 32px; padding: 0 24px;
}
.stat-item {
    background: #fff; border-radius: var(--radius);
    padding: 20px; text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.stat-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.stat-icon { font-size: 28px; margin-bottom: 8px; }
.stat-num { font-size: 24px; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   BRAND LOGOS — MARQUEE TICKER
   ============================================================ */
.brand-ticker-wrap {
    background: var(--dark); overflow: hidden;
    padding: 14px 0; margin-bottom: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.brand-ticker {
    display: flex; gap: 60px; white-space: nowrap;
    animation: ticker-scroll 22s linear infinite;
    will-change: transform;
}
.brand-ticker:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.brand-ticker-item {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.55); font-size: 18px;
    font-weight: 800; letter-spacing: 1px;
    flex-shrink: 0; transition: color 0.3s;
}
.brand-ticker-item:hover { color: #fff; }
.brand-ticker-item img { height: 28px; width: auto; filter: brightness(0.7); transition: filter 0.3s; }
.brand-ticker-item:hover img { filter: brightness(1); }

/* ============================================================
   BRANDS GRID (Tamir Ettiğimiz Markalar)
   ============================================================ */
.section-heading {
    display: flex; align-items: center; gap: 10px;
    font-size: 20px; font-weight: 800; margin-bottom: 20px;
    color: #1a1a1a;
}
.section-heading::before {
    content: ''; width: 4px; height: 22px;
    background: var(--primary); border-radius: 2px;
}

.brands-grid {
    display: grid; grid-template-columns: repeat(6,1fr);
    gap: 12px; margin-bottom: 32px;
}
.brand-card {
    background: #fff; border-radius: var(--radius);
    padding: 20px 12px; text-align: center;
    border: 1.5px solid #e8e8e8;
    cursor: pointer; transition: var(--transition);
    font-weight: 700; color: #444; font-size: 14px;
}
.brand-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232,101,10,0.12);
}
.brand-card img { height: 36px; width: auto; margin: 0 auto 8px; object-fit: contain; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.content-section {
    max-width: 1400px; margin: 0 auto 32px; padding: 0 24px;
}

.services-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.service-item {
    background: #fff; border-radius: var(--radius);
    padding: 24px; border: 1.5px solid #f0f0f0;
    transition: var(--transition); cursor: pointer;
}
.service-item:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 24px rgba(232,101,10,0.10);
    transform: translateY(-3px);
}
.service-item-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: rgba(232,101,10,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 12px;
    color: var(--primary);
}
.service-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.service-item p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
    max-width: 1400px; margin: 0 auto 40px; padding: 0 24px;
}
.map-inner {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}
.map-inner iframe {
    width: 100%; height: 380px; border: none; display: block;
}
.map-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 100%);
    padding: 20px 24px;
    display: flex; align-items: flex-end; justify-content: space-between;
}
.map-info { color: #fff; }
.map-info h3 { font-size: 18px; font-weight: 800; }
.map-info p  { font-size: 13px; opacity: 0.75; margin-top: 4px; }
.map-wa-btn {
    background: #25d366; color: #fff;
    border-radius: 30px; padding: 10px 22px;
    font-weight: 700; font-size: 13px;
    display: flex; align-items: center; gap: 8px;
    transition: var(--transition); cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}
.map-wa-btn:hover { background: #1fb657; transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark2); color: var(--text-muted);
    padding: 40px 24px 0;
}
.footer-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px; padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .brand-name { color: #fff; font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); transition: color 0.3s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0; font-size: 12px;
}
.footer-bottom-brand { font-weight: 700; color: rgba(255,255,255,0.5); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
/* ============================================================
   FLOATING AI ASISTAN BUTTON PLACEHOLDER
   ============================================================ */

/* ============================================================
   PAGE TEMPLATE (default pages)
   ============================================================ */
.page-layout {
    display: grid; grid-template-columns: 1fr 300px;
    gap: 24px; max-width: 1400px;
    margin: 32px auto; padding: 0 24px;
}
.page-content-area {
    background: #fff; border-radius: var(--radius);
    padding: 36px; box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.page-content-area h1 {
    font-size: 26px; font-weight: 800; margin-bottom: 20px;
    color: var(--dark); padding-bottom: 16px;
    border-bottom: 3px solid var(--primary);
}
.page-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget {
    background: #fff; border-radius: var(--radius);
    padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.sidebar-widget h3 {
    font-size: 14px; font-weight: 700;
    margin-bottom: 14px; color: var(--primary);
    text-transform: uppercase; letter-spacing: 0.5px;
}

/* ============================================================
   GIZLI YAZILIM KASASI (Admin Only)
   ============================================================ */
.vault-page {
    background: #0a0a0a; min-height: 100vh;
    padding: 32px 24px; color: var(--text);
}
.vault-header {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 32px;
}
.vault-header h1 {
    font-size: 28px; font-weight: 800;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.vault-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.vault-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 20px;
    transition: var(--transition);
}
.vault-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(231,76,60,0.4);
    box-shadow: 0 0 20px rgba(231,76,60,0.15);
}
.vault-card-icon { font-size: 32px; margin-bottom: 10px; }
.vault-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.vault-card p  { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.vault-dl-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(231,76,60,0.15); color: #e74c3c;
    border: 1px solid rgba(231,76,60,0.3);
    border-radius: 8px; padding: 8px 14px;
    font-size: 12px; font-weight: 600;
    transition: var(--transition); cursor: pointer;
}
.vault-dl-btn:hover { background: rgba(231,76,60,0.25); }

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
    min-height: 60vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 60px 24px;
}
.page-404 .err-code {
    font-size: 120px; font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1;
}
.page-404 h2 { font-size: 24px; margin: 16px 0 8px; }
.page-404 p  { color: var(--text-muted); margin-bottom: 24px; }
.back-home-btn {
    background: var(--primary); color: #fff;
    border-radius: 30px; padding: 12px 28px;
    font-weight: 700; font-size: 14px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.back-home-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

/* ============================================================
   SINGLE / ARCHIVE
   ============================================================ */
.single-wrap, .archive-wrap {
    max-width: 1400px; margin: 32px auto; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 300px; gap: 24px;
}
.single-article {
    background: #fff; border-radius: var(--radius);
    padding: 36px; box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.single-article h1 { font-size: 26px; font-weight: 800; margin-bottom: 16px; }
.post-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.archive-grid { display: grid; gap: 16px; }
.archive-card {
    background: #fff; border-radius: var(--radius);
    padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.archive-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
.archive-card h2 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.archive-card h2 a:hover { color: var(--primary); }
.archive-card p { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   SEARCH PAGE
   ============================================================ */
.search-page {
    max-width: 900px; margin: 32px auto; padding: 0 24px;
}
.search-page h1 { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.search-result {
    background: #fff; border-radius: var(--radius);
    padding: 20px; margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.search-result:hover { transform: translateY(-2px); }
.search-result h2 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.search-result h2 a:hover { color: var(--primary); }

/* ============================================================
   SKELETON SHIMMER
   ============================================================ */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 6px;
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .brands-grid { grid-template-columns: repeat(3,1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .single-wrap, .archive-wrap, .page-layout { grid-template-columns: 1fr; }
    .page-sidebar { display: none; }
}
@media (max-width: 768px) {
    .hero-banner { padding: 40px 28px 0; }
    .hero-features { width: calc(100% + 56px); margin-left: -28px; margin-right: -28px; flex-wrap: wrap; }
    .hero-feature { padding: 14px 12px; gap: 8px; flex-basis: calc(50% - 0.5px); }
    .hero-feature-sub { display: none; }
    .service-cards { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2,1fr); }
    .brands-grid { grid-template-columns: repeat(2,1fr); }
    .primary-menu { gap: 0; overflow-x: auto; }
    .primary-menu li a { padding: 0 10px; font-size: 12px; }
    .site-topbar { padding: 0 12px; }
    .topbar-search { max-width: 200px; margin: 0 10px; }
    .footer-inner { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NEWS SLIDER (Brands/Haberler)
   ============================================================ */
.news-slider-wrap {
    max-width: 1400px; margin: 0 auto 32px; padding: 0 24px; overflow: hidden;
}
.news-slider { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.news-slider::-webkit-scrollbar { height: 4px; }
.news-slider::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }
.news-card {
    min-width: 280px; background: #fff;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    scroll-snap-align: start; transition: var(--transition);
    flex-shrink: 0;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.news-card img { width: 100%; height: 160px; object-fit: cover; }
.news-card-body { padding: 14px; }
.news-card-body h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.news-card-body p  { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   v3.0 OVERHAUL — SOCIAL TOP STRIP
   ============================================================ */
.social-topstrip {
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 6px 24px;
}
.social-topstrip-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.social-topstrip-label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.social-topstrip-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.social-topstrip-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3px 10px;
    transition: var(--transition);
    font-weight: 600;
}
.social-topstrip-links a:hover {
    color: #fff;
    border-color: var(--primary);
    background: rgba(232,101,10,0.2);
}

/* ============================================================
   v3.0 — SITE LOGO IMG (custom_logo support)
   ============================================================ */
.site-logo-img {
    max-height: 50px;
    width: auto;
    display: block;
}

/* ============================================================
   v3.0 — HEADER CART BUTTON
   ============================================================ */
.header-cart-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 25px;
    padding: 7px 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.header-cart-btn:hover {
    background: rgba(255,255,255,0.14);
    border-color: var(--primary);
}
.header-cart-btn .cart-count {
    position: static;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-cart-btn .cart-total-label {
    font-size: 11px;
    color: var(--accent2);
    font-weight: 700;
}

/* ============================================================
   v3.0 — USER ZONE PREMIUM DROPDOWN
   ============================================================ */
.user-zone { position: relative; }
.user-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 7px 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
    user-select: none;
    white-space: nowrap;
}
.user-trigger:hover { background: rgba(255,255,255,0.14); }
.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}
.user-name { max-width: 90px; overflow: hidden; text-overflow: ellipsis; }

/* Dropdown panel */
.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #0f1c2e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    z-index: 2000;
}
.user-dropdown.open,
.user-zone:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}
.user-dropdown a:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}
.user-dropdown a i { color: #f39c12; width: 16px; text-align: center; }
.dd-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 6px 0;
}
.dd-logout { color: #ff6b6b !important; }
.dd-logout i { color: #ff6b6b !important; }
.dd-logout:hover { background: rgba(255,107,107,0.1) !important; }

/* Guest dropdown buttons */
.guest-dropdown {
    min-width: 180px;
}
.dd-guest-btn {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 6px 10px;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    justify-content: center;
    text-align: center;
}
.dd-login {
    background: var(--primary) !important;
    color: #fff !important;
}
.dd-login:hover { background: var(--primary-light) !important; }
.dd-login i { color: #fff !important; }
.dd-register {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: rgba(255,255,255,0.85) !important;
}
.dd-register:hover { background: rgba(255,255,255,0.12) !important; }
.dd-register i { color: rgba(255,255,255,0.7) !important; }

/* ============================================================
   v3.0 — CURRENCY BADGE (updated)
   ============================================================ */
.currency-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    color: var(--text-muted);
    cursor: default;
    white-space: nowrap;
}
.currency-badge .currency-val {
    color: var(--accent2);
    font-weight: 800;
    font-size: 13px;
}
.currency-badge .currency-label {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

/* ============================================================
   v3.0 — NAV PILL BUTTONS (Vestel + Fiyat Al)
   ============================================================ */
.nav-action-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.nav-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    font-family: inherit;
}

.nav-pill-fiyat {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: 0 2px 12px rgba(232,101,10,0.4);
}
.nav-pill-fiyat:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(232,101,10,0.55);
}
.nav-wa-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, #1db954, #128a3d);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(29,185,84,0.4);
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.nav-wa-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(29,185,84,0.55);
}

/* ============================================================
   v3.0 — FIYAT AL MODAL
   ============================================================ */
.fiyat-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.fiyat-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.fiyat-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 460px;
    width: 90%;
    position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.fiyat-modal-overlay.open .fiyat-modal-box {
    transform: scale(1);
}
.fiyat-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
    transition: color 0.2s;
}
.fiyat-modal-close:hover { color: var(--primary); }
.fiyat-modal-box h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fiyat-modal-box h2 i { color: var(--primary); }
.fiyat-modal-box p {
    color: #666;
    font-size: 13px;
    margin-bottom: 20px;
}
.fiyat-modal-form { display: flex; flex-direction: column; gap: 12px; }
.fiyat-modal-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
}
.fiyat-modal-form input:focus { border-color: var(--primary); }
.fiyat-modal-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(135deg, #1db954, #128a3d);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.fiyat-modal-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29,185,84,0.45);
}


/* ============================================================
   v3.0 — PRODUCT BADGES (pill-shaped)
   ============================================================ */
.product-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.badge-new {
    background: linear-gradient(135deg, #8B1E12, #c0392b);
    color: #fff;
}
.badge-sale {
    background: linear-gradient(135deg, #e74c3c, #ff6b6b);
    color: #fff;
}

/* ============================================================
   v3.0 — PILL-SHAPED CATEGORY FILTERS
   ============================================================ */
.category-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
}
.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    background: #fff;
    border: 1.5px solid #e8e8e8;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    white-space: nowrap;
    text-decoration: none;
}
.category-pill:hover,
.category-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232,101,10,0.3);
    transform: translateY(-1px);
}

/* Brand filter pills */
.brand-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.brand-pill {
    padding: 6px 16px;
    border-radius: 50px;
    background: #f5f5f5;
    border: 1.5px solid #e0e0e0;
    font-size: 12px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.brand-pill:hover {
    background: #1a4a8a;
    border-color: #1a4a8a;
    color: #fff;
}

/* ============================================================
   v3.0 — PRODUCT CARD (premium glassmorphism style)
   ============================================================ */
.product-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}
.product-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.product-card-body { padding: 16px; }
.product-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.product-card-price {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.product-card-price-old {
    font-size: 13px;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 6px;
}

/* ============================================================
   v3.0 — FOOTER SSL SECURITY BADGE
   ============================================================ */
.footer-ssl-badge {
    text-align: center;
    padding: 14px 24px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.3px;
}
.footer-ssl-badge i {
    color: #2ecc71;
    font-size: 13px;
}
.footer-ssl-badge strong {
    color: rgba(255,255,255,0.5);
}

/* ============================================================
   v3.0 — FOOTER SOCIAL LINKS
   ============================================================ */
.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255,255,255,0.45) !important;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 4px 10px;
    transition: var(--transition);
    text-decoration: none !important;
}
.footer-social-link:hover {
    color: #fff !important;
    border-color: var(--primary);
    background: rgba(232,101,10,0.2);
}

/* ============================================================
   v3.0 — B2C LOGIN / REGISTER PAGE STYLES
   ============================================================ */
.auth-page-wrap {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f8fa 0%, #f0f0f4 100%);
}
.auth-card {
    background: #fff;
    border-radius: 16px;
    padding: 44px 40px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.auth-card h1 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1a1a1a;
}
.auth-card p.auth-sub {
    color: #888;
    font-size: 13px;
    margin-bottom: 28px;
}
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-field { position: relative; }
.auth-field input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    background: #fdfdfd;
}
.auth-field input:focus { border-color: var(--primary); background: #fff; }
.auth-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}
.auth-eye-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    font-size: 15px;
    padding: 2px;
}
.auth-eye-toggle:hover { color: var(--primary); }
.auth-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    margin-top: 4px;
}
.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,101,10,0.4);
}
.auth-google-btn {
    width: 100%;
    padding: 13px;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    font-family: inherit;
    color: #333;
}
.auth-google-btn:hover {
    border-color: #4285f4;
    background: #f8f9ff;
    box-shadow: 0 3px 12px rgba(66,133,244,0.2);
}
.auth-google-btn img { width: 20px; height: 20px; }
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 12px;
    margin: 4px 0;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}
.auth-links {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 8px;
}
.auth-links a { color: var(--primary); font-weight: 700; }
.auth-forgot { text-align: right; font-size: 12px; margin-top: -8px; }
.auth-forgot a { color: var(--primary); font-weight: 600; }
.auth-msg {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: none;
}
.auth-msg.success { background: #d4edda; color: #155724; }
.auth-msg.error   { background: #f8d7da; color: #721c24; }

/* Password strength indicator */
.pass-strength {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}
.pass-strength-bar {
    height: 3px;
    flex: 1;
    background: #e0e0e0;
    border-radius: 2px;
    transition: background 0.3s;
}
.pass-strength-bar.weak   { background: #e74c3c; }
.pass-strength-bar.medium { background: #f39c12; }
.pass-strength-bar.strong { background: #2ecc71; }

/* ============================================================
   v3.0 — HESABIM (My Account) DASHBOARD
   ============================================================ */
.dashboard-wrap {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
}
.dashboard-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    height: fit-content;
}
.dashboard-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 12px;
}
.dashboard-username {
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.dashboard-email {
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-bottom: 20px;
}
.dashboard-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    transition: var(--transition);
}
.dashboard-nav a:hover,
.dashboard-nav a.active {
    background: rgba(232,101,10,0.07);
    color: var(--primary);
}
.dashboard-nav a i { width: 16px; text-align: center; color: var(--primary); }
.dashboard-nav a.logout-link { color: #e74c3c; }
.dashboard-nav a.logout-link i { color: #e74c3c; }
.dashboard-content {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* ============================================================
   v3.0 — RESPONSIVE UPDATES
   ============================================================ */
@media (max-width: 1024px) {
    .dashboard-wrap { grid-template-columns: 1fr; }
    .nav-action-group { display: none; }
}
@media (max-width: 768px) {
    .social-topstrip { display: none; }
    .header-cart-btn .cart-total-label { display: none; }
    .user-name { display: none; }
    .currency-badge .currency-label { display: none; }
    .fiyat-modal-box { padding: 28px 20px; }
    .auth-card { padding: 32px 24px; }
}

/* ============================================================
   V3.1 — HİZMETLER SAYFASI STİLLERİ
   ============================================================ */

/* Hero */
.hizmet-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #8b1e12 100%);
    padding: 64px 24px;
    text-align: center;
    color: #fff;
}
.hizmet-hero-inner { max-width: 700px; margin: 0 auto; }
.hizmet-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    border-radius: 99px; padding: 6px 18px; font-size: 13px; font-weight: 700;
    color: #fff; margin-bottom: 20px;
}
.hizmet-hero h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 900; margin: 0 0 14px; }
.hizmet-hero p  { font-size: 16px; opacity: 0.85; line-height: 1.6; }

/* Hizmet kategorileri grid */
.hizmet-kategoriler { padding: 60px 24px; }
.content-wrap { max-width: 1200px; margin: 0 auto; }

.hizmet-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    gap: 20px !important;
    margin-top: 32px !important;
    list-style: none !important;
    padding: 0 !important;
}

.hizmet-kart {
    background: #fff !important;
    border-radius: 16px !important;
    border: 1.5px solid #f0f0f0 !important;
    padding: 28px 20px !important;
    text-decoration: none !important;
    color: inherit !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.hizmet-kart:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(200,50,30,0.15) !important;
    border-color: var(--primary, #c8321e) !important;
}
.hizmet-kart-icon {
    width: 48px !important; height: 48px !important;
    background: rgba(200,50,30,0.08) !important;
    border-radius: 12px !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    color: var(--primary, #c8321e) !important; font-size: 20px !important;
    flex-shrink: 0 !important;
}
.hizmet-kart h3 { font-size: 16px !important; font-weight: 800 !important; margin: 0 !important; color: #1a1a1a !important; }
.hizmet-kart p  { font-size: 13px !important; color: #666 !important; line-height: 1.5 !important; margin: 0 !important; flex: 1 !important; }
.hizmet-kart-link { font-size: 13px !important; font-weight: 700 !important; color: var(--primary, #c8321e) !important; display: flex !important; align-items: center !important; gap: 6px !important; }

/* ============================================================
   YORUMLAR BÖLÜMÜ
   ============================================================ */
.yorumlar-section { background: #f8f9fb; padding: 64px 24px; }
.yorum-badge {
    display: inline-block;
    background: rgba(99,102,241,0.1); color: #6366f1;
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 99px; padding: 5px 16px;
    font-size: 13px; font-weight: 700;
    margin-bottom: 16px;
}
.yorumlar-alt { color: #666; font-size: 15px; margin-bottom: 36px; }

.yorumlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}

.yorum-kart {
    background: #fff; border-radius: 16px;
    border: 1.5px solid #eee;
    padding: 22px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; gap: 12px;
    transition: box-shadow 0.2s;
}
.yorum-kart:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); }

.yorum-top { display: flex; align-items: center; gap: 12px; }
.yorum-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff; font-weight: 800; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.yorum-isim { font-weight: 700; font-size: 14px; }
.yorum-rol  { font-size: 12px; color: #888; }
.yorum-tırnak { margin-left: auto; color: #6366f1; opacity: 0.4; font-size: 18px; }
.yorum-metin { font-size: 13px; color: #444; line-height: 1.6; flex: 1; }
.yorum-footer { display: flex; align-items: center; justify-content: space-between; }
.yorum-yildiz { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.yorum-etiket {
    background: #f0f4ff; color: #6366f1;
    border-radius: 99px; padding: 3px 12px;
    font-size: 11px; font-weight: 700;
}

/* ============================================================
   SEO METİN BÖLÜMÜ
   ============================================================ */
.seo-section { padding: 60px 24px; background: #fff; }
.seo-content h2 { font-size: 24px; font-weight: 900; color: #1a1a1a; margin-bottom: 16px; }
.seo-content h3 { font-size: 18px; font-weight: 800; color: #1a1a1a; margin: 32px 0 10px; }
.seo-content p  { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 14px; }
.seo-content ul { padding-left: 20px; color: #555; font-size: 15px; line-height: 2; }

/* Premium CTA şerit */
.premium-cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px 24px;
}
.premium-cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
}
.premium-cta-inner h3 { color: #fff; font-size: 22px; font-weight: 900; margin: 0 0 6px; }
.premium-cta-inner p  { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; }
.premium-cta-btn {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #1a1a1a; font-weight: 800; font-size: 15px;
    padding: 14px 28px; border-radius: 99px;
    text-decoration: none; white-space: nowrap;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 24px rgba(245,158,11,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.premium-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245,158,11,0.5);
    color: #1a1a1a;
}

/* ============================================================
   YAZILIMLAR & DESTEK SAYFASI
   ============================================================ */
.yazilim-page { max-width: 900px; margin: 0 auto; padding: 32px 24px 60px; }

/* Topbar */
.yazilim-topbar {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 24px;
}
.yazilim-hamburger {
    display: flex; flex-direction: column; gap: 5px;
    background: #fff; border: 1.5px solid #e5e7eb;
    border-radius: 10px; padding: 10px 12px; cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.yazilim-hamburger:hover { background: #f8f8fa; }
.yazilim-hamburger span { display: block; width: 20px; height: 2px; background: #333; border-radius: 2px; }
.yazilim-search-wrap {
    flex: 1; display: flex; align-items: center; gap: 10px;
    background: #fff; border: 1.5px solid #e5e7eb;
    border-radius: 10px; padding: 10px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.yazilim-search-wrap i { color: #888; }
.yazilim-search-wrap input {
    border: none; outline: none; flex: 1;
    font-size: 14px; background: transparent;
}

/* Premium uyarı bar */
.premium-uyari-bar {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1.5px solid #f59e0b;
    border-radius: 12px; padding: 12px 20px;
    display: flex; align-items: center; gap: 12px;
    font-weight: 600; font-size: 14px; color: #92400e;
    margin-bottom: 24px; flex-wrap: wrap;
}
.uyari-btn {
    background: #fff; color: #92400e;
    border: 1.5px solid #f59e0b; border-radius: 99px;
    padding: 5px 14px; font-size: 13px; font-weight: 700;
    text-decoration: none; transition: all 0.2s;
}
.uyari-btn:hover { background: #f59e0b; color: #fff; }
.uyari-btn-gold {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff; border-color: transparent;
}
.uyari-btn-gold:hover { opacity: 0.9; color: #fff; }

/* VIP hero */
.yazilim-hero { text-align: center; padding: 40px 0 24px; position: relative; }
.yazilim-vip-badge {
    display: inline-block;
    background: #1a1a2e; color: #6366f1;
    border-radius: 99px; padding: 6px 18px;
    font-size: 12px; font-weight: 700; letter-spacing: 1px;
    margin-bottom: 20px;
}
.yazilim-ozel-badge {
    position: absolute; top: 24px; right: 0;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff; font-size: 10px; font-weight: 900;
    padding: 8px 12px; border-radius: 50%;
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; line-height: 1.2;
}
.yazilim-hero h1 { font-size: 36px; font-weight: 900; color: #1a1a1a; margin: 0 0 12px; }
.yazilim-hero p  { color: #666; font-size: 15px; line-height: 1.7; }

/* Kategori kartları */
.yazilim-kategoriler {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin: 24px 0;
}
.yazilim-kat-kart {
    background: #fff; border: 1.5px dashed #d1d5db;
    border-radius: 16px; padding: 28px 20px;
    text-align: center; text-decoration: none; color: inherit;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    transition: all 0.22s; cursor: pointer;
}
.yazilim-kat-kart:hover,
.yazilim-kat-kart--active {
    border-color: #6366f1; border-style: solid;
    background: rgba(99,102,241,0.04);
}
.yazilim-kat-isim { font-size: 13px; font-weight: 800; letter-spacing: 0.5px; color: #1a1a1a; }
.yazilim-kat-durum { font-size: 11px; color: #888; font-weight: 600; }

/* TV Yazılımları CTA */
.yazilim-tv-cta-wrap { padding: 8px 0 28px; }
.yazilim-tv-cta-card {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 60%, #24243e 100%);
    border: none;
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(99,102,241,0.25);
    position: relative;
    overflow: hidden;
}
.yazilim-tv-cta-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(99,102,241,.2) 0%, transparent 70%);
    pointer-events: none;
}
.yazilim-tv-cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}
.yazilim-tv-cta-icon-wrap {
    position: relative;
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.10);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.15);
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}
.yazilim-tv-cta-pulse {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 10px;
    height: 10px;
    background: #22d3ee;
    border-radius: 50%;
    border: 2px solid #0f0c29;
    animation: tvy-pulse 2s ease-in-out infinite;
}
@keyframes tvy-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(34,211,238,.5); }
    50%      { box-shadow: 0 0 0 6px rgba(34,211,238,0); }
}
.yazilim-tv-cta-icerik { flex: 1; min-width: 0; }
.yazilim-tv-cta-baslik {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -.2px;
}
.yazilim-tv-cta-alt {
    font-size: 12px;
    color: rgba(255,255,255,.6);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}
.yazilim-tv-cta-alt i { color: #22d3ee; }
/* Yazilim TV CTA buton stilleri aşağıda (dosya sonu) tanımlanmıştır */

/* Dosyalar */
.yazilim-dosyalar { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.yazilim-dosya-kart {
    background: #fff; border: 1.5px solid #e5e7eb;
    border-radius: 12px; padding: 16px 20px;
    display: flex; align-items: center; gap: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}
.yazilim-dosya-kart:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.yazilim-dosya-ikon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(99,102,241,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #6366f1; font-size: 18px; flex-shrink: 0;
}
.yazilim-dosya-bilgi { flex: 1; }
.yazilim-dosya-bilgi h3 { font-size: 14px; font-weight: 700; margin: 0 0 4px; }
.yazilim-dosya-bilgi p  { font-size: 12px; color: #888; margin: 0; }
.dosya-boyut { font-size: 11px; color: #6366f1; font-weight: 600; }
.dosya-indir-btn {
    background: #6366f1; color: #fff;
    border-radius: 8px; padding: 8px 16px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background 0.2s;
}
.dosya-indir-btn:hover { background: #4f46e5; color: #fff; }
.dosya-hazir-degil { font-size: 12px; color: #bbb; font-weight: 600; }
.dosya-kilitli { color: #ddd; font-size: 18px; }

/* Kilitli premium overlay */
.premium-kilitli { position: relative; min-height: 300px; }
.premium-kilitli-overlay {
    position: absolute; inset: 0; z-index: 10;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 40px; border-radius: 16px;
    border: 2px solid #f59e0b;
}
.premium-kilitli-overlay h3 { font-size: 20px; font-weight: 900; margin-bottom: 10px; }
.premium-kilitli-overlay p  { font-size: 14px; color: #666; margin-bottom: 20px; }
.premium-unlock-btn {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff; font-weight: 800; font-size: 15px;
    padding: 14px 28px; border-radius: 99px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 24px rgba(245,158,11,0.4);
    margin-bottom: 12px;
}
.premium-giris-btn {
    color: #6366f1; font-size: 13px; text-decoration: underline;
}
.yazilim-demo-blur { filter: blur(5px); pointer-events: none; }
.yazilim-dosya-kart--blur { opacity: 0.5; }

.yazilim-bos {
    text-align: center; padding: 60px 20px; color: #888;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.yazilim-footer-note {
    text-align: center; color: #999; font-size: 12px; margin: 20px 0 16px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.yazilim-geri-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #1a1a2e; color: #fff; font-weight: 700;
    padding: 14px 28px; border-radius: 12px;
    text-decoration: none; font-size: 15px;
    transition: background 0.2s;
}
.yazilim-geri-btn:hover { background: #2d2d4a; color: #fff; }

/* Yazılım sayfası mobil iyileştirmeleri */
@media (max-width: 640px) {
    .yazilim-page { padding: 16px 14px 48px; }
    .yazilim-topbar { gap: 10px; margin-bottom: 16px; }
    .premium-uyari-bar { font-size: 13px; padding: 10px 14px; gap: 8px; }
    .yazilim-dosya-kart { flex-wrap: wrap; padding: 14px; }
    .yazilim-dosya-kart .dosya-indir-btn { width: 100%; justify-content: center; margin-top: 8px; }
    .uyelik-tablo-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .uyelik-tablo { min-width: 480px; }
    .yazilim-geri-btn { width: 100%; justify-content: center; text-align: center; }
}

/* ============================================================
   PREMIUM ÜYELİK SAYFASI
   ============================================================ */
.premium-page { max-width: 960px; margin: 0 auto; padding: 40px 24px 80px; }
.premium-page-hero { text-align: center; padding: 40px 0 48px; }
.premium-page-hero h1 { font-size: 36px; font-weight: 900; margin: 12px 0 10px; }
.premium-page-hero p  { color: #666; font-size: 16px; }

.premium-plans {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    margin-bottom: 60px;
}
@media (max-width: 640px) { .premium-plans { grid-template-columns: 1fr; } }

.premium-plan-kart {
    background: #fff; border: 2px solid #e5e7eb;
    border-radius: 20px; padding: 36px 28px;
    display: flex; flex-direction: column; gap: 8px;
    position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.premium-plan-kart--gold {
    border-color: #f59e0b;
    background: linear-gradient(160deg, #fffbf0 0%, #fff8e7 100%);
    box-shadow: 0 8px 32px rgba(245,158,11,0.2);
}
.plan-rozet {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff; font-size: 12px; font-weight: 800;
    padding: 5px 16px; border-radius: 99px;
    white-space: nowrap;
}
.plan-baslik { font-size: 18px; font-weight: 900; color: #1a1a1a; margin-top: 8px; }
.plan-fiyat  { font-size: 42px; font-weight: 900; color: #1a1a1a; line-height: 1; }
.plan-fiyat span { font-size: 16px; font-weight: 500; color: #888; }
.plan-alt    { font-size: 13px; color: #888; margin-bottom: 8px; }

.plan-ozellikler { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.plan-ozellikler li { font-size: 14px; display: flex; align-items: center; gap: 10px; }
.plan-var { color: #1a1a1a; }
.plan-yok { color: #bbb; text-decoration: line-through; }
.plan-var .fa-check { color: #22c55e; }
.plan-yok .fa-xmark { color: #ef4444; }

.plan-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 20px; border-radius: 12px;
    font-size: 15px; font-weight: 800; text-decoration: none;
    transition: all 0.2s; margin-top: auto;
}
.plan-btn-std {
    background: #f3f4f6; color: #1a1a1a;
    border: 2px solid #e5e7eb;
}
.plan-btn-std:hover { background: #e5e7eb; color: #1a1a1a; }
.plan-btn-premium {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff; box-shadow: 0 8px 24px rgba(245,158,11,0.4);
}
.plan-btn-premium:hover { opacity: 0.9; color: #fff; }

/* ============================================================
   ÖDEME FORMU (shared: premium + odeme sayfası)
   ============================================================ */
.odeme-form-wrap {
    background: #fff; border-radius: 24px;
    border: 2px solid #e5e7eb;
    padding: 40px; max-width: 560px; margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.odeme-form-wrap h2 {
    font-size: 22px; font-weight: 900; margin-bottom: 6px;
    display: flex; align-items: center; gap: 10px;
}
.odeme-form-wrap > p { color: #888; font-size: 14px; margin-bottom: 28px; }

.odeme-form { display: flex; flex-direction: column; gap: 18px; }
.odeme-form-group { display: flex; flex-direction: column; gap: 6px; }
.odeme-form-group label { font-size: 13px; font-weight: 700; color: #444; }
.odeme-form-group input,
.yeni-kart-form input {
    border: 2px solid #e5e7eb; border-radius: 12px;
    padding: 13px 16px; font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none; width: 100%; box-sizing: border-box;
    font-family: inherit;
}
.odeme-form-group input:focus,
.yeni-kart-form input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.odeme-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kart-input-wrap {
    display: flex; align-items: center; gap: 10px;
    border: 2px solid #e5e7eb; border-radius: 12px;
    padding: 0 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.kart-input-wrap:focus-within {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.kart-input-wrap i { color: #888; }
.kart-input-wrap input {
    border: none; box-shadow: none; padding: 13px 0;
    flex: 1;
}
.kart-input-wrap input:focus { border: none; box-shadow: none; }

.odeme-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff; font-weight: 800; font-size: 16px;
    padding: 16px; border-radius: 12px; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 8px 24px rgba(99,102,241,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.odeme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99,102,241,0.45);
}
.odeme-guven-ikonlar {
    display: flex; align-items: center; justify-content: center; gap: 20px;
    font-size: 12px; color: #888; flex-wrap: wrap;
}
.odeme-guven-ikonlar span { display: flex; align-items: center; gap: 5px; }
.odeme-sonuc {
    padding: 14px 18px; border-radius: 10px;
    font-size: 14px; font-weight: 600;
    margin-top: 8px;
}
.odeme-sonuc--bilgi { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.odeme-sonuc--hata  { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.odeme-sonuc--basari{ background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

/* ============================================================
   ÖDEME DASHBOARD SAYFASI
   ============================================================ */
.odeme-dashboard { max-width: 1000px; margin: 0 auto; padding: 40px 24px 80px; }
.odeme-dashboard-header { margin-bottom: 36px; }
.odeme-dashboard-header h1 {
    font-size: 28px; font-weight: 900; margin-bottom: 6px;
    display: flex; align-items: center; gap: 12px;
}
.odeme-dashboard-header p { color: #666; font-size: 15px; }

.odeme-dashboard-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 768px) { .odeme-dashboard-grid { grid-template-columns: 1fr; } }

.odeme-panel {
    background: #fff; border: 2px solid #e5e7eb;
    border-radius: 20px; padding: 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.odeme-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px; flex-wrap: wrap; gap: 10px;
}
.odeme-panel-header h2 {
    font-size: 18px; font-weight: 800;
    display: flex; align-items: center; gap: 8px; margin: 0;
}
.kart-ekle-btn {
    background: #f3f4f6; border: 1.5px solid #e5e7eb;
    border-radius: 99px; padding: 7px 16px;
    font-size: 13px; font-weight: 700; cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background 0.2s;
}
.kart-ekle-btn:hover { background: #e5e7eb; }

.yeni-kart-form {
    background: #f8f9fb; border-radius: 14px; padding: 20px;
    margin-bottom: 20px; display: flex; flex-direction: column; gap: 12px;
}
.kart-kaydet-btn {
    background: #6366f1; color: #fff;
    border: none; border-radius: 10px;
    padding: 12px 20px; font-size: 14px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    transition: background 0.2s;
}
.kart-kaydet-btn:hover { background: #4f46e5; }

.kayitli-kartlar { display: flex; flex-direction: column; gap: 12px; }
.kart-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px; background: #f8f9fb; border-radius: 12px;
    border: 1.5px solid #e5e7eb;
}
.kart-item-ikon {
    width: 42px; height: 42px; border-radius: 10px;
    background: #fff; border: 1.5px solid #e5e7eb;
    display: flex; align-items: center; justify-content: center;
    color: #6366f1; font-size: 18px;
}
.kart-item-no   { font-size: 14px; font-weight: 700; }
.kart-item-isim { font-size: 12px; color: #888; }
.kart-sil-btn {
    margin-left: auto; background: none; border: none; cursor: pointer;
    color: #ef4444; font-size: 16px; padding: 4px;
    opacity: 0.6; transition: opacity 0.2s;
}
.kart-sil-btn:hover { opacity: 1; }

.bos-kart-mesaj, .bos-gecmis-mesaj {
    text-align: center; padding: 32px; color: #999;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-size: 13px;
}

.odeme-gecmis { display: flex; flex-direction: column; gap: 12px; }
.odeme-gecmis-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px; border-radius: 12px;
    border: 1.5px solid #e5e7eb; background: #f8f9fb;
}
.odeme-gecmis-ikon {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.ikon-yesil { background: #dcfce7; color: #16a34a; }
.ikon-kirmizi { background: #fee2e2; color: #dc2626; }
.odeme-gecmis-bilgi { flex: 1; }
.odeme-gecmis-tanim { font-size: 14px; font-weight: 700; }
.odeme-gecmis-tarih { font-size: 12px; color: #888; }
.odeme-gecmis-tutar { font-size: 15px; font-weight: 800; color: #1a1a1a; }

/* ============================================================
   HERO KUTUCUKLARI — Özel arka plan desteği
   ============================================================ */
.svc-card[data-bg] {
    background-image: var(--svc-bg);
    background-size: cover;
    background-position: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .hizmet-grid { grid-template-columns: 1fr 1fr; }
    .yorumlar-grid { grid-template-columns: 1fr; }
    .yazilim-kategoriler { grid-template-columns: 1fr 1fr; }
    .premium-cta-inner { flex-direction: column; text-align: center; }
    .odeme-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hizmet-grid { grid-template-columns: 1fr; }
    .yazilim-kategoriler { grid-template-columns: 1fr; }
    .yazilim-ozel-badge { display: none; }
}

/* ============================================================
   SHOP PHOTO BANNER (Ana Sayfa — Dükkan Fotoğrafı)
   ============================================================ */
.shop-photo-banner {
    width: 100%;
    max-width: 1100px;
    margin: 32px auto;
    height: 420px;
    overflow: hidden;
    display: block;
    line-height: 0;
    position: relative;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    background: #111;
}
.shop-photo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 18px;
}
@media (max-width: 1140px) {
    .shop-photo-banner { margin: 24px 20px; width: calc(100% - 40px); max-width: none; }
}
@media (max-width: 768px) {
    .shop-photo-banner { height: 220px; margin: 16px 12px; width: calc(100% - 24px); border-radius: 12px; }
}

/* ============================================================
   404 PAGE — Düzenleniyor
   ============================================================ */
.page-404 {
    text-align: center;
    padding: 100px 24px;
    max-width: 520px;
    margin: 0 auto;
}
.page-404 .err-icon {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 24px;
    opacity: 0.5;
}
.page-404 h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}
.page-404 p {
    color: #666;
    margin-bottom: 32px;
}
.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity .2s;
}
.back-home-btn:hover { opacity: 0.85; }

/* ============================================================
   ÜYELİK PLANLAR KARŞILAŞTIRMA TABLOSU
   ============================================================ */
.uyelik-karsilastirma {
    max-width: 960px;
    margin: 60px auto 40px;
    padding: 0 16px;
}
.uyelik-baslik {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.uyelik-tablo-wrap {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.uyelik-tablo {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}
.uyelik-tablo thead tr {
    background: #f8fafc;
}
.uyelik-marka-cell {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 16px;
}
.uyelik-marka-logo {
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
}
.uyelik-marka-isim { font-size: 14px; font-weight: 800; color: #0f172a; }
.uyelik-marka-alt  { font-size: 11px; color: #64748b; margin-top: 2px; }
.uyelik-marka-not  { font-size: 10px; color: #94a3b8; margin-top: 4px; }

.uyelik-plan-header {
    text-align: center;
    padding: 20px 12px;
}
.uyelik-plan-standart { border-left: 1px solid #e2e8f0; }
.uyelik-plan-premium  { background: linear-gradient(135deg, #c4520a 0%, #E8650A 100%); color: #fff; }
.uyelik-plan-isim { font-size: 13px; font-weight: 800; letter-spacing: 0.5px; margin: 8px 0 4px; }
.uyelik-plan-standart .uyelik-plan-isim { color: #c4520a; }
.uyelik-plan-premium  .uyelik-plan-isim { color: #fff; }
.uyelik-plan-alt { font-size: 11px; color: #64748b; }
.uyelik-plan-premium .uyelik-plan-alt { color: #93c5fd; }
.uyelik-plan-fiyat { font-size: 16px; font-weight: 800; color: #c4520a; margin-top: 8px; }
.uyelik-plan-fiyat-wrap { margin-top: 8px; }
.uyelik-aylik { font-size: 22px; font-weight: 900; color: #fff; }
.uyelik-aylik small { font-size: 13px; }
.uyelik-yillik { display: block; font-size: 11px; color: #bfdbfe; margin-top: 2px; }
.uyelik-premium-cta-btn {
    display: inline-block;
    margin-top: 10px;
    background: #f59e0b;
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 800;
    padding: 7px 14px;
    border-radius: 20px;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.uyelik-satir td { padding: 14px 16px; border-top: 1px solid #f1f5f9; }
.uyelik-ozellik { font-size: 13px; color: #374151; }
.uyelik-check { text-align: center; min-width: 90px; }
.uk-evet { color: #16a34a; font-size: 18px; }
.uk-hayir { color: #dc2626; font-size: 18px; }
.uk-star { font-size: 14px; }
.uyelik-satir:nth-child(even) { background: #f8fafc; }
.uyelik-ozellik-col { width: 52%; }
.uyelik-standart-col, .uyelik-premium-col { width: 24%; }
.uyelik-dipnot { font-size: 11px; color: #94a3b8; padding: 12px 16px; text-align: center; }
.uyelik-alt-cta { text-align: center; margin-top: 28px; }
.uyelik-premium-btn-buyuk {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #1a1a1a;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(245,158,11,0.35);
    transition: transform .2s, box-shadow .2s;
}
.uyelik-premium-btn-buyuk:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,158,11,0.45); }

/* ============================================================
   VESTEL ÜRÜN ARAMA SAYFASI
   ============================================================ */
.vestel-arama-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 16px 60px;
}
.vestel-arama-hero {
    text-align: center;
    margin-bottom: 40px;
}
.vestel-arama-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff3e0;
    color: #e65100;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.vestel-arama-hero h1 { font-size: 28px; font-weight: 800; color: #c4520a; margin-bottom: 12px; }
.vestel-arama-hero p { color: #555; font-size: 15px; line-height: 1.6; }

.vestel-arama-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    padding: 36px 32px;
    margin-bottom: 32px;
}
.vestel-seri-form label {
    display: block;
    font-weight: 700;
    color: #374151;
    margin-bottom: 14px;
    font-size: 15px;
}
.vestel-input-wrap {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f8fafc;
}
.vestel-input-icon {
    padding: 0 14px;
    color: #94a3b8;
    display: flex;
    align-items: center;
}
.vestel-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 14px 8px;
    font-size: 16px;
    color: #1e293b;
}
.vestel-ara-btn {
    width: 100%;
    background: #e65100;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .2s;
}
.vestel-ara-btn:hover { background: #bf360c; }
.vestel-sonuc { margin-top: 24px; }
.vestel-bulundu {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 10px;
    padding: 20px;
}
.vestel-bulundu-header {
    font-weight: 700;
    color: #16a34a;
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.vestel-bilgi-table { width: 100%; border-collapse: collapse; }
.vestel-bilgi-table td { padding: 8px 12px; border-bottom: 1px solid #dcfce7; font-size: 14px; }
.vestel-bilgi-table td:first-child { color: #64748b; width: 40%; }
.vestel-bulundu-not { margin-top: 14px; font-size: 13px; color: #64748b; }
.vestel-bulunamadi {
    background: #fef2f2;
    border: 1.5px solid #fca5a5;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    color: #dc2626;
}
.vestel-bulunamadi i { font-size: 36px; margin-bottom: 10px; display: block; }
.vestel-bulunamadi p { color: #374151; font-size: 14px; }
.vestel-hata {
    background: #fffbeb;
    border: 1.5px solid #fbbf24;
    border-radius: 8px;
    padding: 14px 18px;
    color: #92400e;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vestel-alt-destek {
    background: linear-gradient(135deg, #c4520a 0%, #E8650A 100%);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 40px;
}
.vestel-alt-destek-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.vestel-alt-icon { font-size: 28px; color: #93c5fd; flex-shrink: 0; }
.vestel-alt-text { flex: 1; }
.vestel-alt-text strong { display: block; color: #fff; font-size: 15px; margin-bottom: 4px; }
.vestel-alt-text span { color: #93c5fd; font-size: 13px; }
.vestel-wa-btn {
    background: #25D366;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background .2s;
}
.vestel-wa-btn:hover { background: #128C7E; }

.vestel-nasil { text-align: center; }
.vestel-nasil h2 { font-size: 20px; font-weight: 800; color: #c4520a; margin-bottom: 24px; }
.vestel-adimlar { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.vestel-adim {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    max-width: 220px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    text-align: center;
}
.vestel-adim-no {
    width: 40px;
    height: 40px;
    background: #e65100;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin: 0 auto 14px;
}
.vestel-adim-text { font-size: 13px; color: #374151; line-height: 1.5; }

@media (max-width: 600px) {
    .vestel-arama-box { padding: 20px 14px; }
    .vestel-alt-destek-inner { flex-direction: column; }
    .uyelik-tablo thead tr { display: none; }
    .uyelik-satir td { display: block; }
}

/* ============================================================
   KUMRU AI ASISTAN
   ============================================================ */
.kumru-asistan-btn {
    position: fixed;
    bottom: 24px;
    right: 22px;
    z-index: 9990;
    background: linear-gradient(135deg, #c4520a 0%, #E8650A 100%);
    color: #fff;
    border-radius: 50px;
    padding: 12px 18px 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(232,101,10,0.5);
    transition: transform .2s, box-shadow .2s;
    user-select: none;
}
.kumru-asistan-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(232,101,10,0.65); }
.kumru-asistan-icon { display: flex; align-items: center; }
.kumru-asistan-label { font-size: 13px; font-weight: 700; white-space: nowrap; }
.kumru-asistan-ping {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: kas-ping 2s infinite;
}
@keyframes kas-ping {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: .6; }
}

/* Modal */
.kumru-asistan-modal {
    position: fixed;
    bottom: 28px;
    right: 22px;
    z-index: 9991;
    width: 360px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 60px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.85) translateY(30px);
    transform-origin: bottom right;
    opacity: 0;
    pointer-events: none;
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), opacity .2s;
}
.kumru-asistan-modal.kas-aktif {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Header */
.kas-header {
    background: linear-gradient(135deg, #c4520a 0%, #E8650A 100%);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.kas-header-left { display: flex; align-items: center; gap: 10px; }
.kas-avatar {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}
.kas-title { font-size: 14px; font-weight: 700; color: #fff; }
.kas-subtitle { font-size: 11px; color: #93c5fd; }
.kas-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: color .15s;
}
.kas-close:hover { color: #fff; }

/* Messages */
.kas-mesajlar {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 300px;
    background: #f8fafc;
}
.kas-msg { display: flex; }
.kas-msg-user { justify-content: flex-end; }
.kas-msg-bot  { justify-content: flex-start; }
.kas-msg-bubble {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.5;
    color: #1e293b;
}
.kas-msg-user .kas-msg-bubble {
    background: linear-gradient(135deg, #c4520a, #E8650A);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.kas-msg-bot .kas-msg-bubble {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 4px;
}
.kas-wa-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 4px;
}
/* Typing dots */
.kas-typing { display: flex; gap: 4px; align-items: center; padding: 12px 16px; }
.kas-typing span {
    width: 7px;
    height: 7px;
    background: #94a3b8;
    border-radius: 50%;
    animation: kas-dot .9s infinite;
}
.kas-typing span:nth-child(2) { animation-delay: .2s; }
.kas-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes kas-dot {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

/* Quick questions */
.kas-hizli-sorular {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 12px 4px;
    background: #fff;
    border-top: 1px solid #f1f5f9;
}
.kas-hizli-btn {
    background: #f1f5f9;
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 11px;
    color: #374151;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}
.kas-hizli-btn:hover { background: #e2e8f0; }

/* Input */
.kas-input-row {
    display: flex;
    gap: 8px;
    padding: 10px 12px 12px;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    flex-shrink: 0;
}
.kas-input {
    flex: 1;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    padding: 9px 14px;
    font-size: 13px;
    outline: none;
    transition: border-color .15s;
    background: #f8fafc;
    color: #1e293b;
}
.kas-input:focus { border-color: #E8650A; background: #fff; }
.kas-gonder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c4520a, #E8650A);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    flex-shrink: 0;
    transition: opacity .15s;
}
.kas-gonder:hover { opacity: 0.85; }

@media (max-width: 480px) {
    .kumru-asistan-modal {
        width: calc(100vw - 16px) !important;
        right: 8px !important;
        left: 8px !important;
        bottom: calc(60px + env(safe-area-inset-bottom, 0px) + 8px) !important;
        border-radius: 18px !important;
        transform-origin: bottom center;
    }
    .kumru-asistan-btn { bottom: 16px; right: 16px; }
}

/* ============================================================
   AI ASISTAN — Görünürlük Düzeltmesi
   ============================================================ */
/* AI Asistan floating butonu kaldırıldı, alt bara taşındı */
.kumru-asistan-btn {
    display: none !important;
}

/* ============================================================
   YEDEK PARÇA NAV DROPDOWN
   ============================================================ */
.kumru-yp-nav {
    position: relative;
}
.kumru-yp-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.18);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .22s ease, transform .22s ease;
    z-index: 10000;
    list-style: none;
    margin: 0;
}
.kumru-yp-nav:hover .kumru-yp-dropdown,
.kumru-yp-nav:focus-within .kumru-yp-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.kumru-yp-dropdown li { list-style: none; }
.kumru-yp-dropdown li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 14px !important;
    color: #1a1a1a !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    border-radius: 10px;
    height: auto !important;
    white-space: nowrap;
    transition: background .15s, color .15s;
    text-decoration: none;
}
.kumru-yp-dropdown li a::after { display: none !important; }
.kumru-yp-dropdown li a:hover {
    background: #f4f4f8;
    color: #c8321e !important;
}
.yp-dd-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* ============================================================
   YEDEK PARÇA HERO
   ============================================================ */
.yp-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #8b1e12 100%);
    padding: 52px 24px;
    text-align: center;
    color: #fff;
}
.yp-hero-inner { max-width: 680px; margin: 0 auto; }
.yp-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    border-radius: 99px; padding: 6px 18px; font-size: 13px; font-weight: 700;
    margin-bottom: 18px;
}
.yp-hero h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 900; margin: 0 0 12px; }
.yp-hero p  { font-size: 15px; opacity: 0.85; line-height: 1.6; }

/* ============================================================
   KATEGORİ SEKME BARI
   ============================================================ */
.yp-kat-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 24px 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.yp-kat-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 99px;
    border: 2px solid #e5e7eb;
    background: #fff;
    color: #555;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
}
.yp-kat-btn:hover {
    border-color: #c8321e;
    color: #c8321e;
    background: #fff5f5;
}
.yp-kat-btn.active {
    background: var(--kat-renk, #c8321e);
    border-color: var(--kat-renk, #c8321e);
    color: #fff;
    box-shadow: 0 4px 16px rgba(200,50,30,0.25);
}
.yp-kat-btn.active i { opacity: 1; }

/* ============================================================
   ÜRÜN IZGARASI
   ============================================================ */
.yp-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 32px 60px;
}
.yp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 4px;
}

/* ============================================================
   ÜRÜN KARTI
   ============================================================ */
.yp-kart {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #f0f0f0;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}
.yp-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.13);
    border-color: #e5e7eb;
}

/* Kart resim alanı */
.yp-kart-img {
    position: relative;
    width: 100%;
    height: 180px;
    background: #f8f9fb;
    overflow: hidden;
    flex-shrink: 0;
}
.yp-kart-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.yp-kart:hover .yp-kart-img img { transform: scale(1.04); }
.yp-kart-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    opacity: 0.18;
}

/* Kategori rozeti */
.yp-kart-kat-badge {
    position: absolute;
    top: 10px; left: 10px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
    display: flex; align-items: center; gap: 5px;
    letter-spacing: 0.2px;
}

/* Stok rozeti */
.yp-stok-badge {
    position: absolute;
    top: 10px; right: 10px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
}
.stok-var { background: #dcfce7; color: #15803d; }
.stok-yok { background: #fee2e2; color: #b91c1c; }

/* Kart içerik */
.yp-kart-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.yp-kart-baslik {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.35;
}
.yp-kart-model {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.yp-kart-aciklama {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}
.yp-kart-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}
.yp-kart-fiyat {
    display: flex;
    flex-direction: column;
}
.fiyat-etiket {
    font-size: 10px;
    color: #aaa;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.fiyat-rakam {
    font-size: 20px;
    font-weight: 900;
    color: #c8321e;
}
.fiyat-soru {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

/* WA fiyat al butonu */
.yp-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 99px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    flex-shrink: 0;
}
.yp-wa-btn:hover {
    background: #1eb855;
    transform: scale(1.04);
    color: #fff;
}
.yp-wa-btn i { font-size: 15px; }

/* İncele butonu (WooCommerce ürünleri) */
.yp-detay-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f4ff;
    color: #E8650A;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: 99px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    flex-shrink: 0;
}
.yp-detay-btn:hover {
    background: #dbeafe;
    color: #1d4ed8;
    transform: scale(1.04);
}

/* Buton grubu */
.yp-kart-butonlar {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

/* Boş durum */
.yp-bos {
    text-align: center;
    padding: 80px 24px;
    color: #bbb;
}
.yp-bos i { font-size: 60px; display: block; margin-bottom: 16px; }
.yp-bos p { font-size: 16px; }

/* Alt WA banner */
.yp-wa-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #8b1e12 100%);
    padding: 28px 32px;
}
.yp-wa-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
    flex-wrap: wrap;
}
.yp-wa-banner-inner strong { display: block; font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.yp-wa-banner-inner span { font-size: 14px; opacity: 0.8; }
.yp-wa-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 99px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, transform .15s;
}
.yp-wa-banner-btn:hover { background: #1eb855; transform: scale(1.04); color: #fff; }

/* Responsive */
@media (max-width: 768px) {
    .yp-wrap { padding: 8px 16px 40px; }
    .yp-kat-bar { padding: 16px; gap: 8px; }
    .yp-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
    .yp-kart-img { height: 130px; }
    .yp-kart-body { padding: 12px 14px 14px; }
    .yp-kart-baslik { font-size: 13px; }
    .fiyat-rakam { font-size: 16px; }
    .yp-wa-btn { font-size: 12px; padding: 7px 12px; }
    .yp-wa-banner-inner { flex-direction: column; text-align: center; }
    .kumru-yp-dropdown { display: none; }
}


/* ============================================================
   KUMRU CUSTOM ÖZELLEŞTİRMELER - kumru-elektronik-custom
   ============================================================ */
/* ============================================================
   KUMRU ELEKTRONİK - ÖZEL TEMA CSS
   Turuncu Tema + Tüm Özelleştirmeler
   ============================================================ */

/* --- Google Fonts --- */

/* --- CSS Değişkenleri --- */
:root {
  --kumru-orange:       #FF6B00;
  --kumru-orange-light: #FF8C33;
  --kumru-orange-dark:  #D95A00;
  --kumru-orange-bg:    #FFF3E8;
  --kumru-dark:         #1A1A1A;
  --kumru-gray:         #F5F5F5;
  --kumru-text:         #333333;
  --kumru-white:        #FFFFFF;
  --kumru-green:        #25D366;
  --radius:             12px;
  --shadow:             0 4px 20px rgba(255,107,0,0.15);
  --shadow-lg:          0 8px 40px rgba(255,107,0,0.25);
  --transition:         all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   1. GENEL TEMA - TURUNCU
   ============================================================ */

body {
  font-family: 'Nunito', sans-serif !important;
  color: var(--kumru-text);
  background: #fafafa;
}

/* Primary renk override */
a, a:hover { color: var(--kumru-orange); }

.woocommerce-page .woocommerce-breadcrumb a,
.woocommerce-page .woocommerce-breadcrumb { color: var(--kumru-orange); }

/* Butonlar */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.btn-primary,
.elementor-button {
  background: var(--kumru-orange) !important;
  border-color: var(--kumru-orange) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  transition: var(--transition) !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--kumru-orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow) !important;
}

/* Navigasyon aktif renk */
.main-navigation a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
  color: var(--kumru-orange) !important;
}

/* Menü çubuğu arka planı */
.site-header,
.main-nav-bar,
.header-main-nav {
  background: var(--kumru-dark) !important;
}

.nav-bar-secondary,
.secondary-nav,
.woocommerce-nav,
header .sub-nav {
  background: var(--kumru-orange) !important;
}

/* ============================================================
   2. ÜST BAR - TELEFON NUMARASI ANİMASYONU
   ============================================================ */

/* Eski telefon sayısını gizle */
.phone-number-static,
.header-phone > a,
.top-bar-phone {
  display: none !important;
}

/* Animasyonlu telefon container */
.kumru-phone-animated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  position: relative;
  min-width: 180px;
}

.kumru-phone-animated .phone-icon {
  font-size: 18px;
  animation: phoneRing 2s infinite;
  color: var(--kumru-orange-light);
}

@keyframes phoneRing {
  0%,100% { transform: rotate(0deg); }
  10%      { transform: rotate(-15deg); }
  20%      { transform: rotate(15deg); }
  30%      { transform: rotate(-10deg); }
  40%      { transform: rotate(0deg); }
}

.kumru-phone-animated .phone-numbers-wrap {
  overflow: hidden;
  height: 22px;
  position: relative;
  min-width: 145px;
}

.kumru-phone-animated .phone-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.kumru-phone-animated .phone-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.kumru-phone-animated .phone-slide.exit {
  opacity: 0;
  transform: translateY(-20px);
}

/* Nav içinde konum */
.header-nav-right,
.nav-actions,
.menu-phone-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   3. HERO / ANA BANNER - ARKA PLAN TEMİZLEME
   ============================================================ */

/* ark2.png - siyah arka plan kaldır */
.banner-section,
.home-hero,
.elementor-section.hero,
section.hero {
  background: linear-gradient(135deg, var(--kumru-orange) 0%, var(--kumru-orange-dark) 60%, #8B2500 100%) !important;
  background-color: var(--kumru-orange) !important;
}

/* Hero'daki karanlık overlay kaldır */
.hero-overlay,
.banner-overlay,
.dark-overlay {
  background: transparent !important;
  opacity: 0 !important;
}

/* ============================================================
   4. VESTEL ÜRÜN ARAMA KUTUSU STİLİ
   ============================================================ */

.kumru-search-box {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 2px solid var(--kumru-orange);
  border-radius: 50px;
  overflow: hidden;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.kumru-search-box:focus-within {
  box-shadow: var(--shadow-lg);
  border-color: var(--kumru-orange-dark);
}

.kumru-search-box input {
  border: none !important;
  outline: none !important;
  padding: 12px 20px !important;
  font-size: 14px !important;
  flex: 1;
  background: transparent !important;
}

.kumru-search-box button {
  background: var(--kumru-orange) !important;
  border: none !important;
  padding: 12px 20px !important;
  color: #fff !important;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
}

.kumru-search-box button:hover {
  background: var(--kumru-orange-dark) !important;
}

/* Vestel Ürün Ara Butonu */
.vestel-search-btn {
  background: #1a1a2e !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.vestel-search-btn:hover {
  background: #2d2d4e !important;
  transform: translateY(-2px);
}

.fiyat-al-btn {
  background: var(--kumru-dark) !important;
  color: var(--kumru-orange) !important;
  border: 2px solid var(--kumru-orange) !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.whatsapp-fiyat-btn {
  background: var(--kumru-green) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.whatsapp-fiyat-btn:hover {
  background: #1EBE58 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37,211,102,0.4) !important;
}

/* ============================================================
   5. ANA SAYFA - KART KUTUCUKLARI
   ============================================================ */

.kumru-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 30px 0;
}

.kumru-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.kumru-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--kumru-orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.kumru-card:hover::before { transform: scaleX(1); }
.kumru-card:hover {
  border-color: var(--kumru-orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.kumru-card .card-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.kumru-card .card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--kumru-dark);
  margin-bottom: 8px;
}

.kumru-card .card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* İstatistik Kartları */
.kumru-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.kumru-stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.kumru-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.kumru-stat-card .stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--kumru-orange);
  display: block;
}

.kumru-stat-card .stat-label {
  font-size: 13px;
  color: #777;
  font-weight: 600;
}

/* ============================================================
   6. HİZMETLERİMİZ SAYFASI - KUTUCUKLAR
   ============================================================ */

.kumru-hizmetler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

.kumru-hizmet-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 2px solid transparent;
}

.kumru-hizmet-card:hover {
  border-color: var(--kumru-orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.kumru-hizmet-card .hizmet-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.kumru-hizmet-card:hover .hizmet-img {
  transform: scale(1.05);
}

.kumru-hizmet-card .hizmet-img-wrap {
  overflow: hidden;
  height: 200px;
  position: relative;
}

.kumru-hizmet-card .hizmet-body {
  padding: 20px;
}

.kumru-hizmet-card .hizmet-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--kumru-dark);
  margin-bottom: 10px;
}

.kumru-hizmet-card .hizmet-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}

.kumru-hizmet-card .hizmet-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.kumru-hizmet-card .hizmet-tag {
  background: var(--kumru-orange-bg);
  color: var(--kumru-orange-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

/* Hizmet Kartı Admin Düzenle Butonu */
.kumru-hizmet-card .hizmet-edit-btn {
  display: none;
  position: absolute;
  top: 10px; right: 10px;
  background: var(--kumru-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  z-index: 10;
}

.logged-in .kumru-hizmet-card:hover .hizmet-edit-btn {
  display: block;
}

/* ============================================================
   7. YAZILIMLAR SAYFASI - VIP YAZISI KALDIRMA
   ============================================================ */

.vip-badge,
.vip-yazilim-badge,
[class*="vip-label"],
.elementor-widget-text-editor .vip-text {
  display: none !important;
}

/* V.I.P yazısının olduğu üst rozet gizle */
.yazilim-vip-header-badge,
.software-badge-vip {
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Yazılımlar bölüm arka planı temizle */
.yazilimlar-section,
.software-section {
  background: var(--kumru-gray) !important;
  border-radius: 16px;
  padding: 40px;
}

/* Yazılımlar Kartları */
.kumru-yazilim-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.kumru-yazilim-card {
  background: #fff;
  border: 2px dashed #ddd;
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.kumru-yazilim-card:hover {
  border-color: var(--kumru-orange);
  border-style: solid;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.kumru-yazilim-card .yazilim-icon {
  font-size: 32px;
  color: var(--kumru-orange);
  margin-bottom: 12px;
  display: block;
}

.kumru-yazilim-card .yazilim-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--kumru-dark);
}

.kumru-yazilim-card .yazilim-status {
  font-size: 12px;
  color: var(--kumru-orange);
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================================================
   8. ÜRÜNLER LİSTESİ - ÖRNEK TV TARZI
   ============================================================ */

/* WooCommerce ürün grid override */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 20px !important;
}

.woocommerce ul.products li.product {
  background: #fff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07) !important;
  transition: var(--transition) !important;
  border: 2px solid transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product:hover {
  border-color: var(--kumru-orange) !important;
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-lg) !important;
}

.woocommerce ul.products li.product a img {
  border-radius: 0 !important;
  transition: var(--transition) !important;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.05) !important;
}

/* Ürün isim */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  padding: 12px 16px 4px !important;
  color: var(--kumru-dark) !important;
}

/* FİYAT GİZLE */
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product span.price,
.woocommerce .price,
.product-price,
.single-product .price,
.woocommerce-Price-amount {
  display: none !important;
}

/* Sepete Ekle Yerine WhatsApp */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button,
.woocommerce ul.products li.product .add_to_cart_button {
  background: var(--kumru-green) !important;
  color: #fff !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 10px 16px !important;
  margin: 8px 16px 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  transition: var(--transition) !important;
  width: calc(100% - 32px) !important;
}

.woocommerce ul.products li.product .button::before,
.woocommerce ul.products li.product .add_to_cart_button::before {
  content: '📱 WhatsApp\'tan Fiyat Al';
}

.woocommerce ul.products li.product .button span,
.woocommerce ul.products li.product .add_to_cart_button span {
  display: none !important;
}

.woocommerce ul.products li.product .button:hover {
  background: #1EBE58 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4) !important;
}

/* Kategori filtre sidebar */
.kumru-category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 2px solid #eee;
  margin-bottom: 24px;
}

.kumru-cat-filter-btn {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  color: var(--kumru-text);
}

.kumru-cat-filter-btn.active,
.kumru-cat-filter-btn:hover {
  background: var(--kumru-orange);
  border-color: var(--kumru-orange);
  color: #fff;
}

/* ============================================================
   9. TEK ÜRÜN SAYFASI - GÜZELLEŞTİRİLMİŞ
   ============================================================ */

.woocommerce div.product {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

/* Ürün başlık */
.woocommerce div.product .product_title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  color: var(--kumru-dark) !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
}

/* SKU ve kategoriler */
.woocommerce div.product .product_meta {
  background: var(--kumru-gray);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 13px;
}

.woocommerce div.product .product_meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 16px;
}

/* ÜRÜN FİYAT GİZLE - Tek ürün */
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce-Price-amount.amount {
  display: none !important;
}

/* WhatsApp Fiyat Al Butonu - Tek Ürün */
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product .single_add_to_cart_button {
  display: none !important;
}

.kumru-product-whatsapp-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background: var(--kumru-green) !important;
  color: #fff !important;
  padding: 16px 32px !important;
  border-radius: 50px !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3) !important;
  margin: 20px 0 !important;
  width: 100% !important;
  border: none !important;
  cursor: pointer !important;
}

.kumru-product-whatsapp-btn:hover {
  background: #1EBE58 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4) !important;
  color: #fff !important;
}

/* Ödeme Seçenekleri Kutusu */
.kumru-payment-options {
  background: var(--kumru-gray);
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  border: 2px solid #eee;
}

.kumru-payment-options h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--kumru-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ddd;
}

.kumru-payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.kumru-payment-option:hover,
.kumru-payment-option.selected {
  border-color: var(--kumru-orange);
  background: var(--kumru-orange-bg);
}

.kumru-payment-option .option-icon { font-size: 20px; }
.kumru-payment-option .option-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--kumru-dark);
}
.kumru-payment-option .option-desc {
  font-size: 12px;
  color: #777;
}

/* Satıcı Bilgisi */
.kumru-seller-badge {
  background: var(--kumru-orange-bg);
  border: 2px solid var(--kumru-orange);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}

.kumru-seller-badge .seller-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--kumru-orange);
  background: var(--kumru-dark);
  width: 44px; height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kumru-seller-badge .seller-info .seller-name {
  font-weight: 800;
  font-size: 14px;
  color: var(--kumru-dark);
}

.kumru-seller-badge .seller-info .seller-label {
  font-size: 12px;
  color: #888;
}

/* Ürün açıklama tab */
.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs ul.tabs li.active a {
  color: var(--kumru-orange) !important;
  border-top: 3px solid var(--kumru-orange) !important;
}

/* ============================================================
   10. TV PANELİ/YEDEK PARÇA KATEGORİ SAYFASI
   ============================================================ */

/* Ürün Kategorisi Başlık */
.woocommerce-products-header__title.page-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  color: var(--kumru-dark) !important;
  position: relative;
  padding-left: 20px;
}

.woocommerce-products-header__title.page-title::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 80%;
  background: var(--kumru-orange);
  border-radius: 3px;
}

/* Trendyol tarzı filtre bar */
.kumru-filter-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.kumru-filter-chip {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.kumru-filter-chip.featured {
  border-color: var(--kumru-orange);
  color: var(--kumru-orange);
  background: var(--kumru-orange-bg);
}

.kumru-filter-chip:hover {
  border-color: var(--kumru-orange);
  background: var(--kumru-orange);
  color: #fff;
}

/* ============================================================
   11. FLOATING WHATSAPP BUTONU
   ============================================================ */

.kumru-float-whatsapp {
  position: fixed;
  bottom: 28px;
  left: 28px;
  right: auto;
  z-index: 9999;
  background: var(--kumru-green);
  color: #fff;
  border-radius: 50px;
  padding: 14px 22px;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: floatPulse 3s infinite;
}

@keyframes floatPulse {
  0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 35px rgba(37,211,102,0.7); }
}

.kumru-float-whatsapp:hover {
  background: #1EBE58;
  transform: translateY(-4px) scale(1.04);
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   12. YAPAY ZEKA ASİSTAN (TV PANELİ + ÜRÜNLER)
   ============================================================ */

.kumru-ai-chat-widget {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 9998;
  width: 380px;
  max-height: 520px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid var(--kumru-orange);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.kumru-ai-chat-widget.open {
  display: flex;
}

.kumru-ai-chat-header {
  background: linear-gradient(135deg, var(--kumru-orange), var(--kumru-orange-dark));
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}

.kumru-ai-chat-header .ai-avatar {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.kumru-ai-chat-header .close-btn {
  margin-left: auto;
  background: none; border: none;
  color: #fff; font-size: 20px; cursor: pointer;
}

.kumru-ai-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 320px;
}

.kumru-ai-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
}

.kumru-ai-msg.bot {
  background: var(--kumru-gray);
  color: var(--kumru-dark);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.kumru-ai-msg.user {
  background: var(--kumru-orange);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.kumru-ai-chat-input {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.kumru-ai-chat-input input {
  flex: 1;
  border: 2px solid #eee;
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}

.kumru-ai-chat-input input:focus { border-color: var(--kumru-orange); }

.kumru-ai-chat-input button {
  background: var(--kumru-orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.kumru-ai-chat-input button:hover { background: var(--kumru-orange-dark); }

/* AI Aç Butonu */
.kumru-ai-toggle-btn {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 9997;
  background: linear-gradient(135deg, var(--kumru-orange), var(--kumru-orange-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.kumru-ai-toggle-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.5);
}

/* ============================================================
   13. RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .kumru-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .kumru-cards-grid { grid-template-columns: 1fr 1fr; }
  .kumru-yazilim-grid { grid-template-columns: 1fr; }
  .kumru-ai-chat-widget { width: calc(100vw - 40px); right: 20px; }
  .woocommerce div.product { padding: 20px; }
}

@media (max-width: 480px) {
  .kumru-cards-grid { grid-template-columns: 1fr; }
  .kumru-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   14. WooCommerce SEPET / CHECKOUT GİZLE
   ============================================================ */

/* Sepet sayfasını gizle, yönlendir */
.woocommerce-cart .cart-collaterals,
.woocommerce-cart .wc-proceed-to-checkout {
  display: none !important;
}

/* Ürün adeti girişi (quantity) gizle tek ürün sayfasında */
.woocommerce div.product form.cart .quantity {
  display: none !important;
}

/* ============================================================
   15. FOOTER
   ============================================================ */

.site-footer,
footer.site-footer {
  background: var(--kumru-dark) !important;
  color: #ccc !important;
}

.site-footer a { color: var(--kumru-orange) !important; }
.site-footer a:hover { color: var(--kumru-orange-light) !important; }

.site-footer .footer-widget-title,
.site-footer h3, .site-footer h4 {
  color: #fff !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
}

/* ============================================================
   16. ADMİN ÇUBUĞU GÖZÜKÜYORKEN DÜZELT
   ============================================================ */

body.admin-bar .kumru-float-whatsapp { bottom: 60px; left: 28px; }
body.admin-bar .kumru-ai-toggle-btn  { bottom: 140px; }
body.admin-bar .kumru-ai-chat-widget { bottom: 140px; }

/* ============================================================
   MOBİL DESTEK — Tam Kapsamlı Responsive (v12)
   ============================================================ */

/* ---- GENEL MOBİL RESET ---- */
@media (max-width: 768px) {
    body { overflow-x: hidden; }

    /* ---- SOCIAL TOP STRIP ---- */
    .social-topstrip { display: none; }

    /* ---- TOPBAR ---- */
    .site-topbar {
        padding: 0 12px;
        height: 58px;
        gap: 8px;
    }
    .site-branding { gap: 8px; }
    .site-branding .brand-icon { width: 36px; height: 36px; font-size: 16px; border-radius: 8px; }
    .site-branding .brand-name { font-size: 14px; }
    .site-branding .brand-tagline { display: none; }
    .site-logo-img { max-height: 38px; width: auto; }

    /* Arama kutusu — mobilde tam genişliğe */
    .topbar-search-phone-wrap {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .topbar-search {
        flex: 1;
        max-width: 100% !important;
        margin: 0 !important;
        min-width: 0;
    }
    .topbar-search input {
        font-size: 12px;
        padding: 9px 36px 9px 12px;
        border-radius: 10px;
    }
    .topbar-phone-inline { display: none; }
    .currency-badge { display: none; }
    .topbar-right { gap: 6px; }
    .header-cart-btn { padding: 8px 10px; font-size: 14px; }
    .header-cart-btn .cart-total-label { display: none; }
    .user-name { display: none; }
    .user-trigger { padding: 6px 8px; font-size: 13px; }

    /* ---- NAV BAR ---- */
    .site-nav { overflow: hidden; }
    .nav-inner {
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .nav-inner::-webkit-scrollbar { display: none; }
    .primary-menu {
        flex-wrap: nowrap !important;
        gap: 0;
        width: max-content;
        min-width: 100%;
    }
    .primary-menu li { scroll-snap-align: start; }
    .primary-menu .nav-menu-pill {
        padding: 0 11px !important;
        font-size: 11.5px !important;
        white-space: nowrap;
        height: 44px;
    }
    .primary-menu .nav-menu-pill i { display: none; }
    .nav-action-group { display: none !important; }
    .nav-caret { display: none; }

    /* Dropdown menü mobil */
    .kumru-yp-dropdown {
        position: static !important;
        display: none;
        box-shadow: none;
        border: none;
        background: rgba(0,0,0,0.05);
        border-radius: 0;
    }
    .kumru-yp-nav:focus-within .kumru-yp-dropdown,
    .kumru-yp-nav.open .kumru-yp-dropdown { display: block; }

    /* ---- HERO BANNER ---- */
    .hero-banner {
        padding: 32px 16px 0;
        min-height: auto;
    }
    .hero-badge { font-size: 11px; padding: 5px 14px; margin-bottom: 12px; }
    .hero-title { font-size: 28px; margin-bottom: 10px; }
    .hero-sub { font-size: 14px; margin-bottom: 20px; }
    .hero-cta-main {
        padding: 14px 24px;
        font-size: 14px;
        margin-bottom: 20px;
    }
    .hero-bg-tv-icon { font-size: 120px; opacity: 0.04; }

    /* Hero features — 2x2 grid mobilde */
    .hero-features {
        flex-wrap: wrap;
        gap: 0;
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
        border-radius: 0;
    }
    .hero-feature {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 14px 12px;
        gap: 8px;
    }
    .hero-feature-sub { display: none; }
    .hero-feature-title { font-size: 12px; }
    .hero-feature-icon { width: 32px; height: 32px; font-size: 14px; flex-shrink: 0; }
    .hero-feature-divider { display: none; }

    /* ---- TV PANEL BANNER ---- */
    .tv-panel-degisimi-banner { padding: 36px 16px 32px; }
    .tpdb-baslik { font-size: 26px; }
    .tpdb-alt { font-size: 13px; }
    .tpdb-ozellikler { gap: 6px; }
    .tpdb-ozellik { font-size: 11px; padding: 5px 10px; }
    .tpdb-btn { padding: 12px 22px; font-size: 14px; }

    /* ---- SERVICE CARDS ---- */
    .service-cards {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        padding: 0 16px !important;
        margin: 20px auto 28px !important;
    }
    .svc-card { min-height: 110px; padding: 20px; }
    .svc-card-title { font-size: 18px; }
    .svc-card-icon { font-size: 36px; right: 16px; }

    /* ---- STATS BAR ---- */
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 16px;
        margin-bottom: 24px;
    }
    .stat-item { padding: 16px 10px; }
    .stat-icon { font-size: 22px; margin-bottom: 6px; }
    .stat-num { font-size: 18px; }
    .stat-label { font-size: 11px; }

    /* ---- CONTENT SECTIONS ---- */
    .content-section { padding: 0 16px; margin-bottom: 24px; }
    .section-heading { font-size: 17px; margin-bottom: 16px; }

    /* ---- SERVICES GRID ---- */
    .services-grid { grid-template-columns: 1fr; gap: 12px; }
    .service-item { padding: 18px 16px; }
    .service-item-icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 10px; }
    .service-item h3 { font-size: 14px; }
    .service-item p  { font-size: 12px; }

    /* ---- BRANDS GRID ---- */
    .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .brand-card { padding: 14px 8px; font-size: 12px; }
    .brand-card img { height: 28px; }

    /* ---- NEWS SLIDER ---- */
    .news-slider-wrap { padding: 0 16px; }
    .news-card { min-width: 230px; }

    /* ---- MAP ---- */
    .map-section { padding: 0 16px; margin-bottom: 32px; }
    .map-inner iframe { height: 220px; }
    .map-overlay {
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px;
    }
    .map-info h3 { font-size: 14px; }
    .map-info p  { font-size: 11px; }
    .map-wa-btn { font-size: 13px; padding: 10px 18px; width: 100%; justify-content: center; }

    /* ---- FOOTER ---- */
    .footer-inner {
        grid-template-columns: 1fr !important;
        gap: 24px;
        padding: 32px 16px;
    }
    .footer-brand .brand-name { font-size: 16px; }
    .footer-col h4 { font-size: 13px; margin-bottom: 10px; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a { font-size: 13px; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 14px 16px; font-size: 12px; }

    /* ---- BRAND TICKER ---- */
    .brand-ticker-wrap { padding: 10px 0; }
    .brand-ticker { gap: 36px; }
    .brand-ticker-item { font-size: 14px; }
    .brand-ticker-item img { height: 20px; }

    /* ---- AI ASISTAN ---- */
    .kumru-asistan-btn { bottom: 80px; right: 14px; padding: 10px 14px; }
    .kumru-asistan-label { display: none; }
    .kumru-asistan-modal {
        width: calc(100vw - 24px);
        right: 12px;
        bottom: 134px;
        max-height: 65vh;
    }

    /* ---- FLOATING WHATSAPP ---- */
    .kumru-float-whatsapp {
        bottom: 18px;
        left: 14px;
        padding: 10px 16px;
        font-size: 13px;
    }

    /* ---- FİYAT SAYFASI ---- */
    .fiyat-page-wrap { padding: 0 14px 48px; margin: 28px auto; }
    .fiyat-page-title { font-size: 24px; }
    .fiyat-form-card { padding: 22px 16px; border-radius: 16px; }
    .ariza-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .ariza-option label { padding: 10px 10px; font-size: 12px; gap: 7px; }
    .fiyat-info-row { flex-wrap: wrap; gap: 8px; }
    .fiyat-info-box { font-size: 11px; padding: 10px 8px; flex: 1 0 calc(33% - 8px); }

    /* ---- SEPETİM SAYFASI ---- */
    .sepet-page-wrap { padding: 0 14px 60px; margin: 24px auto; }
    .sepet-page-title { font-size: 22px; }
    .sepet-table-wrap { border-radius: 14px; }
    .sepet-table thead { display: none; }
    .sepet-table tbody tr {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 8px 12px;
        padding: 16px;
        border-bottom: 1px solid #f0f0f0;
    }
    .sepet-table td { display: block; padding: 0; border: none; }
    .sepet-table td:first-child { grid-row: 1 / 3; }
    .sepet-urun-img, .sepet-urun-img-placeholder { width: 56px; height: 56px; }
    .sepet-ozet { padding: 20px 16px; }
    .sepet-wa-siparis-btn { font-size: 14px; padding: 16px 18px; }

    /* ---- YEDEK PARÇA ---- */
    .kumru-yp-grid,
    .yp-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .kumru-filter-bar { gap: 6px; padding: 0 16px; }
    .kumru-filter-chip { font-size: 11px; padding: 7px 12px; }

    /* ---- HİZMETLER SAYFASI ---- */
    .hizmet-hero { padding: 40px 16px; }
    .hizmet-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
    .hizmet-kart { padding: 20px 16px !important; }
    .hizmet-kategoriler { padding: 32px 16px; }

    /* ---- TV PANEL SAYFA ---- */
    .panel-hero,
    .led-hero { padding: 40px 16px; }
    .panel-hero h1,
    .led-hero h1 { font-size: 26px; }
    .tv-panel-filters { gap: 8px; padding: 0 16px; overflow-x: auto; flex-wrap: nowrap; }

    /* ---- ARAMA SAYFASI ---- */
    .search-wrap { padding: 0 16px; }

    /* ---- WooCommerce ÜRÜN LİSTESİ ---- */
    ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; padding: 0 16px !important; }
    ul.products li.product a.woocommerce-loop-product__link img { height: 140px; object-fit: contain; }
    .woocommerce-loop-product__title { font-size: 13px !important; }
    .woocommerce div.product { padding: 16px; }
    .woocommerce div.product .product_title { font-size: 20px; }
}

/* ---- KÜÇÜK MOBİL (max 480px) ---- */
@media (max-width: 480px) {
    .hero-title { font-size: 24px; }
    .hero-feature { flex: 0 0 50%; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .ariza-grid { grid-template-columns: 1fr; }
    ul.products { grid-template-columns: 1fr !important; }
    .svc-card-title { font-size: 16px; }
    .site-branding .brand-name { font-size: 13px; }
    .topbar-search input { font-size: 11px; }
    .fiyat-info-row { flex-direction: column; }
    .fiyat-info-box { flex: 1; }
    .kumru-yp-grid,
    .yp-grid { grid-template-columns: 1fr !important; }
    .sepet-table tbody tr { grid-template-columns: auto 1fr; }
    .footer-social { flex-wrap: wrap; gap: 8px; }
}

/* ---- TABLET (768px - 1024px) ---- */
@media (min-width: 769px) and (max-width: 1024px) {
    .site-topbar { padding: 0 16px; }
    .topbar-search { max-width: 260px; }
    .service-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stats-bar { grid-template-columns: repeat(4, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr !important; gap: 24px; }
    .nav-action-group { display: none !important; }
    .primary-menu .nav-menu-pill { padding: 0 12px; font-size: 12.5px; }
    ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ---- HERO feature divider yalnızca büyük ekranda ---- */
@media (min-width: 769px) {
    .hero-feature-divider { display: block; }
}

/* ---- SCROLL ÇUBUĞU GİZLE (iOS/Android) ---- */
* {
    -webkit-tap-highlight-color: transparent;
}
input, select, button, a {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* ---- MOBİL NAV TOUCH İYİLEŞTİRME ---- */
@media (max-width: 768px) {
    .site-nav {
        position: sticky;
        top: 58px;
        z-index: 999;
    }
    .nav-inner {
        padding: 0 8px;
    }
    .primary-menu .nav-menu-pill {
        height: 42px;
        line-height: 42px;
        display: inline-flex;
        align-items: center;
    }

    /* Aktif sayfa linki vurgusu */
    .current-menu-item .nav-menu-pill,
    .current_page_item .nav-menu-pill {
        background: rgba(255,255,255,0.18) !important;
        color: #fff !important;
    }

    /* ---- GENEL KART BOYUTU ---- */
    .brand-card, .service-item, .stat-item, .news-card {
        -webkit-tap-highlight-color: transparent;
    }

    /* ---- HARİTA BÖLÜMÜ ---- */
    .map-section { margin-bottom: 20px; }
    .map-inner { border-radius: 16px; overflow: hidden; }
    .map-inner iframe { border-radius: 16px 16px 0 0; }

    /* ---- SECTION HEADING MOBİL ---- */
    .section-heading {
        font-size: 16px;
        padding-left: 0;
    }

    /* ---- KVKK BANNER MOBİL ---- */
    #kvkkBanner {
        bottom: 12px !important;
        left: 12px !important;
        right: 12px !important;
        max-width: none !important;
        width: auto !important;
    }
}

/* ============================================================
   EK MOBİL DÜZELTMELERİ — v12 patch
   ============================================================ */

/* Arama dropdown "Arama Sonuçları" başlık stili */
#kumruSearchDropdown {
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18) !important;
}

/* Mobilde hero-features tam genişlik, overflow taşmaması */
@media (max-width: 768px) {
    .hero-banner {
        margin: 0;
        border-radius: 0;
        padding: 28px 16px 0;
        overflow-x: hidden;
    }
    .hero-features {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 0 !important;
    }
    .hero-feature {
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    /* TV Panel banner mobil düzeltme */
    .tv-panel-degisimi-banner {
        padding: 32px 16px 28px;
    }
    .tpdb-baslik {
        font-size: clamp(22px, 6vw, 32px);
        word-break: keep-all;
    }
    .tpdb-ozellikler {
        gap: 6px;
    }
    .tpdb-ozellik {
        font-size: 11px;
        padding: 5px 10px;
    }
    /* Service cards — mobilde tam genişlik */
    .service-cards {
        grid-template-columns: 1fr !important;
        padding: 0 16px;
    }
    /* index.php ortasındaki section padding */
    .brands-section,
    .news-section,
    .stats-section {
        padding-left: 16px;
        padding-right: 16px;
        overflow-x: hidden;
    }
    /* AI Asistan widget mobil pozisyon */
    .kumru-ai-chat-widget {
        width: calc(100vw - 32px) !important;
        max-width: 360px !important;
        right: 16px !important;
        bottom: 70px !important;
    }
    .kumru-ai-toggle-btn {
        right: 16px !important;
        bottom: 16px !important;
    }
}

@media (max-width: 480px) {
    .hero-feature {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 12px 10px !important;
    }
    .hero-feature-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
    }
    .hero-feature-title {
        font-size: 11px !important;
    }
    /* Stats bar 2 sütun */
    .stats-bar {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 0 16px;
    }
}

/* ============================================================
   ARAMA KUTUSU — YENİDEN TASARIM
   ============================================================ */
.topbar-search {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.10);
    border: 1.5px solid rgba(255,255,255,0.20);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, background .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.topbar-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,101,10,0.30), 0 4px 16px rgba(0,0,0,0.22);
    background: rgba(255,255,255,0.15);
}
.topbar-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 11px 16px;
    color: #fff;
    font-size: 13.5px;
    font-family: inherit;
    letter-spacing: .1px;
}
.topbar-search input::placeholder {
    color: rgba(255,255,255,0.50);
    font-weight: 400;
}
.topbar-search .search-btn {
    background: var(--primary);
    border: none;
    cursor: pointer;
    padding: 0 20px;
    height: 44px;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s, transform .15s;
    flex-shrink: 0;
    border-radius: 0 12px 12px 0;
}
.topbar-search .search-btn:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}
.topbar-search .search-btn:active {
    transform: scale(.97);
}

/* Mobil arama kutusu */
@media (max-width: 768px) {
    .topbar-search {
        border-radius: 12px;
        max-width: 100% !important;
        margin: 0 !important;
    }
    .topbar-search input {
        font-size: 12.5px;
        padding: 10px 12px;
    }
    .topbar-search .search-btn {
        padding: 0 14px;
        height: 40px;
        font-size: 14px;
        border-radius: 0 10px 10px 0;
    }
}

/* ============================================================
   YAZILIM TV CTA BUTONU — GÜÇLENDİRİLMİŞ TASARIM
   ============================================================ */
.yazilim-tv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #c05b05 100%);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none !important;
    transition: transform .18s, box-shadow .18s, background .2s;
    white-space: nowrap;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(232,101,10,0.45);
    border: 1.5px solid rgba(255,255,255,0.18);
}
.yazilim-tv-cta-btn-text {
    padding: 13px 22px;
    display: block;
    letter-spacing: .1px;
}
.yazilim-tv-cta-btn-arrow {
    background: rgba(0,0,0,0.20);
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    border-left: 1px solid rgba(255,255,255,0.20);
    font-size: 15px;
}
.yazilim-tv-cta-btn:hover {
    background: linear-gradient(135deg, #c05b05 0%, #a34a04 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232,101,10,0.55);
    color: #fff !important;
}
.yazilim-tv-cta-btn:hover .yazilim-tv-cta-btn-arrow {
    background: rgba(0,0,0,0.32);
}
@media (max-width: 768px) {
    .yazilim-tv-cta-card {
        flex-direction: column;
        padding: 22px 20px;
        text-align: left;
    }
    .yazilim-tv-cta-btn {
        width: 100%;
        justify-content: space-between;
        border-radius: 10px;
    }
    .yazilim-tv-cta-btn-text { flex: 1; }
}

/* ============================================================
   HAKKIMIZDA ÖNİZLEME BÖLÜMÜ
   ============================================================ */
.hakkimizda-onizleme-section {
    padding: 60px 0 !important;
    background: #f8f9fb !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.hakkimizda-onizleme-inner {
    max-width: 1100px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 56px !important;
    box-sizing: border-box !important;
}

/* Sol görsel */
.hakkimizda-onizleme-gorsel {
    flex: 0 0 420px !important;
    width: 420px !important;
    min-width: 0 !important;
    position: relative !important;
    border-radius: 20px !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}
.hakkimizda-onizleme-gorsel img {
    width: 100% !important;
    height: 320px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.16) !important;
    display: block !important;
}
.hakkimizda-onizleme-gorsel-placeholder {
    width: 100% !important;
    height: 280px !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.hakkimizda-yil-rozet {
    position: absolute !important;
    bottom: -18px !important;
    right: -18px !important;
    background: var(--primary, #e8650a) !important;
    color: #fff !important;
    border-radius: 16px !important;
    padding: 14px 20px !important;
    box-shadow: 0 8px 24px rgba(232,101,10,0.40) !important;
    text-align: center !important;
    border: 3px solid #fff !important;
    min-width: 90px !important;
    z-index: 2 !important;
}
.hakkimizda-yil-sayi {
    display: block !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    color: #fff !important;
}
.hakkimizda-yil-yazi {
    display: block !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    opacity: .90 !important;
    margin-top: 3px !important;
    line-height: 1.3 !important;
    color: #fff !important;
}

/* Sağ içerik */
.hakkimizda-onizleme-icerik {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    width: 0 !important;
    padding-bottom: 10px !important;
    box-sizing: border-box !important;
}
.hakkimizda-onizleme-etiket {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: rgba(232,101,10,0.10) !important;
    color: var(--primary, #e8650a) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 6px 14px !important;
    border-radius: 30px !important;
    margin-bottom: 16px !important;
    border: 1px solid rgba(232,101,10,0.20) !important;
}
.hakkimizda-onizleme-baslik {
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #1a1a2e !important;
    line-height: 1.2 !important;
    margin: 0 0 16px !important;
}
.hakkimizda-onizleme-baslik span {
    color: var(--primary, #e8650a) !important;
}
.hakkimizda-onizleme-metin {
    font-size: 15px !important;
    color: #555 !important;
    line-height: 1.7 !important;
    margin: 0 0 24px !important;
}
.hakkimizda-onizleme-liste {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 28px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 20px !important;
}
.hakkimizda-onizleme-liste li {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    list-style: none !important;
}
.hakkimizda-onizleme-liste li i {
    color: var(--primary, #e8650a) !important;
    font-size: 15px !important;
    flex-shrink: 0 !important;
}
.hakkimizda-onizleme-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, var(--primary, #E8650A), var(--primary-light, #f07830)) !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: 0 3px 14px rgba(232,101,10,0.45) !important;
    transition: transform .2s, box-shadow .2s !important;
    font-family: inherit !important;
    cursor: pointer !important;
    border: none !important;
}
.hakkimizda-onizleme-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 22px rgba(232,101,10,0.58) !important;
    color: #fff !important;
    text-decoration: none !important;
}
.hakkimizda-onizleme-btn i {
    font-size: 13px !important;
}

/* Tablet */
@media (max-width: 960px) {
    .hakkimizda-onizleme-inner {
        flex-direction: column !important;
        gap: 40px !important;
    }
    .hakkimizda-onizleme-gorsel {
        flex: none !important;
        width: 100% !important;
        max-width: 560px !important;
        margin: 0 auto !important;
    }
    .hakkimizda-onizleme-gorsel img {
        height: 260px !important;
    }
    .hakkimizda-yil-rozet {
        bottom: -14px !important;
        right: 16px !important;
    }
    .hakkimizda-onizleme-icerik {
        width: 100% !important;
    }
    .hakkimizda-onizleme-baslik {
        font-size: 26px !important;
    }
    .hakkimizda-onizleme-liste {
        grid-template-columns: 1fr 1fr !important;
    }
}
@media (max-width: 480px) {
    .hakkimizda-onizleme-section {
        padding: 40px 0 50px !important;
    }
    .hakkimizda-onizleme-inner {
        padding: 0 16px !important;
    }
    .hakkimizda-onizleme-baslik {
        font-size: 22px !important;
    }
    .hakkimizda-onizleme-liste {
        grid-template-columns: 1fr !important;
    }
    .hakkimizda-onizleme-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ============================================================
   HAKKIMIZDA — TAM YENİDEN YAZIM (OVERRIDE)
   ============================================================ */
.hakkimizda-onizleme-section {
    padding: 70px 0 80px !important;
    background: linear-gradient(160deg, #fff7f2 0%, #fff 40%, #f8f9fb 100%) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
}
.hakkimizda-onizleme-section::before {
    content: '' !important;
    position: absolute !important;
    top: -80px !important; right: -80px !important;
    width: 360px !important; height: 360px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(232,101,10,0.07) 0%, transparent 70%) !important;
    pointer-events: none !important;
}
.hakkimizda-onizleme-inner {
    max-width: 1100px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 64px !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 1 !important;
}
.hakkimizda-onizleme-gorsel {
    flex: 0 0 440px !important;
    width: 440px !important;
    position: relative !important;
    border-radius: 24px !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}
.hakkimizda-onizleme-gorsel img {
    width: 100% !important;
    height: 340px !important;
    object-fit: cover !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.14), 0 4px 16px rgba(0,0,0,0.08) !important;
    display: block !important;
}
.hakkimizda-onizleme-gorsel-placeholder {
    width: 100% !important;
    height: 300px !important;
    border-radius: 24px !important;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18) !important;
}
.hakkimizda-yil-rozet {
    position: absolute !important;
    bottom: -20px !important;
    right: -20px !important;
    background: linear-gradient(135deg, #E8650A, #f07830) !important;
    color: #fff !important;
    border-radius: 20px !important;
    padding: 16px 22px !important;
    box-shadow: 0 10px 30px rgba(232,101,10,0.45) !important;
    text-align: center !important;
    border: 3px solid #fff !important;
    min-width: 96px !important;
    z-index: 2 !important;
}
.hakkimizda-yil-sayi {
    display: block !important;
    font-size: 30px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    color: #fff !important;
}
.hakkimizda-yil-yazi {
    display: block !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    margin-top: 4px !important;
    line-height: 1.3 !important;
    color: rgba(255,255,255,0.92) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}
.hakkimizda-onizleme-icerik {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    width: 0 !important;
    box-sizing: border-box !important;
}
.hakkimizda-onizleme-etiket {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    background: rgba(232,101,10,0.10) !important;
    color: #E8650A !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    margin-bottom: 18px !important;
    border: 1.5px solid rgba(232,101,10,0.22) !important;
}
.hakkimizda-onizleme-baslik {
    font-size: 34px !important;
    font-weight: 900 !important;
    color: #1a1a2e !important;
    line-height: 1.15 !important;
    margin: 0 0 18px !important;
    letter-spacing: -0.3px !important;
}
.hakkimizda-onizleme-baslik span {
    color: #E8650A !important;
}
.hakkimizda-onizleme-metin {
    font-size: 15px !important;
    color: #5a5a6e !important;
    line-height: 1.75 !important;
    margin: 0 0 26px !important;
}
.hakkimizda-onizleme-liste {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 30px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 14px !important;
}
.hakkimizda-onizleme-liste li {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #2d2d3a !important;
    list-style: none !important;
    background: rgba(232,101,10,0.06) !important;
    padding: 9px 14px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(232,101,10,0.14) !important;
}
.hakkimizda-onizleme-liste li i {
    color: #E8650A !important;
    font-size: 14px !important;
    flex-shrink: 0 !important;
}
/* BUTON — nav-pill ile birebir aynı stil */
.hakkimizda-onizleme-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #E8650A, #f07830) !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: 0 3px 14px rgba(232,101,10,0.45) !important;
    transition: transform .2s, box-shadow .2s !important;
    font-family: inherit !important;
    cursor: pointer !important;
    border: none !important;
}
.hakkimizda-onizleme-btn:hover,
.hakkimizda-onizleme-btn:focus {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 22px rgba(232,101,10,0.58) !important;
    color: #fff !important;
    text-decoration: none !important;
}
.hakkimizda-onizleme-btn i {
    font-size: 13px !important;
    color: #fff !important;
}
@media (max-width: 960px) {
    .hakkimizda-onizleme-inner {
        flex-direction: column !important;
        gap: 48px !important;
    }
    .hakkimizda-onizleme-gorsel {
        flex: none !important;
        width: 100% !important;
        max-width: 560px !important;
        margin: 0 auto !important;
    }
    .hakkimizda-onizleme-gorsel img { height: 280px !important; }
    .hakkimizda-yil-rozet { bottom: -16px !important; right: 20px !important; }
    .hakkimizda-onizleme-icerik { width: 100% !important; }
    .hakkimizda-onizleme-baslik { font-size: 28px !important; }
}
@media (max-width: 560px) {
    .hakkimizda-onizleme-section { padding: 48px 0 60px !important; }
    .hakkimizda-onizleme-inner { padding: 0 16px !important; gap: 36px !important; }
    .hakkimizda-onizleme-baslik { font-size: 24px !important; }
    .hakkimizda-onizleme-liste { grid-template-columns: 1fr !important; }
    .hakkimizda-onizleme-btn { width: 100% !important; justify-content: center !important; }
}

/* Yazılımlar sayfası TV CTA pill butonu */
.yazilim-tv-pill-btn {
    font-size: 13.5px !important;
    padding: 11px 24px !important;
    border-radius: 50px !important;
    white-space: normal !important;
    text-align: center !important;
    flex-shrink: 0 !important;
    gap: 8px !important;
    box-shadow: 0 3px 14px rgba(232,101,10,0.45) !important;
}
.yazilim-tv-pill-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 22px rgba(232,101,10,0.58) !important;
    color: #fff !important;
}
@media (max-width: 768px) {
    .yazilim-tv-cta-card { flex-direction: column !important; padding: 22px 20px !important; }
    .yazilim-tv-pill-btn { width: 100% !important; justify-content: center !important; }
}
