@import url('https://fonts.googleapis.com/css2?family=Allerta+Stencil&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Allerta+Stencil&display=swap');

:root {
    --primary: #C5C5C5;            /* nötr gri taban */
    --primary-hover: #a8a8a8;
    --primary-soft: rgba(197,197,197, 0.12);
    --accent: #f97316;             /* turuncu vurgu — CTA / aksiyon */
    --accent-hover: #ea580c;
    --accent-soft: rgba(249,115,22, 0.10);
    --accent-red: #e63946;         /* eski kırmızı, gerektiğinde */
    --secondary: #1d3557;
    --dark-1: #0b0f17;
    --dark-2: #131826;
    --dark-3: #1c2333;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-on-dark: #e5e7eb;
    --text-on-dark-soft: #9ca3af;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border: #e0e0e0;
    --border-dark: rgba(255,255,255,0.08);
    --radius: 8px;
    --radius-lg: 14px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-hover: 0 10px 15px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.text-primary { color: var(--primary); }
.bg-light { background-color: var(--bg-light); }

/* Layout Components */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 30px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.w-100 { width: 100%; }

.btn-sm { padding: 8px 14px; font-size: 0.9rem; }

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-dark {
    background-color: rgba(11, 15, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border-dark);
}
.header-dark .nav-list a { color: var(--text-on-dark); }
.header-dark .nav-list a:hover { color: var(--primary); }
.header-dark .logo a { color: var(--white); }
.header-dark .menu-toggle { color: var(--white); }
.header-dark .btn-outline {
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
    background: transparent;
}
.header-dark .btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #0b0f17;
}

/* ========= 2-Row Header ========= */
.header-2row {
    padding: 0;
    height: auto;
}
.header-2row .header-container { display: none; }

.header-top {
    border-bottom: 1px solid var(--border-dark);
}
.header-top-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 78px;
}
.header-top-inner .logo {
    flex: 0 0 auto;
    margin-right: 8px;
}

.header-search {
    flex: 1 1 auto;
    max-width: 720px;
    min-height: 48px;
    display: flex;
    align-items: stretch;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: visible;
    transition: var(--transition);
    position: relative;
}
.header-search:focus-within {
    border-color: var(--primary);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px var(--primary-soft);
}
.header-search input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: none;
    color: var(--text-on-dark);
    padding: 0 18px;
    font-family: inherit;
    font-size: 0.95rem;
}
.header-search input::placeholder { color: var(--text-on-dark-soft); }
.header-search button {
    background: var(--primary);
    color: #0b0f17;
    border: 0;
    padding: 0 22px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    transition: var(--transition);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
.header-search button i { font-size: 1rem; }
.header-search input { font-size: 1rem; padding: 0 20px; }
.header-search input:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.header-search button:hover { background: var(--primary-hover); }

/* Arama önerileri dropdown */
.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    border: 1px solid #eceff4;
    overflow: hidden;
    max-height: 460px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 100;
}
.search-suggestions.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ss-item {
    display: flex;
    gap: 12px;
    padding: 10px 14px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s ease;
}
.ss-item:last-child { border-bottom: none; }
.ss-item:hover { background: #fafbfc; }
.ss-img {
    width: 50px;
    height: 50px;
    background: #f3f4f6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #cbd5e1;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.ss-img img { width: 100%; height: 100%; object-fit: cover; }
.ss-info { min-width: 0; flex: 1; }
.ss-brand {
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 2px;
}
.ss-name {
    color: #111827;
    font-size: 0.9rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.3;
}
.ss-price {
    color: #e11d48;
    font-size: 0.86rem;
    font-weight: 700;
    margin-top: 3px;
}
.ss-empty {
    padding: 22px 18px;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}
.ss-empty i { margin-right: 6px; color: #d1d5db; font-size: 1.1rem; }

.header-account { flex: 0 0 auto; display: flex; gap: 6px; }
.account-pill, .cart-pill, .tech-join-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--text-on-dark);
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255,255,255,0.02);
}
.account-pill:hover, .cart-pill:hover, .tech-join-pill:hover {
    border-color: var(--primary);
    background: rgba(197,197,197,0.08);
}
.account-pill i, .cart-pill > i, .tech-join-pill i { font-size: 1.05rem; color: var(--primary); }
.account-pill-text, .cart-pill-text, .tech-join-pill-text { display: flex; flex-direction: column; line-height: 1.1; position: relative; }
.account-pill-text strong, .cart-pill-text strong, .tech-join-pill-text strong { font-size: 0.78rem; font-weight: 700; letter-spacing: 0; color: var(--white); }
.account-pill-text small, .tech-join-pill-text small { font-size: 0.68rem; font-weight: 500; color: var(--text-on-dark-soft); margin-top: 1px; }

.cart-pill { position: relative; }
.js-cart-badge {
    font-size: 0.7rem;
    color: var(--text-on-dark-soft);
    margin-top: 2px;
}
.js-cart-badge.has-items {
    color: var(--white);
    background: var(--primary);
    position: absolute;
    top: -14px;
    right: -18px;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 6px rgba(197,197,197,0.5);
    font-size: 0.72rem;
    color: #0b0f17;
    margin: 0;
}

/* Row 2: Nav strip */
.header-nav-strip {
    background: rgba(6, 8, 14, 0.6);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}
.header-nav-strip .nav-list {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}
.header-nav-strip .nav-list > li { position: relative; }
.header-nav-strip .nav-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 16px 22px;
    color: var(--text-on-dark);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    font-size: 0.92rem;
}
.header-nav-strip .nav-list > li > a:hover,
.header-nav-strip .nav-list > li.is-open > a {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(197,197,197,0.05);
}

/* ===== Nav Mega Dropdown (Sarf Malzemeler) ===== */
.nav-list .has-mega { position: relative; }
.has-mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.has-mega-caret {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
    opacity: 0.85;
}
.has-mega.is-open .has-mega-caret {
    transform: rotate(180deg);
}

.nav-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    /* Kapalıyken viewport dışında — cursor altında kalan invisible link/slide olmasın */
    transform: translateX(-50%) translateY(-9999px);
    background: #ffffff;
    color: var(--text-dark);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 32px rgba(15,23,42,0.12);
    border: 1px solid #e5e7eb;
    border-top: 3px solid #C5C5C5;
    padding: 24px 28px;
    width: 1280px;
    max-width: 96vw;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* Kapanırken anında gizle ve uzaklaştır */
    transition: opacity 0.18s ease, transform 0s linear 0.18s, visibility 0s linear 0.18s;
    z-index: 60;
}
/* Trigger ile menü arasında görünmez köprü (hover gap'i yok et) */
.nav-mega::before {
    content: '';
    position: absolute;
    top: -8px; left: 0; right: 0;
    height: 8px;
    background: transparent;
    display: block;
}
/* Açılma: SADECE JS tarafından .is-open class'ı eklenince (yani .has-mega-text spanı hover olunca).
   Hiçbir CSS hover kuralı yok — padding veya link alanı hiçbir şey tetiklemez. */
.has-mega.is-open > .nav-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    /* Açılırken: önce görünür alanına getir, sonra fade-in */
    transition: opacity 0.18s ease, transform 0s linear 0s, visibility 0s linear 0s;
}
.has-mega.is-open > .has-mega-trigger .has-mega-caret {
    transform: rotate(180deg);
}
/* Has-mega-text spanı — yalnızca metnin üstünü hover alanı yap, padding hariç */
.has-mega-text { display: inline-block; }

.nav-mega-inner {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 24px;
    align-items: stretch;
}
.nav-mega-cats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    align-items: flex-start;
    gap: 0;
}
/* İnce dikey ayırıcı — tüm sütunlara (ilk dahil) */
.nav-mega-col {
    min-width: 0;
    max-width: 100%;
    border-left: 1px dashed #e5e7eb;
    padding-left: 16px;
    padding-right: 12px;
}
.nav-mega-col:first-child { padding-left: 0; border-left: none; }


/* ===== EN ÇOK SATANLAR (Featured) ===== */
.nav-mega-featured {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    padding-left: 18px;
    border-left: 1px dashed #e5e7eb;
    min-height: 260px;
    position: relative;
}
.featured-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #111827;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-align: center;
    align-self: stretch;
    padding: 4px 0;
    border-right: 1px dashed #d1d5db;
}

.featured-slides {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 240px;
}
.featured-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    pointer-events: none !important;
}
.featured-slide.is-active {
    opacity: 1;
    /* visibility ve pointer-events SADECE mega menü açıkken aktifleşir.
       Aksi hâlde kapalı menünün altında gizli kalan aktif slide
       cursor'ı yakalayıp status bar'da urun.php URL'si gösteriyordu. */
    visibility: hidden;
    pointer-events: none !important;
}
.has-mega.is-open .featured-slide.is-active {
    visibility: visible;
    pointer-events: auto !important;
}
.featured-img {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.featured-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.featured-img-placeholder {
    color: #9ca3af;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.featured-info h5 {
    font-size: 0.9rem;
    color: #111827;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.3;
}
.featured-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.price-old {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 0.8rem;
}
.price-now {
    color: var(--primary-hover);
    font-weight: 700;
    font-size: 1rem;
}

.featured-nav {
    grid-column: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.featured-arrow {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #4b5563;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.8rem;
}
.featured-arrow:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft);
}
.featured-counter {
    font-size: 0.78rem;
    color: #6b7280;
    min-width: 40px;
    text-align: center;
}

/* ===== Mega yeniden tasarım — kategori ikonu kutusu ===== */
/* Başlık tam sütun genişliğini kaplasın + uzun ad kelime kaydırsın (taşma/üst üste binme yok) */
.nav-mega-col-title { display: block; }
.nav-mega-col-title a { display: flex; align-items: flex-start; gap: 8px; }
.nav-mega-col-ad { min-width: 0; white-space: normal; line-height: 1.25; }
.header .nav-mega-col-title a,
.header-dark .nav-mega-col-title a { white-space: normal; }
.nav-mega-ikon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 6px;
    background: #f1f5f9;
    border: 1px solid #e5e7eb;
    color: #475569;
    font-size: 0.78rem; flex-shrink: 0; margin-top: 1px;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.nav-mega-ikon i { font-size: inherit; width: auto; color: inherit; text-align: center; }
/* Aktif/hover — KOYU kutu + BEYAZ ikon (gri primary'de kaybolma sorununu çözer) */
.nav-mega-col.is-active .nav-mega-ikon,
.nav-mega-col:hover .nav-mega-ikon { background: #334155; color: #ffffff; border-color: #334155; }
.nav-mega-col.is-active .nav-mega-col-ad,
.nav-mega-col:hover .nav-mega-col-ad { color: #111827; }

/* ===== Mega — kategoriye göre en çok satan panelleri (2'li kart) ===== */
.featured-panes { position: relative; flex: 1; min-height: 250px; display: flex; }
.bs-pane { display: none; flex-direction: column; flex: 1; min-width: 0; gap: 10px; }
.has-mega.is-open .bs-pane.is-active { display: flex; }
.bs-grid { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: min-content; gap: 10px; }
.bs-grid .bs-card:nth-child(n+3) { display: none; }
.bs-grid[data-bs-offset="1"] .bs-card { display: none; }
.bs-grid[data-bs-offset="1"] .bs-card:nth-child(3),
.bs-grid[data-bs-offset="1"] .bs-card:nth-child(4) { display: flex; }
.bs-grid[data-bs-offset="2"] .bs-card { display: none; }
.bs-grid[data-bs-offset="2"] .bs-card:nth-child(5),
.bs-grid[data-bs-offset="2"] .bs-card:nth-child(6) { display: flex; }
.bs-card {
    display: flex; flex-direction: column; min-width: 0;
    border: 1px solid #e5e7eb; border-radius: 8px; padding: 8px;
    text-decoration: none; color: inherit;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.bs-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(15,23,42,.08); }
.bs-card-thumb {
    aspect-ratio: 4 / 3; background: #f3f4f6; border-radius: 6px; overflow: hidden;
    display: flex; align-items: center; justify-content: center; margin-bottom: 7px;
}
.bs-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bs-card-ad {
    font-size: 0.74rem; font-weight: 600; color: #111827; line-height: 1.3; margin-bottom: 5px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.bs-card-fiyat { font-size: 0.74rem; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.bs-card-fiyat strong { color: var(--primary-hover); font-weight: 700; font-size: 0.84rem; }
.bs-eski { color: #9ca3af; text-decoration: line-through; font-size: 0.68rem; }
.bs-ara { color: var(--primary); font-weight: 600; font-size: 0.72rem; }
.bs-arrows { display: flex; justify-content: center; gap: 8px; margin-top: auto; padding-top: 10px; }
.bs-ok {
    width: 28px; height: 28px; border-radius: 50%; border: 1px solid #e5e7eb;
    background: #fff; color: #4b5563; cursor: pointer; font-size: 0.72rem;
    display: inline-flex; align-items: center; justify-content: center; transition: var(--transition);
}
.bs-ok:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }
.bs-ok:disabled { opacity: .35; cursor: not-allowed; }
.bs-empty { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 200px; color: #9ca3af; font-size: 0.82rem; text-align: center; }

.nav-mega-col-title {
    color: var(--text-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-mega-col-title i {
    color: var(--primary);
    font-size: 1.05rem;
    width: 22px;
    text-align: center;
}

.nav-mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-mega-col ul li { margin: 0; }
.header .nav-mega-col ul li a,
.header-dark .nav-mega-col ul li a {
    display: block;
    padding: 4px 0;
    font-size: 0.72rem;
    font-weight: 500;
    color: #8b9ab0;
    text-decoration: none;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.15s ease, padding-left 0.15s ease;
    letter-spacing: 0;
}
.nav-mega-col ul li a {
    display: block;
    padding: 4px 0;
    font-size: 0.72rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.35;
    transition: color 0.15s ease, padding-left 0.15s ease;
    letter-spacing: 0;
}
.nav-mega-col ul li a:hover,
.header .nav-mega-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}
.header-dark .nav-mega-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* Mega menu başlık ve kategori link'i — header-dark miras override */
.header .nav-mega-col-title,
.header .nav-mega-col-title a {
    color: #111827;
    font-weight: 700;
    white-space: nowrap;
}
.header-dark .nav-mega-col-title,
.header-dark .nav-mega-col-title a {
    color: #111827;
    font-weight: 700;
    white-space: nowrap;
}
.header .nav-mega-col-title a:hover,
.header-dark .nav-mega-col-title a:hover {
    color: var(--primary);
}

/* Koyu header üstünde dropdown hâlâ beyaz kalır ama üçgen koyu çerçeve ister */
.header-dark .nav-mega::before { background: var(--white); }

@media (max-width: 1200px) {
    .nav-mega { min-width: 720px; padding: 20px 22px; }
    .nav-mega-inner { grid-template-columns: 1fr 220px; }
    .nav-mega-cats { gap: 0 20px; }
    .nav-mega-col + .nav-mega-col { padding-left: 16px; }
}

@media (max-width: 992px) {
    .nav-mega { min-width: 640px; padding: 20px; }
    .nav-mega-inner { grid-template-columns: 1fr; gap: 20px; }
    .nav-mega-cats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .nav-mega-col + .nav-mega-col { border-left: none; padding-left: 0; margin-left: 0; }
    .nav-mega-featured { border-left: none; border-top: 1px dashed #e5e7eb; padding-left: 0; padding-top: 16px; grid-template-columns: 1fr; }
    .featured-label { writing-mode: horizontal-tb; transform: none; border-right: none; border-bottom: 1px dashed #d1d5db; padding-bottom: 6px; margin-bottom: 10px; text-align: left; }
}

@media (max-width: 768px) {
    /* Mobilde nav zaten gizli, mobil menüde düz link olarak geçiyor */
    .has-mega { display: none; }
}

.header.scrolled {
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    font-family: 'Allerta Stencil', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}
.logo a span { font-family: 'Allerta Stencil', sans-serif; }

.logo i { font-size: 1.2rem; }

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-family: 'Allerta Stencil', sans-serif;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: var(--transition);
}
.nav-list a span,
.nav-list .has-mega-text { font-family: 'Allerta Stencil', sans-serif; }

.nav-list a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}

/* Mobile Menu — yan panel (sağdan açılır) */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11,15,23,0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 86%;
    max-width: 320px;
    height: 100%;
    background: #ffffff !important;
    color: #0b0f17;
    box-shadow: -8px 0 24px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }

.mm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
    background: #ffffff;
}
.mm-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.98rem;
    font-weight: 800;
    color: #0b0f17;
    text-decoration: none;
}
.mm-logo i { font-size: 1.1rem; }
.mm-close {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    transition: all 0.18s ease;
}
.mm-close:hover { background: #f3f4f6; color: #0b0f17; }

.mm-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #1f2937 0%, #0b0f17 100%);
    color: #fff;
}
.mm-user-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--primary, #C5C5C5);
    color: #0b0f17;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}
.mm-user-info { min-width: 0; }
.mm-user-info small { display: block; color: rgba(255,255,255,0.6); font-size: 0.7rem; margin-bottom: 1px; }
.mm-user-info strong { font-size: 0.88rem; font-weight: 700; }

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 8px;
    background: #ffffff;
}
.mobile-nav-list li { list-style: none; margin: 0; padding: 0; background: transparent; }
.mobile-nav-list li + li { border-top: 1px solid #f1f5f9; }
.mobile-nav-list a,
.mobile-link {
    display: flex !important;
    align-items: center;
    gap: 11px;
    padding: 12px 12px !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    background: transparent !important;
    text-decoration: none !important;
    border: 0 !important;
    border-radius: 8px;
    transition: background 0.18s ease, color 0.18s ease;
}
.mobile-nav-list a:hover,
.mobile-nav-list a:focus,
.mobile-link:hover,
.mobile-link:focus { background: #f3f4f6 !important; color: #0b0f17 !important; }
.mobile-nav-list a i,
.mobile-link i {
    width: 22px;
    color: #475569 !important;
    font-size: 0.95rem;
    text-align: center;
    flex-shrink: 0;
}
.mobile-nav-list a:hover i,
.mobile-link:hover i { color: var(--primary, #C5C5C5) !important; }

.mm-actions {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex-shrink: 0;
    background: #ffffff;
}
/* Üstte yer alan aksiyon bloğu için ekstra varyasyon (opsiyonel future use) */
.mm-actions.mm-actions-top { padding: 10px 12px 12px; }
.mm-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #0b0f17;
    transition: all 0.18s ease;
}
.mm-action i { width: 18px; text-align: center; font-size: 0.92rem; }
.mm-action:hover { background: #f9fafb; border-color: #d1d5db; }
.mm-action-cart { position: relative; }
.mm-cart-badge {
    margin-left: auto;
    background: #C5C5C5;
    color: #0b0f17;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 1px 8px;
    border-radius: 10px;
    min-width: 22px;
    text-align: center;
}
.mm-action-login {
    background: #0b0f17;
    color: #fff;
    border-color: #0b0f17;
}
.mm-action-login:hover { background: #1f2937; color: #fff; }
.mm-action-tech {
    background: linear-gradient(135deg, #C5C5C5 0%, #a8a8a8 100%);
    color: #0b0f17;
    border-color: transparent;
}
.mm-action-tech:hover { filter: brightness(1.05); color: #0b0f17; }
.mm-action-logout { color: #b91c1c; }
.mm-action-logout:hover { background: #fef2f2; border-color: #fecaca; color: #991b1b; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
    padding-top: 80px;
    overflow: hidden;
}

/* Hero background animation effect */
.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230,57,70,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 20s linear infinite;
    top: -50%;
    left: -50%;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Services */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
}

/* Brands */
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.brand-item {
    background: var(--white);
    padding: 20px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.brand-item:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Testimonials */
.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.stars {
    color: #f39c12;
    margin-bottom: 15px;
}

.testimonial-card .message {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonial-card .author h4 {
    margin-bottom: 5px;
}

.testimonial-card .author span {
    font-size: 0.9rem;
    color: var(--primary);
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.info-item h4 {
    margin-bottom: 5px;
}

.info-item a {
    color: var(--text-light);
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}

.form-message {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: var(--radius);
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* =============== FOOTER =============== */
/* Eski mini-footer'lar (hesabim-*.php vb. tek satır copyright) için temel kural */
.footer {
    background: var(--dark-1);
    color: var(--text-on-dark);
}
.footer-bottom {
    background: var(--dark-1);
    padding: 20px 0;
    text-align: center;
    color: var(--text-on-dark-soft);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-dark);
}

/* Ana site footer'ı (layout_footer.php) — header'ın koyu paletiyle uyumlu */
.site-footer {
    position: relative;
    margin-top: 60px;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-1) 100%);
    color: var(--text-on-dark-soft);
    font-size: 0.95rem;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-red) 50%, var(--primary) 100%);
}

/* --- CTA bandı --- */
.sf-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    position: relative;
    overflow: hidden;
}
.sf-cta::before {
    content: '';
    position: absolute;
    inset: -40% -10% auto auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
}
.sf-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 32px 0;
    position: relative;
    z-index: 1;
}
.sf-cta-text h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 6px;
    line-height: 1.25;
}
.sf-cta-text p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.98rem;
}
.sf-cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.sf-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    color: #fff;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}
.sf-cta-phone:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}
.sf-cta-phone-ic {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fff;
    color: var(--primary-hover);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}
.sf-cta-phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.sf-cta-phone-text small {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
}
.sf-cta-phone-text strong {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.sf-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    background: var(--dark-1);
    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid var(--border-dark);
}
.sf-cta-btn:hover {
    background: #fff;
    color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.sf-cta-btn i { transition: transform 0.25s ease; }
.sf-cta-btn:hover i { transform: translateX(4px); }

/* --- Ana grid --- */
.sf-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding: 60px 20px;
}
.sf-col { min-width: 0; }

/* Marka sütunu */
.sf-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 18px;
}
.sf-logo-ic {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 16px rgba(197,197,197, 0.35);
}
.sf-about {
    color: var(--text-on-dark-soft);
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 360px;
}
.sf-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.sf-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-dark);
    color: var(--text-on-dark);
    transition: var(--transition);
}
.sf-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #0b0f17;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(197,197,197, 0.35);
}

/* Sütun başlığı */
.sf-title {
    color: #fff;
    font-size: 1.02rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 22px;
    padding-bottom: 12px;
    position: relative;
}
.sf-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
}

/* Link listesi */
.sf-nav li { margin-bottom: 10px; }
.sf-nav a {
    color: var(--text-on-dark-soft);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.sf-nav a::before {
    content: '\f105'; /* fa-chevron-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.72rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition);
}
.sf-nav a:hover {
    color: var(--primary);
    transform: translateX(4px);
}
.sf-nav a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* İletişim listesi */
.sf-contact { list-style: none; padding: 0; margin: 0; }
.sf-contact li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}
.sf-contact-ic {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border: 1px solid rgba(197,197,197, 0.25);
}
.sf-contact-ic-wa {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.3);
}
.sf-contact-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.4;
    min-width: 0;
    word-break: break-word;
}
.sf-contact-body small {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-on-dark-soft);
    opacity: 0.75;
}
.sf-contact-body a,
.sf-contact-body span {
    color: var(--text-on-dark);
    font-weight: 500;
    transition: color 0.25s ease;
}
.sf-contact-body a:hover { color: var(--primary); }

/* Alt bar */
.sf-bottom {
    background: rgba(0, 0, 0, 0.35);
    border-top: 1px solid var(--border-dark);
}
.sf-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    flex-wrap: wrap;
}
.sf-copy {
    margin: 0;
    color: var(--text-on-dark-soft);
    font-size: 0.88rem;
    opacity: 0.8;
}
.sf-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.sf-legal a {
    color: var(--text-on-dark-soft);
    font-size: 0.88rem;
    transition: color 0.25s ease;
    position: relative;
}
.sf-legal li + li::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    width: 3px;
    height: 3px;
    background: var(--border-dark);
    border-radius: 50%;
    transform: translateY(-50%);
}
.sf-legal li { position: relative; }
.sf-legal a:hover { color: var(--primary); }

/* =============== SARF MALZEMELER — KOYU TEMA MAĞAZA =============== */
.shop-dark-page {
    padding: 130px 0 50px;
    background: #0b0f17;
    color: var(--text-on-dark);
    min-height: 100vh;
}

/* Açık/gri sayfa arka planı — header/footer dark kalır, ortadaki içerik gri */
.shop-light-page {
    padding: 160px 0 50px;
    background: #f3f4f6;
    color: #111827;
    min-height: 100vh;
}
/* Sabit 2-row header'ın altında breadcrumb'a ekstra tampon */
.shop-light-page > .container > .breadcrumb:first-child,
.shop-light-page > .container > .sd-breadcrumb:first-child,
.shop-light-page .breadcrumb { margin-top: 14px; }

/* Hero — açık sayfada beyaz bant */
.shop-light-page .sd-hero {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.shop-light-page .sd-hero-glow { display: none; }
.shop-light-page .sd-hero-tag {
    background: #fff7ed;
    color: #b45309;
    border: 1px solid #fed7aa;
}
.shop-light-page .sd-hero-text h1 { color: #111827; }
.shop-light-page .sd-hero-text p { color: #4b5563; }
.shop-light-page .sd-hero-stat { border-right-color: #e5e7eb; }
.shop-light-page .sd-hero-stat strong { color: #111827; }
.shop-light-page .sd-hero-stat span { color: #6b7280; }

/* Breadcrumb (.sd-breadcrumb) */
.shop-light-page .sd-breadcrumb a { color: #6b7280; }
.shop-light-page .sd-breadcrumb a:hover { color: var(--primary); }
.shop-light-page .sd-breadcrumb span { color: #111827; }
.shop-light-page .sd-breadcrumb i { color: #9ca3af; }

/* Sidebar — beyaz kart içinde */
.shop-light-page .sd-sidebar {
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    align-self: start;
}
.shop-light-page .sd-block { border-bottom-color: #e5e7eb; }
.shop-light-page .sd-block-title { color: #111827; }
.shop-light-page .sd-block[data-collapsible] > .sd-block-title:hover { color: var(--primary); }
.shop-light-page .sd-block-title i { color: #9ca3af; }

.shop-light-page .sd-list a { color: #374151; }
.shop-light-page .sd-list a span { color: #9ca3af; }
.shop-light-page .sd-list a:hover { color: #111827; background: #f3f4f6; }
.shop-light-page .sd-list a.active { color: var(--primary); background: rgba(197,197,197,0.08); }
.shop-light-page .sd-list a.active span { color: var(--primary); }

.shop-light-page .sd-sublist { border-left-color: #e5e7eb; }

.shop-light-page .sd-tag {
    background: #f3f4f6;
    color: #374151;
    border-color: #e5e7eb;
}
.shop-light-page .sd-tag:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}
.shop-light-page .sd-tag.tag-lg,
.shop-light-page .sd-tag.tag-xl { color: #111827; }
.shop-light-page .sd-tag.tag-xl {
    background: rgba(197,197,197,0.12);
    border-color: rgba(197,197,197,0.35);
}

.shop-light-page .sd-best-item { border-color: #e5e7eb; }
.shop-light-page .sd-best-item:hover {
    background: #f9fafb;
    border-color: rgba(197,197,197,0.35);
}
.shop-light-page .sd-best-img { background: #f3f4f6; }
.shop-light-page .sd-best-name { color: #111827; }
.shop-light-page .sd-best-price .sd-old { color: #9ca3af; }
.shop-light-page .sd-best-price .sd-now { color: var(--primary); }

/* Başlıklar ve ana alanlar */
.shop-light-page .sd-title { color: #111827; }
.shop-light-page .sd-desc { color: #4b5563; }

/* Banners */
.shop-light-page .sd-banner {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111827;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.shop-light-page .sd-banner small { color: #6b7280; }
.shop-light-page .sd-banner strong { color: #111827; }
.shop-light-page .sd-banner-cta { color: var(--primary); }
.shop-light-page .sd-banner-overlay { background: rgba(255,255,255,0.7); }

/* Toolbar */
.shop-light-page .sd-toolbar {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.shop-light-page .sd-count-info { color: #4b5563; }
.shop-light-page .sd-vt { color: #6b7280; border-color: #e5e7eb; }
.shop-light-page .sd-vt:hover { color: var(--primary); }
.shop-light-page .sd-vt.active {
    color: #111827;
    background: #f3f4f6;
    border-color: #d1d5db;
}
.shop-light-page .sd-sort-form select {
    background: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
}
.shop-light-page .sd-sort-form select option { background: #ffffff; color: #111827; }

/* Aktif filtre çipleri */
.shop-light-page .sd-chip {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}
.shop-light-page .sd-chip a { color: var(--primary); }

/* Ürün kartları — zaten beyaz, sadece border/gölgeyi uyumla */
.shop-light-page .sd-card {
    border-color: #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.shop-light-page .sd-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 10px 24px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.shop-light-page .sd-card-name { color: #111827; }
.shop-light-page .sd-card-brand { color: #6b7280; }
.shop-light-page .sd-card-price .sd-old { color: #9ca3af; }
.shop-light-page .sd-card-price .sd-now { color: var(--primary); }

/* Sayfalama */
.shop-light-page .sd-pg {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #374151;
}
.shop-light-page .sd-pg:hover { border-color: var(--primary); color: var(--primary); }
.shop-light-page .sd-pg.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}
.shop-light-page .sd-pg-gap { color: #9ca3af; }

/* Boş durum */
.shop-light-page .sd-empty {
    background: #ffffff;
    border: 1px dashed #d1d5db;
    border-radius: 10px;
    color: #4b5563;
}
.shop-light-page .sd-empty i { color: #d1d5db; }
.shop-light-page .sd-empty h3 { color: #111827; }

/* Yükle buton */
.shop-light-page .sd-btn {
    background: var(--primary);
    color: #ffffff;
}
.shop-light-page .sd-btn:hover { background: var(--primary-hover); }

/* Shop Hero (üst banner) */
.sd-hero {
    position: relative;
    background: linear-gradient(135deg, #131826 0%, #0b0f17 60%, #07090f 100%);
    padding: 34px 0 30px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    isolation: isolate;
}
.sd-hero-glow {
    position: absolute;
    top: -60%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197,197,197,0.18) 0%, rgba(197,197,197,0) 60%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}
.sd-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}
.sd-hero-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    background: rgba(197,197,197,0.1);
    border: 1px solid rgba(197,197,197,0.25);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.sd-hero-tag i { margin-right: 5px; }
.sd-hero-text h1 {
    color: var(--white);
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0 0 6px;
    line-height: 1.2;
}
.sd-hero-text p {
    color: var(--text-on-dark-soft);
    font-size: 0.92rem;
    margin: 0;
    max-width: 640px;
}
.sd-hero-stats {
    display: flex;
    gap: 22px;
    align-items: center;
}
.sd-hero-stat {
    text-align: center;
    padding: 0 14px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.sd-hero-stat:last-child { border-right: none; }
.sd-hero-stat strong {
    display: block;
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.sd-hero-stat span {
    color: var(--text-on-dark-soft);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .sd-hero { padding: 24px 0 22px; }
    .sd-hero-inner { grid-template-columns: 1fr; gap: 18px; }
    .sd-hero-text h1 { font-size: 1.4rem; }
    .sd-hero-stats { justify-content: center; gap: 10px; }
    .sd-hero-stat { padding: 0 10px; }
    .sd-hero-stat strong { font-size: 1.2rem; }
}

/* Breadcrumb */
.sd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0 22px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    color: var(--text-on-dark-soft);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 22px;
}
.sd-breadcrumb a { color: var(--text-on-dark-soft); text-decoration: none; }
.sd-breadcrumb a:hover { color: var(--primary); }
.sd-breadcrumb i { font-size: 0.65rem; opacity: 0.5; }
.sd-breadcrumb span { color: var(--white); font-weight: 600; }

/* Layout */
.sd-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 20px;
    align-items: start;
}

/* ------- SIDEBAR ------- */
.sd-sidebar {
    position: sticky;
    top: 150px;
}
.sd-block {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0 14px;
}
.sd-block:first-child { padding-top: 0; }
.sd-block:last-child { border-bottom: none; }
.sd-block-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    margin: 0 0 9px;
    padding: 0;
}
.sd-block[data-collapsible] > .sd-block-title {
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}
.sd-block[data-collapsible] > .sd-block-title:hover { color: var(--primary); }
.sd-block-title i {
    color: var(--primary);
    font-size: 0.62rem;
    opacity: 0.8;
    transition: transform 0.2s ease;
}
.sd-block[data-collapsible]:not(.is-open) > *:not(.sd-block-title) {
    display: none;
}
.sd-block[data-collapsible]:not(.is-open) > .sd-block-title { margin-bottom: 0; }

.sd-list { list-style: none; padding: 0; margin: 0; }
.sd-list > li { margin-bottom: 1px; }
.sd-list a {
    display: block;
    padding: 4px 0;
    color: var(--text-on-dark-soft);
    text-decoration: none;
    font-size: 0.78rem;
    transition: var(--transition);
    border-left: 2px solid transparent;
    padding-left: 8px;
    margin-left: -8px;
    line-height: 1.35;
}
.sd-list a span { color: rgba(255,255,255,0.35); font-size: 0.7rem; }
.sd-list a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 12px;
}
.sd-list a.active {
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 700;
    padding-left: 12px;
}
.sd-list a.active span { color: var(--primary); }

.sd-sublist {
    list-style: none;
    padding: 0;
    margin: 4px 0 0 10px;
    border-left: 1px dashed rgba(255,255,255,0.1);
}
.sd-sublist a { font-size: 0.72rem; padding: 3px 7px; margin-left: 0; border-left: none; white-space: normal; line-height: 1.3; }
.sd-sublist a:hover { padding-left: 10px; }

/* Popüler etiketler */
.sd-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.sd-tag {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: var(--text-on-dark-soft);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    font-size: 0.62rem;
    transition: var(--transition);
    line-height: 1.45;
}
.sd-tag.tag-md { font-size: 0.65rem; padding: 2px 8px; }
.sd-tag.tag-lg { font-size: 0.68rem; font-weight: 700; padding: 3px 9px; color: var(--white); }
.sd-tag.tag-xl { font-size: 0.72rem; font-weight: 800; padding: 3px 10px; color: var(--white); background: rgba(197,197,197,0.08); border-color: rgba(197,197,197,0.3); }
.sd-tag:hover {
    background: var(--primary-soft);
    color: var(--primary);
    border-color: var(--primary);
}

/* Çok satanlar */
.sd-bestsellers { display: flex; flex-direction: column; gap: 10px; }
.sd-best-item {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}
.sd-best-item:hover { background: rgba(255,255,255,0.03); border-color: rgba(197,197,197,0.3); }
.sd-best-img {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: rgba(255,255,255,0.25);
    flex-shrink: 0;
}
.sd-best-img img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 4px; }
.sd-best-info { min-width: 0; }
.sd-best-name { color: var(--white); font-size: 0.82rem; font-weight: 600; line-height: 1.25; margin-bottom: 3px; }
.sd-best-price { display: flex; gap: 6px; flex-wrap: wrap; align-items: baseline; }
.sd-best-price .sd-old { color: rgba(255,255,255,0.35); text-decoration: line-through; font-size: 0.75rem; }
.sd-best-price .sd-now { color: var(--primary); font-weight: 700; font-size: 0.85rem; }

/* ------- ANA İÇERİK ------- */
.sd-main { min-width: 0; }

/* Banner */
.sd-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.sd-banner {
    height: 100px;
    background: linear-gradient(135deg, #131826 0%, #1c2333 100%);
    border: 1px solid rgba(197,197,197,0.18);
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.sd-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(197,197,197,0.16) 0%, rgba(197,197,197,0) 70%);
    pointer-events: none;
}
.sd-banner-alt::before { right: auto; left: -30%; background: radial-gradient(circle, rgba(197,197,197,0.1) 0%, rgba(197,197,197,0) 70%); }
.sd-banner.has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.sd-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,15,23,0.85) 0%, rgba(11,15,23,0.45) 100%);
    z-index: 0;
}
.sd-banner-content, .sd-banner > div { position: relative; z-index: 1; }
.sd-banner small {
    display: block;
    color: var(--primary);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
}
.sd-banner strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 6px;
}
.sd-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.78rem;
    transition: var(--transition);
}
.sd-banner-cta:hover { gap: 8px; color: var(--primary-hover); }

/* Başlık + açıklama */
.sd-title {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin: 0 0 10px;
}
.sd-desc {
    color: var(--text-on-dark-soft);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 20px;
}
.sd-desc strong { color: var(--primary); }

/* Toolbar */
.sd-toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 22px;
}
.sd-toolbar-bottom { margin-top: 28px; }

.sd-view-toggle {
    display: inline-flex;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    overflow: hidden;
}
.sd-vt {
    background: transparent;
    border: none;
    color: var(--text-on-dark-soft);
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}
.sd-vt:hover { color: var(--primary); }
.sd-vt.active {
    background: var(--primary);
    color: #0b0f17;
}

.sd-sort-form {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-on-dark-soft);
    font-size: 0.86rem;
}
.sd-sort-form select {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 7px 28px 7px 12px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.86rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23f59e0b' d='M6 8L0 0h12z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.sd-sort-form select:focus { outline: none; border-color: var(--primary); }
.sd-sort-form select option { background: #131826; color: var(--white); }

.sd-count-info {
    color: var(--text-on-dark-soft);
    font-size: 0.82rem;
}

/* Pagination */
.sd-pagination {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}
.sd-pg {
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-on-dark-soft);
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition);
}
.sd-pg:hover { border-color: var(--primary); color: var(--primary); }
.sd-pg.active {
    background: var(--primary);
    color: #0b0f17;
    border-color: var(--primary);
    font-weight: 700;
}
.sd-pg-gap { color: var(--text-on-dark-soft); padding: 0 4px; }

/* Aktif filtre chipleri */
.sd-active-filters { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.sd-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-soft);
    color: var(--primary);
    border: 1px solid rgba(197,197,197,0.3);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
}
.sd-chip a { color: var(--primary); text-decoration: none; }

/* Ürün Grid */
.sd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}
.sd-grid.is-list {
    grid-template-columns: 1fr;
}
@media (max-width: 1100px) {
    .sd-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 9px; }
}
@media (max-width: 640px) {
    .sd-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.sd-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}
.sd-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border-color: var(--primary);
}

/* ========== Ortak Ürün Kartı Rozetleri (pbadges) ========== */
.pbadges {
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    z-index: 4;
    pointer-events: none;
}
.pbadge {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #ffffff;
    line-height: 1.05;
    border: 1.5px solid #ffffff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
}
/* İndirim — #CF6A00 DAİRE */
.pbadge-sale {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #CF6A00;
    color: #ffffff;
    font-size: 0.58rem;
}
/* Hızlı Teslimat — #CF6A00 PILL */
.pbadge-fast {
    padding: 3px 7px;
    border-radius: 999px;
    background: #CF6A00;
    color: #ffffff;
    font-size: 0.46rem;
    font-weight: 900;
    min-width: 44px;
}
/* En Çok Satan — #CF6A00 DAİRE */
.pbadge-best {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #CF6A00;
    color: #ffffff;
    font-size: 0.44rem;
    font-weight: 900;
    padding: 2px;
}

/* Büyük varyant — ürün detay galerisinde */
.pbadges-lg {
    top: 14px;
    right: 14px;
    gap: 8px;
}
.pbadges-lg .pbadge-sale {
    width: 58px;
    height: 58px;
    font-size: 0.92rem;
}
.pbadges-lg .pbadge-fast {
    padding: 7px 14px;
    font-size: 0.68rem;
    min-width: 78px;
}
.pbadges-lg .pbadge-best {
    width: 66px;
    height: 66px;
    font-size: 0.64rem;
    padding: 5px;
}

@media (max-width: 640px) {
    .pbadges-lg { top: 10px; right: 10px; gap: 6px; }
    .pbadges-lg .pbadge-sale { width: 46px; height: 46px; font-size: 0.76rem; }
    .pbadges-lg .pbadge-fast { padding: 5px 10px; font-size: 0.58rem; min-width: 62px; }
    .pbadges-lg .pbadge-best { width: 52px; height: 52px; font-size: 0.54rem; }
}

.sd-card-img {
    aspect-ratio: 1 / 1;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.sd-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.sd-card:hover .sd-card-img img { transform: scale(1.04); }
.sd-no-img { color: #cbd5e1; font-size: 3rem; }

.sd-card-body {
    padding: 8px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.sd-card-brand {
    font-size: 0.54rem;
    color: #6b7280;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.sd-card-name {
    font-size: 0.78rem;
    color: #111827;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
    min-height: 2.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sd-card-price { display: flex; align-items: baseline; gap: 6px; margin-top: 2px; flex-wrap: wrap; }
.sd-card-price .sd-old {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 0.72rem;
}
.sd-card-price .sd-now {
    color: #e11d48;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}
.sd-card-stock { font-size: 0.68rem; font-weight: 600; margin-top: 1px; }
.sd-stock-in  { color: #000; }
.sd-stock-in i { color: #CF6A00; }
.sd-stock-low { color: #000; }
.sd-stock-out { color: #000; }
.sd-stock-out i { color: #CF6A00; }

/* KDV etiketleri — ürün kartı (sarf-malzemeler) */
.sd-kdv {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    vertical-align: middle;
    white-space: nowrap;
}
.sd-kdv-plus {
    background: rgba(197,197,197,0.12);
    color: #000;
    border: 1px solid rgba(197,197,197,0.3);
}
.sd-kdv-included {
    background: rgba(16,185,129,0.12);
    color: #000;
    border: 1px solid rgba(16,185,129,0.3);
}

/* "Fiyat İçin Arayınız" — ürün detay (urun.php): fiyat alanı yerine */
.pd2-price-hidden {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(234,88,12,0.08), rgba(234,88,12,0.03));
    border: 1.5px dashed rgba(234,88,12,0.45);
    border-radius: 12px;
    color: #c2410c;
    font-weight: 800;
    font-size: 1.15rem;
    margin: 8px 0 4px;
}
.pd2-price-hidden i {
    color: #ea580c;
    font-size: 1.3rem;
}

/* "Fiyat İçin Arayınız" — Sepete Ekle yerine büyük CTA */
.pd2-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #fff !important;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.02rem;
    letter-spacing: 0.02em;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    text-decoration: none !important;
    margin: 8px 0;
    border: 1px solid rgba(21,128,61,0.4);
    box-shadow: 0 4px 14px rgba(22,163,74,0.25);
}
.pd2-btn-call:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
    box-shadow: 0 10px 24px rgba(22,163,74,0.35);
    color: #fff !important;
}
.pd2-btn-call:active { transform: translateY(0); }
.pd2-btn-call i { font-size: 1.1rem; }

/* KDV etiketi — ürün detay (urun.php) */
.pd2-kdv {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-left: 8px;
    vertical-align: middle;
}
.pd2-kdv-plus {
    background: rgba(197,197,197,0.12);
    color: #000;
    border: 1px solid rgba(197,197,197,0.3);
}
.pd2-kdv-included {
    background: rgba(16,185,129,0.12);
    color: #000;
    border: 1px solid rgba(16,185,129,0.3);
}

/* Kampanya geri sayım — ürün kartı (kompakt, dar grid'e sığar) */
.sd-countdown {
    margin: 5px 0 3px;
    padding: 4px 6px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.08), rgba(197,197,197, 0.08));
    border: 1px dashed rgba(230, 57, 70, 0.3);
    border-radius: 5px;
    text-align: center;
    line-height: 1.1;
}
.sd-cd-label {
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--accent-red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 3px;
}
.sd-cd-grid {
    display: flex;
    gap: 2px;
    justify-content: center;
    flex-wrap: nowrap;
}
.sd-cd-box {
    background: #fff;
    border: 1px solid #f1d4c2;
    border-radius: 3px;
    padding: 1px 3px;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
    min-width: 0;
}
.sd-cd-box strong {
    font-size: 0.68rem;
    font-weight: 800;
    color: #111827;
    font-variant-numeric: tabular-nums;
}
.sd-cd-box small {
    font-size: 0.48rem;
    letter-spacing: 0.02em;
    color: #6b7280;
    font-weight: 700;
}
.sd-countdown.is-ended { display: none; }

/* Grid (ızgara) görünümde KDV etiketi + Sepete Ekle/Hemen Al butonları gizlenir.
   Demo ve "Fiyat İçin Arayınız" butonları her iki görünümde de gösterilir. */
.sd-grid:not(.is-list) .sd-kdv,
.sd-grid:not(.is-list) .sd-card-actions { display: none !important; }

/* Ürün kartı aksiyonları — yalnızca ikon, yan yana küçük kareler */
.sd-card-actions {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    justify-content: flex-start;
}
.sd-btn {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    cursor: pointer;
    user-select: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    border: 1px solid transparent;
    box-sizing: border-box;
    padding: 0;
}
.sd-btn i { font-size: 0.88rem; }

.sd-btn-cart {
    background: #ffffff;
    color: #b45309;
    border-color: rgba(197,197,197,0.5);
}
.sd-btn-cart:hover {
    background: rgba(197,197,197,0.08);
    transform: translateY(-1px);
}
.sd-btn-buy {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    border-color: rgba(197,197,197,0.4);
}
.sd-btn-buy:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(197,197,197,0.35);
}
.sd-btn[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; }

/* Kart içinde "Fiyat İçin Arayınız" CTA — hide_price durumunda */
.sd-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    border-radius: 7px;
    font-weight: 700;
    font-size: 0.72rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
    border: 1px solid rgba(197,197,197,0.4);
    cursor: pointer;
    user-select: none;
}
.sd-btn-call:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(197,197,197,0.35);
    color: #fff;
}
.sd-btn-call i { font-size: 0.72rem; }

/* "Demo Talebinde Bulun" butonu — sadece Lazer Kaynak Makineleri kategorisinde */
.sd-demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 6px;
    padding: 5px 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    user-select: none;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
    border: 1px solid rgba(197,197,197,0.4);
    box-sizing: border-box;
    align-self: flex-start;
}
.sd-demo-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(197,197,197, 0.3);
}
.sd-demo-btn:active { transform: translateY(0); }
.sd-demo-btn i { font-size: 0.65rem; }

/* List view */
.sd-grid.is-list .sd-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: stretch;
}
.sd-grid.is-list .sd-card-img { aspect-ratio: auto; height: 100%; }
.sd-grid.is-list .sd-card-body { padding: 18px; }
.sd-grid.is-list .sd-card-name {
    font-size: 1.1rem;
    min-height: auto;
    -webkit-line-clamp: none;
    line-clamp: none;
}

/* Empty */
.sd-empty {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 18px 16px;
    text-align: center;
    color: var(--text-on-dark-soft);
    max-width: 340px;
    margin: 0 auto;
}
.sd-empty i { font-size: 1.5rem; color: rgba(255,255,255,0.2); margin-bottom: 8px; display: block; }
.sd-empty h3 { color: var(--white); margin-bottom: 2px; font-size: 0.95rem; }
.sd-empty p { font-size: 0.8rem; margin-bottom: 0; }

.sd-empty .sd-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #0b0f17;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.78rem;
    margin-top: 10px;
    line-height: 1.2;
    white-space: nowrap;
}
.sd-empty .sd-btn i {
    font-size: 0.75rem;
    margin: 0;
    color: inherit;
}
.sd-empty .sd-btn:hover { background: var(--primary-hover); }

/* Load More */
.sd-loadmore-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.sd-loadmore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 34px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.sd-loadmore:hover {
    background: var(--primary);
    color: #0b0f17;
}
.sd-loadmore:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.sd-loadmore small {
    color: var(--text-on-dark-soft);
    font-size: 0.82rem;
    font-weight: 500;
}
.sd-loadmore:hover small { color: #0b0f17; }
.sd-loadmore .fa-spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 960px) {
    .sd-layout { grid-template-columns: 1fr; }
    .sd-sidebar { position: static; }
    .sd-banners { grid-template-columns: 1fr; }
    .sd-banner { height: 90px; padding: 12px 14px; }
    .sd-toolbar { gap: 10px; }
    .sd-grid.is-list .sd-card { grid-template-columns: 100px 1fr; }
}

/* =============== SHOP (Ürün listeleme + detay) =============== */
.shop-page {
    padding: 130px 0 40px;
    background: #f6f8fb;
    min-height: 80vh;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: 0.7rem; opacity: 0.6; }
.breadcrumb span { color: var(--text-dark); font-weight: 600; }

.shop-title {
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 0 0 4px;
}
.shop-count { color: var(--text-light); font-size: 0.92rem; margin-bottom: 20px; }

.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: start;
}

/* Sidebar (filtreler) */
.shop-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 18px;
    position: sticky;
    top: 140px;
}
.filter-block { margin-bottom: 20px; }
.filter-block:last-child { margin-bottom: 0; }
.filter-block h4 {
    font-size: 0.82rem;
    color: var(--secondary);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list > li { margin-bottom: 2px; }
.filter-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.88rem;
    transition: var(--transition);
}
.filter-list a:hover { background: var(--primary-soft); color: var(--primary-hover); }
.filter-list a.active { background: var(--primary); color: #0b0f17; font-weight: 700; }
.filter-list a.active i { color: #0b0f17; }
.filter-list i { color: var(--primary); width: 16px; }
.filter-sub {
    list-style: none;
    padding: 0;
    margin: 4px 0 8px 20px;
    border-left: 2px solid #e5e7eb;
}
.filter-sub a {
    padding: 6px 10px;
    font-size: 0.84rem;
    color: var(--text-light);
}
.filter-sub a.active { background: transparent; color: var(--primary-hover); font-weight: 700; }

/* Main (sonuç + toolbar) */
.shop-main { min-width: 0; }

.shop-toolbar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px 16px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.active-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-soft);
    color: var(--primary-hover);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}
.chip a { color: var(--primary-hover); text-decoration: none; }
.sort-form { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-light); }
.sort-form select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.88rem;
    background: #fff;
    cursor: pointer;
}

/* Ürün grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 18px;
}
.product-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1px solid #eceff4;
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
    border-color: var(--primary);
}
.product-card-img {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f3f4f6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; padding: 0; display: block; }
.product-card-img .no-img {
    color: #cbd5e1;
    font-size: 3rem;
}
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e63946;
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.discount-badge.large { padding: 6px 14px; font-size: 0.88rem; }
.bestseller-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.8);
    color: #C5C5C5;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
}
.bestseller-badge.large { padding: 6px 14px; font-size: 0.85rem; }
.bestseller-badge i { margin-right: 4px; }

.product-card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.product-brand {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.product-name {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 4px;
}
.product-price .price-old {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.82rem;
}
.product-price .price-now {
    color: var(--primary-hover);
    font-weight: 700;
    font-size: 1.05rem;
}
.stock-info {
    font-size: 0.78rem;
    margin-top: 2px;
    font-weight: 600;
}
.stock-info.in  { color: #16a34a; }
.stock-info.low { color: #a8a8a8; }
.stock-info.out { color: #dc2626; }

/* Empty state */
.empty-state {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    color: var(--text-light);
    box-shadow: var(--shadow);
    max-width: 420px;
    margin: 0 auto;
}
.empty-state i { font-size: 2.2rem; color: #cbd5e1; margin-bottom: 10px; }
.empty-state h3 { color: var(--secondary); font-size: 1.05rem; margin-bottom: 4px; }
.empty-state p { font-size: 0.85rem; margin-bottom: 14px; }
.empty-state .btn { padding: 8px 14px; font-size: 0.85rem; }
.empty-state .btn i { font-size: 0.95rem; margin-bottom: 0; color: inherit; }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.pg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}
.pg-btn:hover { border-color: var(--primary); color: var(--primary); }
.pg-btn.active {
    background: var(--primary);
    color: #0b0f17;
    border-color: var(--primary);
}
.pg-gap { display: inline-flex; align-items: center; padding: 0 4px; color: var(--text-light); }

/* ========== ÜRÜN DETAY (koyu tema) ========== */
.pd-dark .product-detail {
    background: transparent;
    box-shadow: none;
    padding: 0;
}
.pd-dark .pd-title { color: var(--white); }
.pd-dark .pd-meta-line { color: var(--text-on-dark-soft); }
.pd-dark .pd-meta-line a { color: var(--primary); }
.pd-dark .pd-price-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}
.pd-dark .pd-old-price { color: rgba(255,255,255,0.4); }
.pd-dark .pd-price { color: var(--primary); }
.pd-dark .pd-features {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}
.pd-dark .pd-feature { color: var(--text-on-dark); }
.pd-dark .pd-description {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: none;
}
.pd-dark .pd-description h2,
.pd-dark .related-section h2 { color: var(--white); }
.pd-dark .pd-description-body { color: var(--text-on-dark-soft); }
.pd-dark .breadcrumb a { color: var(--text-on-dark-soft); }
.pd-dark .breadcrumb span { color: var(--white); }

/* TCMB satırı galeri altında */
.pd-rate-line {
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(197,197,197,0.08);
    border: 1px solid rgba(197,197,197,0.25);
    border-radius: 8px;
    color: var(--text-on-dark-soft);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pd-rate-line i { color: var(--primary); }
.pd-rate-line strong { color: var(--white); font-weight: 700; }

/* Galeri */
.pd-gallery {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px;
}
.pd-g-stage {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.pd-g-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pd-g-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.pd-g-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Rozetler */
.pd-g-badge {
    position: absolute;
    top: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    z-index: 3;
    letter-spacing: 0.04em;
}
.pd-g-sale { left: 14px; background: #e11d48; color: #fff; }
.pd-g-best { right: 14px; background: #0b0f17; color: #C5C5C5; border: 1px solid rgba(255,255,255,0.1); }
.pd-g-best i { margin-right: 4px; }

/* Oklar */
.pd-g-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(11,15,23,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 4;
}
.pd-g-arrow:hover {
    background: var(--primary);
    color: #0b0f17;
    border-color: var(--primary);
}
.pd-g-prev { left: 12px; }
.pd-g-next { right: 12px; }

.pd-g-counter {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11,15,23,0.75);
    color: #fff;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    z-index: 3;
}

/* Thumbnail şeridi */
.pd-g-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.pd-g-thumb {
    width: 64px;
    height: 64px;
    background: #fff;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}
.pd-g-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pd-g-thumb:hover { border-color: rgba(197,197,197,0.5); transform: translateY(-2px); }
.pd-g-thumb.is-active { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(197,197,197,0.25); }

/* Boş galeri */
.pd-gallery-empty {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 14px;
}

/* ========== PEEK / COVERFLOW CAROUSEL ========== */
.pd-carousel {
    position: relative;
    width: 100%;
    user-select: none;
}

/* Rozet konumları (carousel içinde) */
.pd-carousel .pd-g-badge {
    z-index: 10;
    top: 12px;
}
.pd-carousel .pd-g-sale { left: calc(13% + 12px); }
.pd-carousel .pd-g-best { right: calc(13% + 12px); }

/* Viewport: overflow hidden ile yan slaytlar kesilir */
.pd-c-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
    /* aspect-ratio ile sabit yükseklik sağlanır */
    aspect-ratio: 1 / 1;
}

/* Track: flex container — JS transform ile kayar */
.pd-c-track {
    display: flex;
    align-items: stretch;
    height: 100%;
    will-change: transform;
}

/* Her slayt — genişlik JS tarafından ayarlanır */
.pd-c-slide {
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    height: 100%;
    background: #fff;
    /* Pasif slaytlar loş ve küçük */
    opacity: 0.45;
    transform: scale(0.92);
    filter: brightness(0.65);
    transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
}
.pd-c-slide.is-active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
    cursor: default;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.pd-c-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Ok butonları (viewport içinde, merkez slaytta) */
.pd-c-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(11,15,23,0.72);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
    z-index: 8;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.pd-c-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #0b0f17;
}
.pd-c-prev { left: calc(13% + 14px); }
.pd-c-next { right: calc(13% + 14px); }

/* Sayaç */
.pd-c-counter {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11,15,23,0.75);
    color: #fff;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    z-index: 8;
    letter-spacing: 0.04em;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Thumbnail şeridi */
.pd-c-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding: 4px 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.pd-c-thumbs::-webkit-scrollbar { display: none; }

.pd-c-thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.1);
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0.55;
}
.pd-c-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pd-c-thumb:hover {
    border-color: rgba(197,197,197,0.6);
    opacity: 0.85;
    transform: translateY(-2px);
}
.pd-c-thumb.is-active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(197,197,197,0.25);
    opacity: 1;
}

/* pd-media grid sütununda taşmayı engelle */
.pd-media {
    min-width: 0;
    overflow: hidden;
}

/* ========== ÜRÜN GALERİSİ (Swiper — sabit alan, düz peek) ========== */
.pd-swiper-wrap {
    position: relative;
    width: 100%;
}

/* Ana galeri — sabit alan; slaytlar viewport genişliğine göre peek eder */
.pd-swiper {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 640px;
    overflow: hidden;
    background: #e5e7eb;
    position: relative;
    border-radius: 6px;
}

/* Aktif slayt tam alanı doldurur — peek yok */
.pd-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.pd-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}

/* Stokta Yok overlay — galeri üzerinde */
.pd-stock-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: grayscale(0.4) blur(0.5px);
    -webkit-backdrop-filter: grayscale(0.4) blur(0.5px);
    border-radius: 6px;
}
.pd-stock-overlay-badge {
    transform: rotate(-6deg);
    padding: 14px 32px;
    background: #dc2626;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 3px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Ok butonları — aktif slaytın tam sol/sağ kenarında (şablondaki siyah kare) */
.pd-sw-btn {
    position: absolute;
    top: 50%;
    margin-top: -22px;
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: #242424;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s, opacity .2s;
    z-index: 5;
    font-size: 16px;
    padding: 0;
}
.pd-sw-btn:hover {
    background: #000000;
    color: #c69c6d;
}
.pd-sw-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
/* Aktif slayt %74 genişlikte, kenar payı %13; butonlar o kenarlarda oturur */
.pd-sw-prev { left: calc(13% - 44px); }
.pd-sw-next { right: calc(13% - 44px); }

/* Sayaç — ana görselin alt merkezinde */
.pd-sw-counter {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(17,24,39,0.85);
    color: #fff;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    z-index: 5;
    letter-spacing: 0.04em;
}

/* Thumbnail şeridi — ana görselin altında, aynı genişlikte (%74) sola yaslı */
.pd-swiper-thumbs {
    margin-top: 14px;
    padding: 4px 2px;
    background: transparent;
    width: 100%;
    margin-left: 0;
}
.pd-swiper-thumbs .swiper-wrapper {
    align-items: center;
    justify-content: flex-start;
}
.pd-swiper-thumbs .swiper-slide {
    width: 78px;
    height: 78px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: opacity .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.pd-swiper-thumbs .swiper-slide:hover {
    opacity: 0.95;
    border-color: #cbd5e1;
}
.pd-swiper-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
    border-radius: 7px;
}
.pd-swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #1d3557;
    box-shadow: 0 0 0 1px #1d3557, 0 4px 10px -3px rgba(29, 53, 87, 0.25);
}

/* PDF Katalog kartları (galerinin altı) */
.pd-catalogs {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 6px;
}
.pd-catalog-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-decoration: none;
    color: #1e293b;
    transition: all .15s ease;
    box-shadow: 0 1px 2px rgba(15,23,42,0.03);
    min-height: 38px;
}
.pd-catalog-card:hover {
    border-color: #1d3557;
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px -3px rgba(29, 53, 87, 0.18);
    color: #1e293b;
}
.pd-catalog-icon {
    width: 22px; height: 22px;
    border-radius: 5px;
    background: rgba(29, 53, 87, 0.08);
    color: #1d3557;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem;
    flex-shrink: 0;
}
.pd-catalog-card:hover .pd-catalog-icon {
    background: #1d3557;
    color: #fff;
}
/* Oto ürün kataloğu kartı — kırmızı vurgu (yüklenen PDF'lerden ayrışsın) */
.pd-autocatalog-icon { background: rgba(220, 38, 38, 0.10); color: #dc2626; }
.pd-catalog-card:hover .pd-autocatalog-icon { background: #dc2626; color: #fff; }
.pd-catalog-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.1;
}
.pd-catalog-title {
    font-size: 0.74rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pd-catalog-meta {
    font-size: 0.62rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 1px;
}
.pd-catalog-meta i { font-size: 0.55rem; margin: 0 1px 0 2px; color: #94a3b8; }
.pd-catalog-card:hover .pd-catalog-meta i { color: #1d3557; }

/* Video kartı (kataloglarla aynı satırda) */
.pd-video-card {
    border: none;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    width: 100%;
}
.pd-video-icon {
    position: relative;
    overflow: hidden;
    background: #1d3557 !important;
    color: #fff !important;
}
.pd-video-icon img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.55;
}
.pd-video-icon i.fa-play,
.pd-video-icon i.fa-circle-play {
    position: relative; z-index: 1;
    font-size: 0.78rem;
}
.pd-video-card:hover .pd-video-icon { background: #11223c !important; }
.pd-video-card:hover .pd-video-icon img { opacity: 0.35; }

/* Video modalı */
.pd-video-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
    display: none; align-items: center; justify-content: center;
    z-index: 10000; padding: 20px;
}
.pd-video-overlay.is-open { display: flex; }
.pd-video-modal {
    position: relative;
    width: 100%; max-width: 920px;
    background: #000; border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px -10px rgba(0,0,0,0.6);
}
.pd-video-close {
    position: absolute; top: -42px; right: 0;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none; border-radius: 50%;
    cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
}
.pd-video-close:hover { background: rgba(255,255,255,0.3); }
.pd-video-frame {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    background: #000;
}
.pd-video-frame iframe,
.pd-video-frame video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
}

@media (max-width: 575px) {
    .pd-catalogs { grid-template-columns: repeat(2, 1fr); }
    .pd-video-close { top: -36px; width: 32px; height: 32px; }
}
.pd-swiper-thumbs .swiper-slide:not(.swiper-slide-thumb-active):hover {
    opacity: 0.85;
}

/* Rozetler — aktif slaytın köşelerinde */
.pd-swiper-wrap .pd-g-badge {
    position: absolute;
    top: 14px;
    z-index: 6;
}
.pd-swiper-wrap .pd-g-sale { left: calc(13% + 12px); }
.pd-swiper-wrap .pd-g-best { left: auto; right: calc(13% + 12px); }

@media (max-width: 1024px) {
    .pd-swiper { aspect-ratio: 1 / 1; }
    .pd-swiper-thumbs .swiper-slide { width: 68px; height: 68px; }
}
@media (max-width: 820px) {
    .pd-swiper { aspect-ratio: 1 / 1; }
}
@media (max-width: 640px) {
    .pd-swiper .swiper-slide { width: 86%; }
    .pd-swiper .swiper-slide::after { opacity: 0.25; }
    .pd-sw-prev { left: 0; }
    .pd-sw-next { right: 0; }
    .pd-swiper-thumbs .swiper-slide { width: 60px; height: 60px; border-radius: 6px; }
    .pd-swiper-thumbs .swiper-slide img { border-radius: 5px; }
    .pd-swiper-wrap .pd-g-sale { left: 10px; }
    .pd-swiper-wrap .pd-g-best { right: 10px; }
}

/* ========== ÜRÜN BİLGİ PANELİ V2 ========== */
.pd-info-v2 {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 6px 0 0;
    min-width: 0;
}

/* Fiyat satırı */
.pd2-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 6px;
}
.pd2-orig {
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 500;
}
.pd2-curr {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}
.pd2-disc {
    background: rgba(34,197,94,0.15);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.3);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

/* TL karşılığı */
.pd2-try {
    font-size: 0.82rem;
    color: var(--text-on-dark-soft);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}
.pd2-try i { color: var(--primary); font-size: 0.78rem; }
.pd2-try strong { color: var(--white); }
.pd2-try span { opacity: 0.7; font-size: 0.78rem; }

/* Stok + SKU satırı */
.pd2-meta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.pd2-stk {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
}
.pd2-stk-in  { background: rgba(34,197,94,0.12);  color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.pd2-stk-low { background: rgba(197,197,197,0.12); color: #C5C5C5; border: 1px solid rgba(197,197,197,0.25); }
.pd2-stk-out { background: rgba(239,68,68,0.12);  color: #f87171; border: 1px solid rgba(239,68,68,0.25); }
.pd2-sku { font-size: 0.82rem; color: var(--text-on-dark-soft); }
.pd2-sku strong { color: var(--text-on-dark); }

/* Kategori */
.pd2-cat {
    font-size: 0.82rem;
    color: var(--text-on-dark-soft);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.pd2-cat i { color: var(--primary); font-size: 0.72rem; }
.pd2-cat a { color: var(--primary); text-decoration: none; transition: .2s; }
.pd2-cat a:hover { text-decoration: underline; }

/* Ayırıcı */
.pd2-hr {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 14px 0;
}

/* Adet + Sepete Ekle */
.pd2-cart-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.pd2-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.pd2-qty-lbl {
    font-size: 0.88rem;
    color: var(--text-on-dark-soft);
    font-weight: 600;
}
.pd2-qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}
.pd2-qty-btn {
    width: 36px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--text-on-dark);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.pd2-qty-btn:hover { background: var(--primary); color: #0b0f17; }
.pd2-qty-input {
    width: 44px;
    height: 40px;
    border: 0;
    border-left: 1px solid rgba(255,255,255,0.12);
    border-right: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: var(--white);
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: inherit;
}
.pd2-qty-input:focus { outline: none; background: rgba(197,197,197,0.08); }
.pd2-qty-input::-webkit-outer-spin-button,
.pd2-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pd2-btn-cart {
    flex: 1;
    min-width: 160px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: #ffffff;
    border: 0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background .25s, transform .2s, box-shadow .2s;
    font-family: inherit;
    letter-spacing: 0.02em;
}
.pd2-btn-cart:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,0.35); }
.pd2-btn-cart:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

/* Ana aksiyon satırı: Sepete Ekle + Demo Talebi (yan yana) */
.pd2-action-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 10px;
}
.pd2-action-row .pd2-btn-cart { flex: 1 1 0; min-width: 150px; height: 48px; margin: 0; }
.pd2-btn-demo {
    flex: 1 1 0;
    min-width: 150px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1e293b;
    color: #ffffff;
    border: 0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition: background .25s, transform .2s, box-shadow .2s;
}
.pd2-btn-demo:hover { background: #0f172a; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(15,23,42,0.3); }
.pd2-btn-demo i { font-size: 0.9rem; }

/* WhatsApp (ikon) + Telefon satırı */
.pd2-contact-row {
    display: flex !important;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 18px;
    width: 100%;
}
.pd2-contact-row .pd2-btn-phone,
.pd2-contact-row .pd2-btn-call-sm {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0 !important;
    padding: 10px 12px !important;
    font-size: 0.82rem !important;
    border-radius: 10px;
    gap: 6px !important;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pd2-contact-row .pd2-btn-phone i,
.pd2-contact-row .pd2-btn-call-sm i { font-size: 0.9rem !important; }
/* Mesajlaşma ikonları — WhatsApp / Telegram / Signal (HEPSİ eşit boyut: 44x44) */
.pd2-msg-btn {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid transparent;
    text-decoration: none;
    transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}
.pd2-msg-btn i { font-size: 20px; line-height: 1; }
.pd2-msg-btn svg { width: 20px; height: 20px; display: block; }
.pd2-msg-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 14px rgba(15,23,42,.12); }
.pd2-msg-wa { color: #25D366; background: rgba(37,211,102,.10); border-color: rgba(37,211,102,.30); }
.pd2-msg-wa:hover { background: #25D366; color: #fff; }
.pd2-msg-tg { color: #229ED9; background: rgba(34,158,217,.10); border-color: rgba(34,158,217,.30); }
.pd2-msg-tg:hover { background: #229ED9; color: #fff; }
.pd2-msg-sg { color: #3A76F0; background: rgba(58,118,240,.10); border-color: rgba(58,118,240,.30); }
.pd2-msg-sg:hover { background: #3A76F0; color: #fff; }
/* Arama butonu — küçült (4'ü o satıra sığsın) */
.pd2-contact-row .pd2-btn-phone-sm {
    flex: 1 1 auto;
    min-width: 0;
    height: 44px;
    padding: 0 12px !important;
    font-size: 0.8rem !important;
    gap: 6px !important;
}
.pd2-contact-row .pd2-btn-phone-sm i { font-size: 0.85rem !important; }

/* WhatsApp butonu — şeffaf */
.pd2-btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 16px;
    background: transparent;
    border: 1px solid rgba(37,211,102,0.22);
    color: #4ade80;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    margin-bottom: 0;
}
.pd2-btn-wa:hover {
    background: transparent;
    border-color: rgba(37,211,102,0.22);
    color: #4ade80;
    transform: none;
    box-shadow: none;
}
.pd2-btn-wa i { font-size: 1.1rem; }

/* Accordion */
.pd2-accordion { border-top: 1px solid rgba(255,255,255,0.08); }

.pd2-acc-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pd2-acc-trig {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    background: transparent;
    border: 0;
    color: var(--text-on-dark);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    font-family: inherit;
    transition: color .2s;
    text-align: left;
}
.pd2-acc-trig:hover { color: var(--primary); }
.pd2-acc-item.is-open .pd2-acc-trig { color: var(--primary); }
.pd2-acc-icon {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
    transition: transform .3s;
    flex-shrink: 0;
}
.pd2-acc-inner {
    color: var(--text-on-dark-soft);
    font-size: 0.88rem;
    line-height: 1.7;
}
.pd2-acc-inner p { margin: 0 0 6px; }
.pd2-acc-inner p:last-child { margin-bottom: 0; }

/* Özellikler listesi */
.pd2-feat-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pd2-feat-list > div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-on-dark-soft);
}
.pd2-feat-list > div i { color: var(--primary); width: 18px; text-align: center; flex-shrink: 0; }

/* Paylaşım */
.pd2-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 4px;
}
.pd2-share-lbl {
    font-size: 0.82rem;
    color: var(--text-on-dark-soft);
    margin-right: 2px;
}
.pd2-share-btn {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform .2s, opacity .2s;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-on-dark);
}
.pd2-share-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.pd2-fb:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.pd2-tw:hover { background: #000; border-color: #333; color: #fff; }
.pd2-wa:hover { background: #25d366; border-color: #25d366; color: #fff; }
.pd2-pi:hover { background: #e60023; border-color: #e60023; color: #fff; }

@media (max-width: 960px) {
    .pd2-cart-row { flex-direction: column; align-items: stretch; }
    .pd2-btn-cart { width: 100%; }
    .pd2-qty { justify-content: space-between; }
}

/* ========== ÜRÜN DETAY (açık/light tema) ========== */
.pd-light .product-detail {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: start;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
}

.pd-light .pd-media {
    position: relative;
    min-width: 0;
    overflow: visible;
}

.pd-light .pd-info-v2 {
    position: relative;
    width: 100%;
}

@media (max-width: 1024px) {
    .pd-light .product-detail { grid-template-columns: 1.2fr 1fr; }
}
@media (max-width: 820px) {
    .pd-light .product-detail { grid-template-columns: 1fr; gap: 20px; }
}

/* Breadcrumb — gri arka planda siyah yazı */
.shop-light-page .breadcrumb { color: #6b7280; }
.shop-light-page .breadcrumb a { color: #6b7280; }
.shop-light-page .breadcrumb a:hover { color: var(--primary); }
.shop-light-page .breadcrumb span { color: #111827; font-weight: 600; }
.shop-light-page .breadcrumb i { color: #9ca3af; }

/* Galeri alanı açık tonlar */
.pd-light .pd-c-viewport {
    background: #f3f4f6;
}
.pd-light .pd-c-slide {
    background: #e5e7eb;
}
.pd-light .pd-c-slide.is-active {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.pd-light .pd-c-btn {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.08);
    color: #111827;
}
.pd-light .pd-c-btn:hover {
    background: #111827;
    color: #fff;
    border-color: #111827;
}
.pd-light .pd-c-counter {
    background: rgba(17,24,39,0.78);
    color: #fff;
}
.pd-light .pd-c-thumb {
    background: #f3f4f6;
    border: 2px solid transparent;
    opacity: 0.75;
}
.pd-light .pd-c-thumb:hover { opacity: 1; border-color: rgba(0,0,0,0.1); }
.pd-light .pd-c-thumb.is-active {
    border-color: #111827;
    box-shadow: 0 0 0 2px rgba(17,24,39,0.12);
    opacity: 1;
}
.pd-light .pd-rate-line {
    background: rgba(197,197,197,0.08);
    border: 1px solid rgba(197,197,197,0.25);
    color: var(--text-on-dark-soft);
}
.pd-light .pd-rate-line i { color: var(--primary); }
.pd-light .pd-rate-line strong { color: var(--white); }

/* Ürün bilgi kartı — şablondaki .product-info-cell stili */
.pd-light .pd-info-v2 {
    background: #ffffff;
    border: 0;
    border-radius: 0;
    padding: 35px;
    box-shadow: 0 1px 3px rgba(5,5,5,0.1);
    gap: 0;
}

.pd-light .pd-brand {
    background: #f3f4f6;
    color: #242424;
    align-self: flex-start;
    margin-bottom: 14px;
    border-radius: 0;
}
.pd-light .pd-title {
    color: #000000;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: none; /* μ, mm, kW gibi birimler bozulmasın diye uppercase kapalı */
    margin: 0 0 14px;
    padding-bottom: 2px;
}

/* Fiyat */
.pd-light .pd2-price-row {
    margin: 0 0 8px;
    align-items: baseline;
    gap: 12px;
}
.pd-light .pd2-orig {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: line-through;
}
.pd-light .pd2-curr {
    color: #f5003a;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.pd-light .pd2-disc {
    background: #fee2e2;
    color: #b91c1c;
    border: 0;
    font-weight: 700;
}

/* Yıldız derecelendirme — şablondaki altın/bej tonu */
.pd-light .pd2-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #c69c6d;
    font-size: 0.82rem;
    margin: 4px 0 14px;
}

/* TL karşılığı */
.pd-light .pd2-try {
    color: #6b7280;
    margin-bottom: 14px;
}
.pd-light .pd2-try i { color: #9ca3af; }
.pd-light .pd2-try strong { color: #111827; }
.pd-light .pd2-try span { color: #9ca3af; }

/* Stok + SKU satırı — şablondaki dotted ayıraç */
.pd-light .pd2-meta-row {
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px dotted #cacaca;
    margin-bottom: 18px;
}
.pd-light .pd2-stk {
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 0.88rem;
}
.pd-light .pd2-stk strong { font-weight: 700; }
.pd-light .pd2-stk-in  { color: #000; }
.pd-light .pd2-stk-low { color: #000; }
.pd-light .pd2-stk-out { color: #000; }
.pd-light .pd2-sku { color: #6b7280; font-size: 0.86rem; }

/* Kategori */
.pd-light .pd2-cat {
    color: #6b7280;
    margin-bottom: 22px;
}
.pd-light .pd2-cat i { color: #9ca3af; }
.pd-light .pd2-cat a { color: #111827; font-weight: 600; }
.pd-light .pd2-cat a:hover { color: var(--primary); }

/* Ayırıcı */
.pd-light .pd2-hr {
    background: #eef0f3;
    margin: 18px 0;
}

/* Adet + Sepete Ekle */
.pd-light .pd2-cart-row { gap: 14px; }
.pd-light .pd2-qty-lbl { color: #374151; }
.pd-light .pd2-qty-ctrl {
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
}
.pd-light .pd2-qty-btn {
    color: #111827;
}
.pd-light .pd2-qty-btn:hover { background: #111827; color: #fff; }
.pd-light .pd2-qty-input {
    color: #111827;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
}
.pd-light .pd2-qty-input:focus { background: #f9fafb; }

/* SEPETE EKLE — şablondaki .btn-cool.btn-lg davranışı */
.pd-light .pd2-btn-cart {
    background: #111827;
    color: #ffffff;
    border: 1px solid #111827;
    border-radius: 0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.92rem;
    height: 48px;
    padding: 0 22px;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.pd-light .pd2-btn-cart:hover {
    background: #242424;
    border-color: #242424;
    color: #c69c6d;
    transform: none;
    box-shadow: none;
}
.pd-light .pd2-btn-cart i { color: inherit; }

/* WhatsApp butonu — light tema şeffaf */
.pd-light .pd2-btn-wa {
    background: transparent;
    border-color: rgba(34,197,94,0.25);
    color: #15803d;
    margin-bottom: 10px;
}
.pd-light .pd2-btn-wa:hover {
    background: transparent;
    border-color: rgba(34,197,94,0.25);
    color: #15803d;
    transform: none;
    box-shadow: none;
}

/* Telefon butonu — şeffaf */
.pd2-btn-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 16px;
    background: transparent;
    border: 1px solid rgba(17,24,39,0.12);
    color: #111827;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}
.pd2-btn-phone i { color: var(--primary); font-size: 1rem; }
.pd2-btn-phone:hover {
    background: transparent;
    border-color: rgba(17,24,39,0.12);
    color: #111827;
    transform: none;
    box-shadow: none;
}
.pd2-btn-phone:hover i { color: var(--primary); }

/* Accordion — şablondaki .accordion-simple: üstten noktalı çizgi, büyük +/- */
.pd-light .pd2-accordion { border-top: 0; }
.pd-light .pd2-acc-item { border-bottom: 0; }
.pd-light .pd2-acc-trig {
    color: #242424;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 22px 0 20px;
    font-size: 0.98rem;
    border-top: 1px dotted #cacaca;
    text-transform: uppercase;
}
.pd-light .pd2-acc-item:first-child .pd2-acc-trig { border-top: 0; }
.pd-light .pd2-acc-trig:hover { color: #242424; }
.pd-light .pd2-acc-item.is-open .pd2-acc-trig { color: #242424; }
.pd-light .pd2-acc-icon {
    color: #242424;
    font-size: 1.54em;
    font-weight: 400;
    line-height: 1;
}
.pd-light .pd2-acc-inner {
    color: #626262;
    font-size: 0.92rem;
    padding-bottom: 10px;
}
.pd-light .pd2-feat-list > div {
    color: #626262;
}
.pd-light .pd2-feat-list > div i { color: #c69c6d; }

/* Paylaşım butonları — şablondaki .socials a: 34x32 kare, hover siyah+altın */
.pd-light .pd2-share {
    padding-top: 6px;
    gap: 5px;
    align-items: center;
}
.pd-light .pd2-share-lbl {
    color: #242424;
    font-size: 0.92rem;
    margin-right: 10px;
    font-weight: 400;
}
.pd-light .pd2-share-btn {
    width: 34px;
    height: 32px;
    border-radius: 0;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    color: #626262;
    font-size: 0.82rem;
    transition: background .2s, color .2s, border-color .2s;
}
.pd-light .pd2-share-btn:hover {
    background: #242424;
    border-color: #242424;
    color: #c69c6d;
    transform: none;
}
/* Şablonda her ikona aynı hover — marka renklerinden vazgeçiyoruz */
.pd-light .pd2-fb:hover,
.pd-light .pd2-tw:hover,
.pd-light .pd2-wa:hover,
.pd-light .pd2-pi:hover {
    background: #242424;
    border-color: #242424;
    color: #c69c6d;
}

/* Benzer ürünler ve Yeni Ürünler başlığı — açık sayfada siyah */
.shop-light-page .related-section h2 { color: #111827; }
.shop-light-page .np-title { color: #111827; }
.shop-light-page .np-head { border-bottom-color: #e5e7eb; }
.shop-light-page .np-nav-btn {
    background: #ffffff;
    border-color: #e5e7eb;
    color: #374151;
}
.shop-light-page .np-nav-btn:hover {
    background: #111827;
    border-color: #111827;
    color: #ffffff;
}
.shop-light-page .empty-state { color: #374151; }
.shop-light-page .empty-state h3 { color: #111827; }
.shop-light-page .empty-state i { color: #9ca3af; }

@media (max-width: 960px) {
    .pd-light .product-detail { grid-template-columns: 1fr; gap: 24px; }
    .pd-light .pd-info-v2 { padding: 22px 20px; }
}

/* Ürün detay */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.pd-main-img {
    position: relative;
    background: #f3f4f6;
    border-radius: var(--radius-lg);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pd-main-img img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 5%; }
.no-img-large { color: #cbd5e1; font-size: 6rem; }

.pd-brand {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary-hover);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 12px;
    line-height: 1.4;
}
.pd-brand a { font-size: inherit; color: inherit; text-decoration: none; }
.pd-brand a:hover { text-decoration: underline; }
.pd-title {
    font-size: 1.35rem;
    color: var(--secondary);
    margin: 0 0 12px;
    line-height: 1.3;
}
.pd-meta-line {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-bottom: 6px;
}
.pd-meta-line a { color: var(--primary-hover); text-decoration: none; }
.pd-meta-line a:hover { text-decoration: underline; }

.pd-price-box {
    background: #fafbfc;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    margin: 18px 0;
}
.pd-old-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.pd-price {
    color: var(--primary-hover);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.pd-save {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 8px;
}

.pd-stock {
    padding: 12px 14px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pd-stock.in  { background: #dcfce7; color: #166534; }
.pd-stock.low { background: #fef3c7; color: #92400e; }
.pd-stock.out { background: #fee2e2; color: #991b1b; }

.pd-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}
.pd-actions .btn { padding: 14px 20px; font-size: 0.95rem; justify-content: center; }
.btn-cart:disabled { opacity: 0.5; cursor: not-allowed; }

.pd-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
    background: #fafbfc;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.pd-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-dark);
}
.pd-feature i { color: var(--primary); width: 22px; text-align: center; }

.pd-description {
    background: var(--white);
    padding: 24px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}
.pd-description h2 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin: 0 0 14px;
}
.pd-description-body { color: var(--text-dark); line-height: 1.7; }

.related-section { margin-bottom: 30px; }
.related-section h2 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin: 0 0 16px;
}

/* ========== YENİ ÜRÜNLER (yatay slider) ========== */
.new-products-section {
    margin: 40px 0 60px;
}
.np-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.np-title {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.np-nav {
    display: flex;
    gap: 8px;
}
.np-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-on-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: background .2s, border-color .2s, color .2s, opacity .2s;
}
.np-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #0b0f17;
}
.np-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.np-swiper {
    overflow: hidden;
    padding: 4px 2px 8px;
}
.np-swiper .swiper-slide {
    height: auto;
}
.np-swiper .product-card,
.np-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.np-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.np-card .product-card-img {
    aspect-ratio: 1 / 1;
    background: #f3f4f6;
    width: 100%;
}
.np-card .product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.np-card .product-card-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.np-card .product-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: #111827;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 1.3;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.np-card .product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 2px;
}
.np-card .price-now {
    color: #f5003a;
    font-weight: 700;
    font-size: 1rem;
}
.np-card .price-old {
    color: #6b7280;
    text-decoration: line-through;
    font-size: 0.85rem;
    font-weight: 500;
}
.np-stars {
    display: flex;
    gap: 2px;
    color: #c69c6d;
    font-size: 0.72rem;
    margin-top: 4px;
}

/* Eski np-badge/pc-badge class'ları kaldırıldı — hepsi .pbadges/.pbadge kullanıyor */

@media (max-width: 560px) {
    .np-title { font-size: 1.15rem; }
    .np-card .product-name { font-size: 0.82rem; }
}

/* Marka hero */
.brand-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 22px 26px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.brand-hero-logo {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
}
.brand-hero-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-hero-text h1 { color: var(--secondary); font-size: 1.6rem; margin: 0 0 4px; }
.brand-hero-text p { color: var(--text-light); margin: 0; }

@media (max-width: 960px) {
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .product-detail { grid-template-columns: 1fr; padding: 20px; gap: 22px; }
    .pd-title { font-size: 1.05rem; }
    .pd-price { font-size: 1.4rem; }
    .pd-actions { grid-template-columns: 1fr; }
}

/* =============== MÜŞTERİ PANELİ =============== */
/* ============ MÜŞTERİ PANELİ — MODERN TASARIM ============ */
.panel-layout {
    background: #f6f8fb;
    padding: 28px 0 60px;
    min-height: calc(100vh - 200px);
}
.panel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.panel-container .breadcrumb {
    margin-bottom: 18px;
    font-size: 0.86rem;
}

.cust-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
    align-items: start;
}

/* Sol Sidebar — temiz, modern */
.cust-sidebar {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04);
    overflow: hidden;
    position: sticky;
    top: 130px;
}
.cust-sidebar-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 16px 14px;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
    color: #0f172a;
}
.cust-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1d3557 0%, #16304b 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(29,53,87,0.2);
}
.cust-sidebar-head > div { min-width: 0; flex: 1; }
.cust-sidebar-head small {
    color: #94a3b8;
    font-size: 0.72rem;
    display: block;
    line-height: 1.2;
    margin-bottom: 2px;
}
.cust-sidebar-head strong {
    display: block;
    font-weight: 700;
    color: #0f172a;
    font-size: 0.88rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cust-nav { list-style: none; padding: 8px; margin: 0; }
.cust-nav > li { margin-bottom: 1px; }
.cust-nav > li > a,
.cust-nav > li > .cust-nav-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 9px 12px;
    color: #475569;
    text-decoration: none;
    background: transparent;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 500;
    transition: background .15s, color .15s;
    position: relative;
}
.cust-nav > li > a i,
.cust-nav-toggle i {
    margin-right: 10px;
    width: 18px;
    text-align: center;
    color: #94a3b8;
    font-size: 1rem;
    transition: color .15s;
}
.cust-nav > li > a:hover,
.cust-nav-toggle:hover {
    background: #f8fafc;
    color: #0f172a;
}
.cust-nav > li > a:hover i,
.cust-nav-toggle:hover i { color: #1d3557; }
.cust-nav > li > a.active {
    background: #e8eef5;
    color: #1d3557;
    font-weight: 600;
}
.cust-nav > li > a.active i { color: #1d3557; }
.cust-nav > li > a.active::before {
    content: '';
    position: absolute;
    left: -8px; top: 50%;
    transform: translateY(-50%);
    width: 3px; height: 22px;
    background: #1d3557;
    border-radius: 0 3px 3px 0;
}
.cust-logout { color: #dc2626 !important; }
.cust-logout i { color: #dc2626 !important; }
.cust-logout:hover { background: #fef2f2 !important; }

/* Grup */
.cust-nav-toggle { justify-content: space-between; }
.cust-nav-toggle > span { display: inline-flex; align-items: center; }
.cust-caret {
    transition: transform 0.2s ease;
    font-size: 0.65rem;
    opacity: 0.6;
    margin: 0 !important;
    width: auto !important;
    color: #94a3b8 !important;
}
.cust-nav-group.is-open .cust-caret { transform: rotate(180deg); }
.cust-nav-sub {
    list-style: none; padding: 0; margin: 4px 0 0;
    max-height: 0; overflow: hidden;
    background: transparent;
    transition: max-height 0.3s ease;
}
.cust-nav-group.is-open .cust-nav-sub { max-height: 400px; }
.cust-nav-sub li a {
    display: block;
    padding: 7px 12px 7px 40px;
    color: #64748b;
    text-decoration: none;
    font-size: 0.82rem;
    border-radius: 6px;
    margin-bottom: 1px;
    transition: 0.15s;
    position: relative;
}
.cust-nav-sub li a::before {
    content: '';
    position: absolute;
    left: 22px; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
}
.cust-nav-sub li a:hover {
    color: #1d3557;
    background: #f8fafc;
}
.cust-nav-sub li a:hover::before { background: #1d3557; }
.cust-nav-sub li a.active {
    color: #1d3557;
    font-weight: 700;
    background: #e8eef5;
}
.cust-nav-sub li a.active::before { background: #1d3557; }

/* Ana içerik */
.cust-main { min-width: 0; }
.cust-title {
    font-size: 1.6rem;
    color: var(--secondary);
    margin: 0 0 20px;
}

/* Dashboard stat kartları */
.cust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}
.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.stat-card > i {
    font-size: 1.6rem;
    color: var(--primary);
    background: var(--primary-soft);
    width: 48px; height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-card strong {
    display: block;
    font-size: 1.4rem;
    color: var(--secondary);
    line-height: 1;
}
.stat-card span { color: var(--text-light); font-size: 0.8rem; }

/* Bölüm başlığı */
.cust-section { margin-bottom: 24px; }
.cust-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}
.cust-section-head h2 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin: 0;
}
.cust-link-all {
    color: var(--primary-hover);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
}
.cust-link-all:hover { text-decoration: underline; }

/* Dashboard order card (mini) */
.order-card-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    margin-bottom: 8px;
    gap: 16px;
    flex-wrap: wrap;
}
.order-card-mini:hover { border-color: var(--primary); }
.ocm-left { flex: 1; min-width: 0; }
.ocm-left strong { display: block; margin-bottom: 6px; }
.ocm-right { text-align: right; }
.ocm-date { color: var(--text-light); font-size: 0.85rem; }
.ocm-price { color: var(--primary-hover); font-weight: 700; font-size: 1.1rem; }

/* Info grid */
.cust-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    background: var(--white);
    padding: 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.cust-info-grid label { color: var(--text-light); font-size: 0.78rem; display: block; margin-bottom: 4px; letter-spacing: 0.04em; text-transform: uppercase; }
.cust-info-grid strong { color: var(--text-dark); font-size: 0.95rem; }

/* Form kartları */
.cust-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* Siparişlerim toolbar */
.orders-toolbar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}
.orders-search {
    position: relative;
    max-width: 320px;
}
.orders-search i {
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}
.orders-search input {
    width: 100%;
    padding: 11px 14px 11px 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.92rem;
    background: #fff;
}
.orders-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

.orders-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.orders-tabs a {
    padding: 9px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}
.orders-tabs a:hover { border-color: var(--primary); color: var(--primary); }
.orders-tabs a.active {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

/* Order cards (büyük akordiyon) */
.order-cards { display: flex; flex-direction: column; gap: 12px; }
.order-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.order-card:hover { border-color: #d1d5db; }
.order-card.is-open { border-color: var(--primary); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }

.order-card-head {
    display: grid;
    grid-template-columns: auto 1fr auto 32px;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    width: 100%;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.oc-thumbs {
    display: flex;
    align-items: center;
    gap: 6px;
}
.oc-thumb {
    width: 52px; height: 52px;
    background: #f3f4f6;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 1.2rem;
}
.oc-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 4px; }
.oc-thumb-more {
    background: #f3f4f6;
    color: #6b7280;
    font-weight: 700;
    font-size: 0.88rem;
}

.oc-mid { min-width: 0; }
.oc-no { color: var(--text-light); font-size: 0.88rem; margin-bottom: 4px; }
.oc-no strong { color: var(--text-dark); }
.oc-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #166534;
    font-size: 0.88rem;
    font-weight: 600;
}

.oc-right { text-align: right; }
.oc-date { color: var(--text-light); font-size: 0.88rem; }
.oc-price { color: #16a34a; font-weight: 700; font-size: 1.1rem; }

.oc-toggle {
    color: var(--text-light);
    transition: transform 0.2s ease;
}
.order-card.is-open .oc-toggle { transform: rotate(180deg); color: var(--primary); }

.order-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 18px;
    background: #fafbfc;
}
.order-card.is-open .order-card-body {
    max-height: 1000px;
    padding: 16px 18px;
    border-top: 1px solid var(--border);
}

.oc-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 14px;
}
.oc-body-grid label { color: var(--text-light); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; display: block; }
.oc-body-grid p { margin: 4px 0; color: var(--text-dark); font-size: 0.9rem; }

.oc-items { display: flex; flex-direction: column; gap: 8px; }
.oc-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
}
.oc-item-img {
    width: 40px; height: 40px;
    background: #f3f4f6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #cbd5e1;
}
.oc-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 3px; }
.oc-item-info div { font-size: 0.88rem; color: var(--text-dark); }
.oc-item-info small { color: var(--text-light); font-size: 0.78rem; }

/* İletişim tercihleri */
.pref-list { display: flex; flex-direction: column; gap: 12px; }
.pref-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}
.pref-row:hover { border-color: var(--primary); }
.pref-row input { margin-top: 5px; }
.pref-row input:checked ~ div strong { color: var(--primary-hover); }
.pref-row strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.pref-row strong i { color: var(--primary); margin-right: 8px; width: 18px; text-align: center; }
.pref-row small { color: var(--text-light); font-size: 0.82rem; display: block; margin-top: 2px; }

/* IBAN / Adres kartları */
.entry-list { display: flex; flex-direction: column; gap: 12px; }
.entry-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
}
.entry-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.entry-head strong { font-size: 1.05rem; color: var(--secondary); }
.entry-body p { margin: 4px 0; font-size: 0.92rem; color: var(--text-dark); }
.entry-body .muted { color: var(--text-light); font-size: 0.85rem; }
.entry-actions {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.entry-actions .btn { padding: 7px 14px; font-size: 0.82rem; }

@media (max-width: 960px) {
    .cust-layout { grid-template-columns: 1fr; }
    .cust-sidebar { position: static; }
    .order-card-head { grid-template-columns: auto 1fr; gap: 10px; }
    .oc-right { grid-column: 2; }
    .oc-toggle { grid-column: 2; justify-self: end; margin-top: -22px; }
    .oc-body-grid { grid-template-columns: 1fr; }
}

/* =============== ÖDEME SAYFASI (3D / Havale / Başarısız) =============== */
.payment-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 34px;
    box-shadow: var(--shadow);
    margin-top: 10px;
}
.payment-box-head {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 22px;
}
.payment-box-head > i {
    font-size: 2.4rem;
    color: var(--primary);
    background: var(--primary-soft);
    width: 64px; height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.payment-box-head h1 { color: var(--secondary); margin: 0 0 4px; font-size: 1.4rem; }
.payment-box-head p  { color: var(--text-light); margin: 0; font-size: 0.95rem; }

/* Test kartı formu */
.test-card-form .form-group input {
    background: #f3f4f6;
    color: #111827;
    font-family: 'Courier New', monospace;
}
.test-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.muted-hint {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 16px;
    text-align: center;
}
.muted-hint a { color: var(--primary-hover); font-weight: 600; }

/* Havale bilgileri */
.bank-info {
    background: #fafbfc;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
}
.bank-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e5e7eb;
}
.bank-row:last-child { border-bottom: none; }
.bank-row label {
    min-width: 140px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.85rem;
}
.bank-row > div {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.bank-row code {
    background: #fff;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--secondary);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.04em;
}

/* =============== ÖDEME (Checkout) =============== */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 22px;
    align-items: start;
}
.checkout-main { min-width: 0; }
.checkout-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 12px 14px 14px;
    box-shadow: var(--shadow);
    margin-bottom: 10px;
}
.checkout-card-title {
    color: var(--secondary);
    font-size: 0.9rem;
    margin: 0 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}
.checkout-card-title i { color: var(--primary); font-size: 0.92rem; }

/* Form alanları — Teslimat / Fatura kompakt görünüm */
.checkout-card .form-group { margin-bottom: 10px; }
.checkout-card .form-group:last-child { margin-bottom: 0; }
.checkout-card .form-group label {
    margin-bottom: 4px;
    font-size: 0.76rem;
    font-weight: 600;
}
.checkout-card .form-group input,
.checkout-card .form-group select,
.checkout-card .form-group textarea {
    padding: 7px 10px;
    font-size: 0.84rem;
}
.checkout-card .form-row { gap: 10px; }

/* Fatura sekmeleri */
.invoice-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 0;
}
.invoice-tab { cursor: pointer; }
.invoice-tab input { display: none; }
.invoice-tab div {
    padding: 8px 10px;
    text-align: center;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition);
}
.invoice-tab:hover div { border-color: #cbd5e1; background: #f8fafc; }
.invoice-tab input:checked + div {
    background: #fff7ed;
    border-color: #ea580c;
    color: #9a3412;
    box-shadow: 0 0 0 3px rgba(234,88,12,0.18);
}

/* Kargo / Ödeme seçenekleri — kompakt grid */
.shipping-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 6px;
}
.shipping-opt { cursor: pointer; }
.shipping-opt input { display: none; }
.shipping-body {
    display: grid;
    grid-template-columns: 26px 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 7px 9px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    transition: var(--transition);
    background: #fff;
    height: 100%;
}
.shipping-opt:hover .shipping-body { border-color: #cbd5e1; background: #f8fafc; }
.shipping-opt input:checked + .shipping-body {
    border-color: #ea580c;
    background: #fff7ed;
    box-shadow: 0 0 0 3px rgba(234,88,12,0.18);
}
.shipping-opt input:checked + .shipping-body .shipping-icon {
    background: #ffedd5;
    border-color: #fdba74;
    color: #ea580c;
}
.shipping-opt input:checked + .shipping-body .shipping-info strong { color: #9a3412; }
.shipping-opt input:checked + .shipping-body .shipping-fee { color: #9a3412; }
.shipping-icon {
    width: 26px; height: 26px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.74rem; color: var(--primary);
}
.shipping-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.shipping-info strong { font-size: 0.76rem; color: var(--text-dark); line-height: 1.2; }
.shipping-info small { font-size: 0.66rem; color: var(--text-light); line-height: 1.25; }
.shipping-info small.muted i { margin-right: 3px; }
.shipping-fee { font-weight: 700; color: var(--primary-hover); font-size: 0.74rem; white-space: nowrap; }
.shipping-fee .free { color: #16a34a; font-size: 0.66rem; letter-spacing: 0.02em; }

/* Sipariş Notu textarea — checkout-card içinde, form-group dışında */
.checkout-card > textarea {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: #fff;
    line-height: 1.45;
    resize: vertical;
    min-height: 80px;
    box-sizing: border-box;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.checkout-card > textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(197,197,197,0.18);
}
.checkout-card > textarea::placeholder { color: #94a3b8; font-family: inherit; }

/* Özet — checkout */
.checkout-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 150px;
}
.checkout-summary h3 {
    color: var(--secondary);
    margin: 0 0 14px;
    font-size: 1.1rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.summary-items {
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 14px;
    padding-right: 4px;
}
.summary-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
    align-items: center;
}
.summary-item:last-child { border-bottom: none; }
.summary-item-img {
    position: relative;
    width: 52px; height: 52px;
    background: #f3f4f6;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    color: #cbd5e1;
}
.summary-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 4px; }
.qty-bubble {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--secondary);
    color: #fff;
    width: 22px; height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.summary-item-info { flex: 1; min-width: 0; }
.summary-item-name { font-size: 0.85rem; color: var(--text-dark); font-weight: 600; line-height: 1.3; }
.summary-item-price { color: var(--primary-hover); font-weight: 700; font-size: 0.92rem; margin-top: 3px; }

.summary-lines {
    padding-top: 8px;
    border-top: 1px solid var(--border);
}
.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.92rem;
}
.summary-line.total {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 2px solid var(--border);
    font-size: 1.05rem;
}
.summary-line.total strong {
    color: var(--primary-hover);
    font-size: 1.3rem;
}

/* Başarı ekranı */
.order-success {
    text-align: center;
    background: var(--white);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 22px;
}
.order-success-icon {
    font-size: 4.5rem;
    color: #16a34a;
    margin-bottom: 12px;
}
.order-success h1 { color: var(--secondary); margin: 0 0 10px; }
.order-success p { color: var(--text-light); margin: 4px 0; }

/* Sipariş meta grid */
.order-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}
.order-meta-grid label { color: var(--text-light); font-size: 0.78rem; font-weight: 600; display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em; }

/* Order items table */
.order-items-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.order-items-table th,
.order-items-table td { padding: 10px 8px; border-bottom: 1px solid var(--border); text-align: left; font-size: 0.92rem; }
.order-items-table th { background: var(--bg-light); font-weight: 600; color: var(--text-light); font-size: 0.78rem; text-transform: uppercase; }
.order-items-table tfoot td { padding: 8px; font-size: 0.95rem; }
.order-items-table tfoot tr.grand td { font-size: 1.05rem; color: var(--primary-hover); border-top: 2px solid var(--border); }
.oit-img {
    width: 40px; height: 40px;
    object-fit: contain;
    border: 1px solid var(--border);
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 8px;
    background: #fff;
    padding: 3px;
}

/* Hesabım — sipariş mini listesi */
.orders-mini { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.order-row {
    display: block;
    background: var(--white);
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
.order-row:hover { border-color: var(--primary); background: #fffbeb; }
.order-row-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.order-row-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.88rem;
    align-items: center;
}
.order-row-meta strong { color: var(--primary-hover); font-size: 1rem; margin-left: auto; }

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
}

@media (max-width: 960px) {
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
    .shipping-list { grid-template-columns: 1fr; }
    .shipping-body { grid-template-columns: 36px 1fr auto; }
}

/* =============== SEPET (Sepetim) =============== */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}
.cart-items {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 14px;
    box-shadow: var(--shadow);
}
.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 14px;
    align-items: center;
    padding: 14px 10px;
    border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }

.cart-item-img {
    width: 80px;
    height: 80px;
    background: #f3f4f6;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #cbd5e1;
    font-size: 1.8rem;
}
.cart-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 8%; }
.cart-item-info h4 {
    margin: 4px 0 4px;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.cart-item-info h4 a { color: inherit; text-decoration: none; }
.cart-item-info h4 a:hover { color: var(--primary); }
.cart-item-unit { color: var(--text-light); font-size: 0.82rem; }

.cart-item-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    height: 36px;
}
.qty-btn {
    width: 32px; height: 36px;
    border: 0; background: #fafbfc; cursor: pointer;
    font-weight: 700; color: var(--secondary);
    transition: var(--transition);
}
.qty-btn:hover { background: var(--primary); color: #0b0f17; }
.qty-input {
    width: 48px; height: 36px;
    border: 0;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    font-weight: 700;
    font-family: inherit;
}
.qty-input:focus { outline: none; background: #fffbeb; }

.cart-item-subtotal {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-hover);
    min-width: 100px;
    text-align: right;
}
.cart-item-remove {
    width: 34px; height: 34px;
    border: 0;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}
.cart-item-remove:hover { background: #991b1b; color: #fff; }

/* Özet */
.cart-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 150px;
}
.cart-summary h3 {
    color: var(--secondary);
    margin: 0 0 14px;
    font-size: 1.1rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.cart-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.95rem;
}
.cart-summary-line.muted { color: var(--text-light); font-size: 0.88rem; }
.cart-summary-line.total {
    margin-top: 12px;
    padding-top: 14px;
    border-top: 2px solid var(--border);
    font-size: 1.1rem;
}
.cart-summary-line.total strong {
    color: var(--primary-hover);
    font-size: 1.4rem;
}

/* Toast */
.cart-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #111827;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}
.cart-toast.is-visible { opacity: 1; transform: translateY(0); }
.cart-toast.ok  { background: #065f46; }
.cart-toast.err { background: #991b1b; }

@media (max-width: 820px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .cart-item {
        grid-template-columns: 64px 1fr auto;
        grid-auto-rows: auto;
    }
    .cart-item-img { width: 64px; height: 64px; }
    .cart-item-qty { grid-column: 2; }
    .cart-item-subtotal { grid-column: 3; }
    .cart-item-remove { grid-column: 3; grid-row: 1; justify-self: end; }
}

/* =============== SAYFA / FORM (kayıt vb.) =============== */
.page-section {
    padding: 130px 0 60px;
    background: var(--bg-light);
    min-height: 100vh;
}
.page-header { text-align: center; margin-bottom: 30px; }
.page-header h1 { color: var(--secondary); font-size: 2rem; margin-bottom: 8px; }
.page-header p { color: var(--text-light); }

.alert {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--radius);
    margin-bottom: 22px;
    align-items: flex-start;
}
.alert i { font-size: 1.4rem; margin-top: 2px; }
.alert ul { margin: 6px 0 0 18px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

.register-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.form-section-title {
    color: var(--secondary);
    font-size: 1.1rem;
    margin: 28px 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-section-title:first-child { margin-top: 0; }
.form-section-title i { color: var(--primary); }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-hint { color: var(--text-light); font-size: 0.85rem; margin-bottom: 12px; }

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}
.checkbox-card { cursor: pointer; }
.checkbox-card input { display: none; }
.checkbox-card-body {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-dark);
}
.checkbox-card-body i { color: var(--primary); font-size: 1.2rem; }
.checkbox-card input:checked + .checkbox-card-body {
    border-color: var(--primary);
    background: var(--primary-soft);
    color: var(--primary-hover);
}

.city-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 6px;
    max-height: 320px;
    overflow-y: auto;
    padding: 14px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
}
.city-check { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; cursor: pointer; padding: 4px; border-radius: 4px; }
.city-check:hover { background: rgba(197,197,197,0.08); }
.city-check input:checked + span { color: var(--primary-hover); font-weight: 700; }

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
}

/* =============== FİRMA LİSTELEME =============== */
.list-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}
.list-filter select {
    flex: 1;
    min-width: 200px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    background: var(--white);
}

.tech-list { display: grid; gap: 16px; }
.tech-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 18px;
    align-items: start;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.tech-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.tech-avatar {
    width: 64px; height: 64px;
    background: var(--primary-soft);
    color: var(--primary-hover);
    font-weight: 800;
    font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
.tech-info h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 6px;
}
.tech-info h3 small { color: var(--text-light); font-weight: 500; font-size: 0.9rem; }
.tech-meta {
    display: flex; gap: 14px; flex-wrap: wrap;
    color: var(--text-light); font-size: 0.88rem; margin-bottom: 8px;
}
.tech-meta i { color: var(--primary); margin-right: 4px; }
.tech-desc { color: var(--text-light); font-size: 0.92rem; margin-bottom: 10px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tech-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid var(--border);
}
.tech-actions { display: flex; flex-direction: column; gap: 8px; }
.tech-actions .btn { padding: 10px 16px; font-size: 0.9rem; }

@media (max-width: 768px) {
    .tech-card { grid-template-columns: 56px 1fr; }
    .tech-avatar { width: 56px; height: 56px; font-size: 1.3rem; }
    .tech-actions { grid-column: 1 / -1; flex-direction: row; }
    .tech-actions .btn { flex: 1; }
}

/* =============== YENİ HERO =============== */
.hero-new {
    position: relative;
    min-height: calc(100vh - 130px);
    background: radial-gradient(ellipse at top, #131826 0%, #0b0f17 60%, #07090f 100%);
    color: var(--text-on-dark);
    padding: 160px 0 60px;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(197,197,197,0.18) 0%, rgba(197,197,197,0) 60%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.hero-new-container {
    position: relative;
    text-align: center;
}

.hero-headline h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    color: var(--white);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.hero-headline p {
    color: var(--text-on-dark-soft);
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 720px;
    margin: 0 auto 28px;
}
@media (max-width: 768px) {
    .hero-headline p { font-size: 0.85rem; }
}

/* Arama formu */
.hero-search {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 12px;
    background: rgba(28, 35, 51, 0.85);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 12px;
    max-width: 900px;
    margin: 0 auto 22px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.search-field {
    position: relative;
    display: flex;
    align-items: center;
}
.search-field i {
    position: absolute;
    left: 16px;
    color: var(--primary);
    font-size: 0.95rem;
    pointer-events: none;
}
.search-field select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(11,15,23,0.6) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%239ca3af' d='M6 8L0 0h12z'/></svg>") no-repeat right 16px center;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-on-dark);
    padding: 14px 38px 14px 42px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}
.search-field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}
.search-field select option { background: #131826; color: var(--text-on-dark); }

/* Mega-menu tetikleyicisi (select yerine button) */
.mega-wrap { position: relative; }
.mega-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    appearance: none;
    background: rgba(11,15,23,0.6);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-on-dark);
    padding: 14px 18px 14px 42px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}
.mega-trigger:hover { border-color: rgba(197,197,197,0.4); }
.mega-trigger[aria-expanded="true"] {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}
.mega-trigger .mega-label { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.mega-caret { transition: transform 0.2s ease; font-size: 0.8rem; color: var(--text-on-dark-soft); }
.mega-trigger[aria-expanded="true"] .mega-caret { transform: rotate(180deg); }

/* Mega panel */
.mega-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #0f1522;
    border: 1px solid rgba(197,197,197,0.2);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 2px 0 rgba(197,197,197,0.08) inset;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 50;
    min-width: 720px;
}
.mega-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 24px;
}

.mega-col {
    padding: 4px 6px;
}
.mega-col-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
    color: var(--white);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: var(--transition);
}
.mega-col-title i {
    color: var(--primary);
    width: 18px;
    text-align: center;
}
.mega-col-title:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.mega-sublist { list-style: none; padding: 0; margin: 0; }
.mega-sublist li { margin: 0; }
.mega-sublist a {
    display: block;
    padding: 6px 6px 6px 30px;
    color: var(--text-on-dark-soft);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: var(--transition);
}
.mega-sublist a:hover {
    color: var(--white);
    background: rgba(197,197,197,0.08);
    padding-left: 34px;
}

.mega-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--text-on-dark-soft);
    font-size: 0.82rem;
}
.mega-footer i { color: var(--primary); margin-right: 6px; }
.mega-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.mega-footer a:hover { text-decoration: underline; }

@media (max-width: 992px) {
    .mega-panel {
        min-width: 0;
        left: 0; right: 0;
    }
    .mega-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 640px) {
    .mega-grid { grid-template-columns: 1fr; }
    .mega-panel { padding: 16px; }
}

.btn-search {
    background: var(--primary);
    color: #0b0f17;
    border: none;
    padding: 0 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-search:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* Rozetler */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(28,35,51,0.7);
    border: 1px solid var(--border-dark);
    color: var(--text-on-dark);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}
.badge-pill i { color: var(--primary); }

/* Callback (Seni Arayalım) */
.hero-callback {
    background: rgba(28,35,51,0.7);
    border: 1px solid rgba(197,197,197,0.35);
    border-radius: 14px;
    padding: 22px 26px;
    max-width: 1100px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1.1fr 1.6fr;
    gap: 22px;
    align-items: center;
    text-align: left;
    position: relative;
}
.callback-left h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 6px;
}
.callback-left p {
    color: var(--text-on-dark-soft);
    font-size: 0.92rem;
}
.callback-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
}
.callback-form input {
    background: rgba(11,15,23,0.6);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-on-dark);
    padding: 12px 14px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.92rem;
    transition: var(--transition);
}
.callback-form input::placeholder { color: var(--text-on-dark-soft); }
.callback-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}
.btn-callback {
    background: var(--primary);
    color: #0b0f17;
    border: none;
    padding: 0 22px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}
.btn-callback:hover {
    background: var(--primary-hover);
}
.callback-note {
    grid-column: 1 / -1;
    color: var(--text-on-dark-soft);
    font-size: 0.82rem;
    margin-top: 8px;
}
.callback-note i { color: var(--primary); margin-right: 6px; }

/* Kategori kartları */
/* =============== HİZMET KATEGORİLERİ — ZENGİN KART GRİD (home) =============== */
.svc-section-head {
    text-align: center;
    margin: 28px 0 28px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.svc-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(197,197,197,0.1);
    color: var(--primary-hover);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 1px solid rgba(197,197,197,0.3);
    margin-bottom: 14px;
}
.svc-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin: 0 0 10px;
}
.svc-section-sub {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 0 0 12px;
}
.svc-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15,23,42,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15,23,42,0.12);
    border-color: rgba(197,197,197,0.35);
}

/* Üst medya alanı — görsel + hotspot pin'ler */
.svc-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0b0f17;
}
.svc-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.svc-card:hover .svc-card-media img { transform: scale(1.04); }
.svc-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 3rem;
    background: radial-gradient(circle at 30% 30%, rgba(197,197,197,0.18) 0%, rgba(0,0,0,0) 60%), #0b0f17;
}

/* Gövde */
.svc-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 24px 24px;
    flex: 1;
}
.svc-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
    text-align: center;
    line-height: 1.25;
}
.svc-card-desc {
    color: #6b7280;
    font-size: 0.78rem;
    line-height: 1.5;
    text-align: center;
    margin: 0 0 2px;
}

/* Hizmet Kapsamı listesi */
.svc-card-scope {
    padding: 10px 0 2px;
    border-top: 1px solid #f1f5f9;
    margin-top: 4px;
}
.svc-card-scope-head {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.8rem;
    margin-bottom: 7px;
}
.svc-card-scope-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.svc-card-scope-list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #374151;
    font-size: 0.78rem;
    line-height: 1.4;
}
.svc-card-scope-list li i {
    color: #10b981;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Alt footer: teknisyen sayısı + hint + CTA */
.svc-card-foot {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.svc-card-tech-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--primary-hover);
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(197,197,197,0.08);
    border-radius: 999px;
    align-self: flex-start;
}
.svc-card-tech-count i { font-size: 0.78rem; }
.svc-card-hint {
    color: #3b82f6;
    font-size: 0.84rem;
    text-align: center;
    margin: 0;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}
.svc-card-hint:hover { color: #1d4ed8; text-decoration: underline; }
.svc-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--secondary);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}
.svc-card-cta:hover {
    background: var(--primary);
    color: #0b0f17;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197,197,197,0.3);
}
.svc-card-cta:hover i { transform: translateX(3px); }
.svc-card-cta i { transition: transform 0.2s ease; font-size: 0.85rem; }

@media (max-width: 992px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .svc-section-title { font-size: 1.65rem; }
}
@media (max-width: 600px) {
    .svc-grid { grid-template-columns: 1fr; gap: 16px; }
    .svc-section-title { font-size: 1.4rem; }
    .svc-card-body { padding: 18px 20px 20px; }
}

/* Kategori slider başlığı + prev/next butonları */
.cat-slider-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0 12px;
    gap: 16px;
}
.cat-slider-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: 0.01em;
}
.cat-slider-nav {
    display: flex;
    gap: 8px;
}
.cat-slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #374151;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.15s ease;
}
.cat-slider-btn:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.cat-slider-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* Kategori slider — yatay kaydırılabilir kartlar, tam sayıda görünür */
.hero-categories {
    --cat-slider-gap: 18px;
    --cat-slider-show: 4;
    display: flex;
    align-items: flex-start; /* kartların yükseklik streç edilmesini engelle */
    gap: var(--cat-slider-gap);
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 4px 16px;
    margin: 0 -4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.hero-categories::-webkit-scrollbar { display: none; }
.hero-categories > .cat-pill {
    flex: 0 0 calc((100% - (var(--cat-slider-show) - 1) * var(--cat-slider-gap)) / var(--cat-slider-show));
    scroll-snap-align: start;
}

/* Ekran boyutuna göre görünür kart sayısı — yükseklik aspect-ratio ile otomatik ayarlanır */
@media (max-width: 1200px) {
    .hero-categories { --cat-slider-show: 3; }
}
@media (max-width: 768px) {
    .hero-categories { --cat-slider-show: 2; --cat-slider-gap: 14px; }
}
@media (max-width: 480px) {
    .hero-categories { --cat-slider-show: 1; }
}
/* Kategori kartı — kare görsel (1:1) + altta başlık (kart dışına taşmaz) */
.cat-pill {
    position: relative;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-1) 100%);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.cat-pill:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25);
}
.cat-pill:hover .cat-pill-media img { transform: scale(1.05); }

.cat-pill-media {
    position: relative;
    overflow: hidden;
    background: #0b0f17;
    aspect-ratio: 1 / 1;
}
.cat-pill-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
/* Overlay kaldırıldı — görsel kare, alt karartma yok */
.cat-pill-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 3.5rem;
    background: radial-gradient(circle at 30% 30%, rgba(197,197,197,0.15) 0%, rgba(0,0,0,0) 60%), #0b0f17;
}

.cat-pill-body {
    padding: 14px 16px 16px;
    background: var(--dark-1);
    border-top: 1px solid var(--border-dark);
}
.cat-pill-body h4 {
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cat-pill-body span {
    color: var(--text-on-dark-soft);
    font-size: 0.76rem;
    letter-spacing: 0.02em;
}

/* Kategori kartı pin'leri — görsel üzerine yerleştirilmiş ürün işaretleri */
.cat-pill-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: 2px solid #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2), 0 3px 10px rgba(0,0,0,0.4);
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 5;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    animation: catPillPinPulse 2s ease-in-out infinite;
}
.cat-pill-pin:hover,
.cat-pill-pin:focus {
    transform: translate(-50%, -50%) scale(1.25);
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(197,197,197,0.35), 0 4px 14px rgba(0,0,0,0.5);
    animation: none;
    outline: none;
}
@keyframes catPillPinPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,0.2), 0 3px 10px rgba(0,0,0,0.4); }
    50%      { box-shadow: 0 0 0 8px rgba(255,255,255,0), 0 3px 10px rgba(0,0,0,0.4); }
}

/* Pin tooltip — hover / focus'ta ürün önizleme */
.cat-pill-pin-tip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    max-width: calc(100% - 12px);
    background: #ffffff;
    color: #111827;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.45);
    display: flex;
    gap: 6px;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
}
.cat-pill-pin-tip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #fff;
}
/* Pin ile tooltip arasındaki boşluğu kapatan görünmez köprü — mouse hover kesilmesin */
.cat-pill-pin-tip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
    background: transparent;
}
.cat-pill-pin:hover .cat-pill-pin-tip,
.cat-pill-pin:focus .cat-pill-pin-tip {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}
.cat-pill-pin-tip-img {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: #f3f4f6;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-pill-pin-tip-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-pill-pin-tip-info { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 1px; }
.cat-pill-pin-tip-info strong {
    font-size: 0.7rem;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.15;
}
.cat-pill-pin-tip-info span {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary-hover);
}

/* =============== KATEGORİ KART HOTSPOT PIN (temiz versiyon, kart içinde sınırlı) =============== */
/* Pin küçük yuvarlak işaret; hover/focus'ta tooltip media içinde alttan açılır.
   Media overflow: hidden korunur (slider başlığıyla çakışma engellenir). */
.cat-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 6;
    display: inline-block;
}
.cat-pin-dot {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(15,23,42,0.85);
    box-shadow:
        0 0 0 4px rgba(255,255,255,0.45),
        0 3px 8px rgba(0,0,0,0.35);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    animation: catPinPulse 2.2s ease-in-out infinite;
    z-index: 1;
}
.cat-pin:hover .cat-pin-dot,
.cat-pin:focus .cat-pin-dot,
.cat-pin.is-open .cat-pin-dot,
.cat-pill-pin.is-open .cat-pin-dot {
    background: var(--primary, #C5C5C5);
    border-color: #0f172a;
    transform: scale(1.18);
    animation: none;
}
@keyframes catPinPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255,255,255,0.45), 0 3px 8px rgba(0,0,0,0.35); }
    50%      { box-shadow: 0 0 0 8px rgba(255,255,255,0.0),  0 3px 8px rgba(0,0,0,0.35); }
}

/* Tooltip — pin'in altında, media içinde sınırlı kalır */
.cat-pin-tip {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    width: 200px;
    max-width: 200px;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 9px;
    box-shadow: 0 12px 28px rgba(15,23,42,0.18), 0 3px 6px rgba(15,23,42,0.06);
    display: flex;
    gap: 9px;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
    z-index: 20;
}
.cat-pin:hover .cat-pin-tip,
.cat-pin:focus .cat-pin-tip,
.cat-pin:focus-within .cat-pin-tip,
.cat-pin.is-open .cat-pin-tip,
.cat-pill-pin.is-open .cat-pin-tip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}
/* Konuşma balonu okluğu — yukarı bakar (tooltip alttan açılıyor) */
.cat-pin-tip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 8px solid #ffffff;
    filter: drop-shadow(0 -1px 0 #e5e7eb);
}
/* Hover köprüsü — pin ile tooltip arasındaki boşluğu mouse kesmesin */
.cat-pin-tip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: -12px;
    right: -12px;
    height: 12px;
}

.cat-pin-tip-img {
    width: 44px;
    height: 44px;
    border-radius: 7px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-pin-tip-img img { width: 100%; height: 100%; object-fit: contain; padding: 3px; box-sizing: border-box; }

.cat-pin-tip-info {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.cat-pin-tip-info strong {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
            line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
.cat-pin-tip-info em {
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 800;
    color: #059669;
}

/* Tooltip kart kenarına yakınsa konum auto-flip — left%>=70 → sağa, <=30 → sola */
.cat-pin[style*="left:7"] .cat-pin-tip,
.cat-pin[style*="left:8"] .cat-pin-tip,
.cat-pin[style*="left:9"] .cat-pin-tip {
    left: auto; right: 0;
    transform: translateX(0) translateY(-4px);
}
.cat-pin[style*="left:7"]:hover .cat-pin-tip,
.cat-pin[style*="left:8"]:hover .cat-pin-tip,
.cat-pin[style*="left:9"]:hover .cat-pin-tip,
.cat-pin[style*="left:7"]:focus-within .cat-pin-tip,
.cat-pin[style*="left:8"]:focus-within .cat-pin-tip,
.cat-pin[style*="left:9"]:focus-within .cat-pin-tip {
    transform: translateX(0) translateY(0);
}
.cat-pin[style*="left:7"] .cat-pin-tip::after,
.cat-pin[style*="left:8"] .cat-pin-tip::after,
.cat-pin[style*="left:9"] .cat-pin-tip::after {
    left: auto; right: 8px; transform: none;
}

/* Pin alttan açılıyor; pin kartın çok altındaysa (top%>=70) yukarıya yansıt */
.cat-pin[style*="top:7"] .cat-pin-tip,
.cat-pin[style*="top:8"] .cat-pin-tip,
.cat-pin[style*="top:9"] .cat-pin-tip {
    top: auto; bottom: calc(100% + 10px);
}
.cat-pin[style*="top:7"] .cat-pin-tip::after,
.cat-pin[style*="top:8"] .cat-pin-tip::after,
.cat-pin[style*="top:9"] .cat-pin-tip::after {
    bottom: auto; top: 100%;
    border-bottom: 0;
    border-top: 8px solid #ffffff;
    filter: drop-shadow(0 1px 0 #e5e7eb);
}
.cat-pin[style*="top:7"] .cat-pin-tip::before,
.cat-pin[style*="top:8"] .cat-pin-tip::before,
.cat-pin[style*="top:9"] .cat-pin-tip::before {
    bottom: auto; top: 100%;
}

/* Mobil küçültme */
@media (max-width: 600px) {
    .cat-pin { width: 16px; height: 16px; }
    .cat-pin-tip { width: 170px; padding: 7px; gap: 7px; }
    .cat-pin-tip-img { width: 38px; height: 38px; }
    .cat-pin-tip-info strong { font-size: 0.75rem; }
    .cat-pin-tip-info em { font-size: 0.78rem; }
}

/* =============== KATEGORİ FEATURED BÖLÜMÜ (home'da pill'lerden ayrı bir section) =============== */
.cat-featured-section {
    background: linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 60px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    animation: cfFadeIn 0.3s ease-out;
}
.cat-featured-section[hidden] { display: none; }

.cat-featured {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: 3px solid var(--primary);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    padding-bottom: 22px;
}
@keyframes cfFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cat-featured-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
}
.cat-featured-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.cat-featured-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 60px 18px 24px;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}
.cat-featured-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
}
.cfh-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(197,197,197, 0.3);
}
.cat-featured-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: var(--primary);
    color: #0b0f17;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
    white-space: nowrap;
}
.cat-featured-all:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateX(3px);
}

.cat-featured-body {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 18px;
    padding: 20px 22px;
}

/* Sol: büyük görsel alanı — resim tüm alanı doldurur, üstünde hotspot dots */
.cat-featured-hero {
    border-radius: 14px;
    background: #0b0f17;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    min-height: 480px;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
.cat-featured-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cfh-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 5rem;
    background: radial-gradient(circle at 30% 30%, rgba(197,197,197,0.18) 0%, rgba(0,0,0,0) 60%), #0b0f17;
}

/* Hotspot noktası — görsel üzerinde seçilebilir ürün işareti */
.cf-hotspot {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: 2px solid #fff;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.25), 0 4px 12px rgba(0,0,0,0.4);
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: cfHotPulse 2s ease-in-out infinite;
}
.cf-hotspot:hover,
.cf-hotspot.is-active {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 6px rgba(197,197,197,0.35), 0 6px 16px rgba(0,0,0,0.5);
    animation: none;
    background: var(--primary);
}
@keyframes cfHotPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255,255,255,0.25), 0 4px 12px rgba(0,0,0,0.4); }
    50%      { box-shadow: 0 0 0 10px rgba(255,255,255,0), 0 4px 12px rgba(0,0,0,0.4); }
}

/* Hotspot tooltip — hover'da ürün kartı */
.cf-hotspot-tip {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background: #ffffff;
    color: #111827;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.5);
    display: flex;
    gap: 10px;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
}
.cf-hotspot-tip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
}
.cf-hotspot:hover .cf-hotspot-tip,
.cf-hotspot.is-active .cf-hotspot-tip {
    opacity: 1;
}
.cf-hotspot-tip-img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: #f3f4f6;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cf-hotspot-tip-img img { width: 100%; height: 100%; object-fit: cover; }
.cf-hotspot-tip-info { min-width: 0; flex: 1; }
.cf-hotspot-tip-info strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}
.cf-hotspot-tip-info span {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary-hover);
    margin-top: 2px;
}

/* Orta + Sağ: koyu kartlar */
.cat-featured-card {
    background: #3f3746;
    border-radius: 14px;
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    color: #e5e7eb;
    border: 1px solid rgba(255,255,255,0.06);
}
.cfc-card-head {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.cfc-card-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #cbd5e1;
    opacity: 0.75;
    font-weight: 500;
}
.cfc-card-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
}
.cfc-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
    /* Özel scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.25) transparent;
}
.cfc-card-body::-webkit-scrollbar { width: 6px; }
.cfc-card-body::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}
.cfc-card-body::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.35); }
.cfc-card-body::-webkit-scrollbar-track { background: transparent; }

/* Ürün listesi (koyu kutu içinde) */
.cfc-product {
    display: flex;
    gap: 12px;
    padding: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    min-width: 0;
}
.cfc-product:hover {
    border-color: var(--primary);
    background: rgba(197,197,197,0.08);
    transform: translateX(3px);
}
.cfc-product-img {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: rgba(0,0,0,0.25);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cfc-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cfc-product-img .cfc-ph {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.9rem;
}
.cfc-product-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}
.cfc-product-info .cfc-brand {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #cbd5e1;
    opacity: 0.7;
}
.cfc-product-info .cfc-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.88rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cfc-product-info .cfc-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.88rem;
}

/* Teknisyen listesi (koyu kutu içinde) */
.cfc-tech {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    transition: all 0.2s;
}
.cfc-tech:hover {
    border-color: var(--primary);
    background: rgba(197,197,197,0.08);
}
.cfc-tech-avatar {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #0b0f17;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.cfc-tech-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cfc-tech-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: #fff;
    letter-spacing: 0.03em;
}
.cfc-tech-meta {
    font-size: 0.74rem;
    color: #cbd5e1;
    opacity: 0.75;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cfc-empty {
    padding: 16px;
    text-align: center;
    color: #cbd5e1;
    opacity: 0.6;
    font-size: 0.88rem;
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.12);
    border-radius: 10px;
    margin-top: auto;
    margin-bottom: auto;
}

.cat-featured-loading {
    padding: 30px;
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem;
}
.cat-featured-loading i { color: var(--primary); margin-right: 8px; }
.cat-featured.is-loading .cat-featured-body { opacity: 0.4; pointer-events: none; }
.cat-featured.is-loading .cat-featured-loading { display: block; }

@media (max-width: 992px) {
    .cat-featured-body { grid-template-columns: 1fr 1fr; }
    .cat-featured-hero { grid-column: 1 / -1; min-height: 220px; }
}
@media (max-width: 768px) {
    .cat-featured-body { grid-template-columns: 1fr; gap: 14px; padding: 16px; }
    .cat-featured-hero { min-height: 180px; grid-column: auto; }
    .cat-featured-card { min-height: 0; padding: 18px; }
    .cat-featured-head { flex-direction: column; align-items: flex-start; padding: 16px 50px 16px 18px; }
    .cat-featured-all { width: 100%; justify-content: center; }
}

/* Service card içindeki yeni footer (kategori sayfasındaki kartlar için) */
.service-card-footer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}
.service-card { display: block; text-decoration: none; color: inherit; }
.service-card:hover .service-card-footer i { transform: translateX(4px); }
.service-card-footer i { transition: var(--transition); }

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .sf-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 50px 20px;
    }
    .sf-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .sf-cta-actions { flex-wrap: wrap; justify-content: center; }
    .hero-search { grid-template-columns: 1fr; }
    .hero-callback { grid-template-columns: 1fr; }
    .callback-form { grid-template-columns: 1fr 1fr; }
    .btn-callback { grid-column: 1 / -1; padding: 12px; }
    .hero-categories { grid-template-columns: repeat(3, 1fr); }

    .header-search { max-width: 340px; }
    .account-pill-text, .tech-join-pill-text { display: none; }
    .account-pill, .tech-join-pill { padding: 8px 10px; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .header-nav-strip { display: none; }
    .header-search { display: none; }
    .header-account { display: none; }
    .menu-toggle { display: block; margin-left: auto; }

    .hero-content h1 { font-size: 2.5rem; }
    .hero-new { padding: 110px 0 40px; }
    .callback-form { grid-template-columns: 1fr; }
    .hero-categories { grid-template-columns: repeat(2, 1fr); }

    .sf-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 44px 20px;
    }
    .sf-cta-text h3 { font-size: 1.3rem; }
    .sf-cta-phone { width: 100%; justify-content: center; }
    .sf-cta-btn { width: 100%; justify-content: center; }
    .sf-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
    .sf-legal { justify-content: center; }
    .sf-about { max-width: none; }
}

/* ========== ANASAYFA AÇIK TEMA (home-light) ========== */
.home-light { background: #f3f4f6; color: #111827; }

/* Hero — beyaz kart/açık arka plan */
.home-light .hero-new {
    background: #f3f4f6;
    color: #111827;
    min-height: auto;
    padding: 160px 0 50px;
}
.home-light .hero-bg-glow {
    background: radial-gradient(circle, rgba(197,197,197,0.12) 0%, rgba(197,197,197,0) 60%);
}
.home-light .hero-headline h1 { color: #111827; }
.home-light .hero-headline p { color: #4b5563; }

/* Hero arama formu — beyaz kart */
.home-light .hero-search {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.home-light .search-field select {
    background: #ffffff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%236b7280' d='M6 8L0 0h12z'/></svg>") no-repeat right 16px center;
    border: 1px solid #d1d5db;
    color: #111827;
}
.home-light .search-field select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(197,197,197,0.2);
}
.home-light .search-field select option { background: #ffffff; color: #111827; }

/* Hero rozetleri */
.home-light .badge-pill {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #374151;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* Hızlı arama (callback) section */
.home-light .hero-callback {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111827;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.home-light .callback-left h3 { color: #111827; }
.home-light .callback-left p { color: #4b5563; }
.home-light .callback-form input {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #111827;
}
.home-light .callback-form input::placeholder { color: #9ca3af; }
.home-light .callback-form input:focus {
    border-color: var(--primary);
    background: #ffffff;
}
.home-light .callback-note { color: #6b7280; }

/* Kategori kartları (cat-pill) */
/* home-light — kategori kartı görsel odaklı koyu kart kalsın (override kaldırıldı).
   Eski açık-tema pill stilleri için fallback gerekirse burada tanımlanabilir. */

/* Bölüm başlıkları */
.home-light .section-title h2 { color: #111827; }
.home-light .section-title p { color: #4b5563; }

/* Açık vurgu bölümleri — az daha koyu gri */
.home-light .bg-light { background-color: #e5e7eb; }

/* Service kartları */
.home-light .service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111827;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.home-light .service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.home-light .service-card h3 { color: #111827; }
.home-light .service-card p { color: #4b5563; }
.home-light .service-card-footer { color: #6b7280; }
.home-light .service-card-footer i { color: var(--primary); }

/* Marka kutuları */
.home-light .brand-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111827;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.home-light .brand-item:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.home-light .brand-item .brand-name { color: #111827; }

/* Yorum kartları */
.home-light .testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111827;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.home-light .testimonial-card .message { color: #374151; }
.home-light .testimonial-card .author h4 { color: #111827; }
.home-light .testimonial-card .author span { color: #6b7280; }
.home-light .testimonial-card .stars { color: #c69c6d; }

/* İletişim bölümü */
.home-light .contact-info .info-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111827;
}
.home-light .info-item h4 { color: #111827; }
.home-light .info-item a { color: #374151; }
.home-light .info-item a:hover { color: var(--primary); }
.home-light .info-item i { color: var(--primary); }

.home-light .contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}
.home-light .contact-form label { color: #374151; }
.home-light .contact-form input,
.home-light .contact-form select,
.home-light .contact-form textarea {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #111827;
}
.home-light .contact-form input::placeholder,
.home-light .contact-form textarea::placeholder { color: #9ca3af; }
.home-light .contact-form input:focus,
.home-light .contact-form select:focus,
.home-light .contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(197,197,197,0.15);
}

/* ===== HAFTANIN ÖNE ÇIKAN TEKNİSYENLERİ ===== */
.featured-techs-section {
    background: #f8f9fa;
    padding: 40px 0 48px 0;
}
.featured-techs-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.featured-techs-title {
    color: #111827;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}
.fts-accent { font-style: normal; }
.fts-all-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}
.fts-all-link:hover { gap: 10px; }

/* Grid: 4 eşit sütun */
.featured-techs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
}

/* Kart — Açık tema (teknisyen listesi kartlarıyla uyumlu) */
.ftc {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px 16px 14px;
    text-decoration: none;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    overflow: visible;
}
.ftc:hover {
    border-color: #cbd5e1;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -8px rgba(15,23,42,0.12);
}

/* YENİ KATILDI rozeti — yeşil tonlu (mesaj gönder gibi) */
.ftc-new-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.35);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 2;
}

/* Üst satır: avatar + puan */
.ftc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* Avatar */
.ftc-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}
.ftc-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ftc-avatar span {
    font-size: 1rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: -0.02em;
}

/* Puan — referans gibi açık gri pill */
.ftc-rating {
    background: #f1f5f9;
    border: 1px solid #e5e7eb;
    color: #475569;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.ftc-rating i { color: #fbbf24; font-size: 0.72rem; }

/* Body */
.ftc-body {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}
.ftc-name {
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ftc-city {
    color: #64748b;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.ftc-city i { color: #94a3b8; font-size: 0.72rem; }

/* Hizmet satırı — ikon yok, küçük gri yazı */
.ftc-services {
    color: #64748b;
    font-size: 0.72rem;
    line-height: 1.45;
    margin-top: 2px;
}
.ftc-services span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Alt bölüm — açık ayırıcı çizgi */
.ftc-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}
.ftc-stat {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px;
}
.ftc-stat-label {
    color: #94a3b8;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.ftc-stat-value {
    color: #0f172a;
    font-size: 0.85rem;
    font-weight: 700;
}
/* Buton — referans gibi yeşil tonlu pill (Mesaj Gönder benzeri) */
.ftc-btn {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #059669 !important;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    white-space: nowrap;
    width: 100%;
}
.ftc-btn:hover {
    background: rgba(16, 185, 129, 0.18);
    border-color: rgba(16, 185, 129, 0.55);
    color: #059669 !important;
    transform: translateY(-1px);
}
.ftc-btn i { font-size: 0.7rem; }

/* Yan yana iki buton grubu */
.ftc-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: stretch;
}
/* Küçük buton — esnek genişlik (eşit pay) */
.ftc-btn.ftc-btn-sm {
    flex: 1 1 100%;
    min-width: 0;
    font-size: 0.72rem;
    padding: 8px 10px;
    gap: 4px;
    width: 100%;
    white-space: nowrap;
}
/* "Profile Git" outline varyantı — mavi/slate tonlu */
.ftc-btn.ftc-btn-outline {
    background: rgba(100, 116, 139, 0.08);
    border-color: rgba(100, 116, 139, 0.30);
    color: #475569 !important;
}
.ftc-btn.ftc-btn-outline:hover {
    background: rgba(100, 116, 139, 0.15);
    border-color: rgba(100, 116, 139, 0.50);
    color: #1e293b !important;
}

/* Avatar link — tıklanabilir olduğunu belli et */
.ftc-avatar-link {
    display: inline-flex;
    flex-shrink: 0;
    text-decoration: none;
    border-radius: 50%;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ftc-avatar-link:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(15,23,42,0.12);
}

/* İsim linki */
.ftc-name-link {
    text-decoration: none;
}
.ftc-name-link:hover .ftc-name {
    color: #059669 !important;
}

@media (max-width: 900px) {
    .featured-techs-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .featured-techs-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== TEKNİSYEN KAYIT — MULTI-STEP ===== */
.reg-page { min-height:100vh; background:#f3f4f6; padding-top:170px; padding-bottom:60px; }

/* Progress bar */
.reg-progress { max-width:700px; margin:0 auto 36px; padding:0 20px; }
.reg-steps { display:flex; align-items:center; gap:0; }
.reg-step { display:flex; flex-direction:column; align-items:center; gap:6px; flex:1; position:relative; }
.reg-step:not(:last-child)::after {
    content:''; position:absolute; top:18px; left:calc(50% + 18px);
    right:calc(-50% + 18px); height:2px; background:#e5e7eb; z-index:0;
    transition:background 0.3s ease;
}
.reg-step.done:not(:last-child)::after,
.reg-step.active:not(:last-child)::after { background:var(--primary); }
.reg-step-dot {
    width:36px; height:36px; border-radius:50%; background:#e5e7eb;
    display:flex; align-items:center; justify-content:center;
    font-size:0.82rem; font-weight:700; color:#9ca3af;
    border:2px solid #e5e7eb; transition:all 0.3s ease; position:relative; z-index:1;
}
.reg-step.active .reg-step-dot { background:#fff; border-color:var(--primary); color:var(--primary); box-shadow:0 0 0 4px rgba(197,197,197,0.15); }
.reg-step.done .reg-step-dot { background:var(--primary); border-color:var(--primary); color:#fff; }
.reg-step-label { font-size:0.7rem; font-weight:600; color:#9ca3af; white-space:nowrap; }
.reg-step.active .reg-step-label { color:var(--primary); }
.reg-step.done .reg-step-label { color:#374151; }

/* Kart */
.reg-card {
    max-width:700px; margin:0 auto; background:#fff;
    border-radius:20px; box-shadow:0 4px 24px rgba(0,0,0,0.07);
    border:1px solid #e5e7eb; overflow:hidden;
}
.reg-card-head {
    background:linear-gradient(135deg,#131826 0%,#0b0f17 100%);
    padding:28px 36px; display:flex; align-items:center; gap:16px;
}
.reg-card-head-icon {
    width:48px; height:48px; border-radius:14px;
    background:linear-gradient(135deg,var(--primary),var(--primary-hover));
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-size:1.2rem; flex-shrink:0;
    box-shadow:0 6px 16px rgba(197,197,197,0.4);
}
.reg-card-head-text h2 { color:#fff; font-size:1.2rem; font-weight:700; margin:0 0 4px; }
.reg-card-head-text p { color:#9ca3af; font-size:0.82rem; margin:0; }
.reg-card-body { padding:32px 36px; }

/* Form alanları */
.reg-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.reg-field { margin-bottom:18px; }
.reg-field label { display:block; font-size:0.8rem; font-weight:600; color:#374151; margin-bottom:6px; letter-spacing:0.01em; }
.reg-field label .req { color:var(--primary); margin-left:2px; }
.reg-input-wrap { position:relative; }
.reg-input-wrap .fi { position:absolute; left:13px; top:50%; transform:translateY(-50%); color:#9ca3af; font-size:0.85rem; pointer-events:none; }
.reg-field input, .reg-field select, .reg-field textarea {
    width:100%; padding:11px 13px 11px 38px;
    border:1.5px solid #e5e7eb; border-radius:10px;
    font-family:'Inter',sans-serif; font-size:0.88rem; color:#111827;
    background:#fff; transition:border-color 0.2s, box-shadow 0.2s; outline:none;
}
.reg-field textarea { padding-left:13px; resize:vertical; }
.reg-field select { padding-left:38px; }
.reg-field input:focus, .reg-field select:focus, .reg-field textarea:focus {
    border-color:var(--primary); box-shadow:0 0 0 3px rgba(197,197,197,0.12);
}
.reg-field input::placeholder, .reg-field textarea::placeholder { color:#9ca3af; }
.reg-pass-wrap { position:relative; }
.reg-pass-wrap input { padding-right:42px; }
.reg-pass-toggle { position:absolute; right:13px; top:50%; transform:translateY(-50%); background:none; border:none; color:#9ca3af; cursor:pointer; font-size:0.88rem; }
.reg-pass-toggle:hover { color:#374151; }

/* Hizmet checkbox kartları */
.reg-check-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:10px; margin-top:4px; }
.reg-check-card { position:relative; cursor:pointer; }
.reg-check-card input { position:absolute; opacity:0; width:0; height:0; }
.reg-check-card-body {
    padding:12px 14px; border:1.5px solid #e5e7eb; border-radius:12px;
    display:flex; align-items:center; gap:10px; background:#fafafa;
    transition:all 0.2s ease; font-size:0.82rem; font-weight:600; color:#374151;
}
.reg-check-card-body i { color:#9ca3af; font-size:0.9rem; transition:color 0.2s; }
.reg-check-card input:checked ~ .reg-check-card-body {
    border-color:var(--primary); background:rgba(197,197,197,0.06); color:var(--secondary);
}
.reg-check-card input:checked ~ .reg-check-card-body i { color:var(--primary); }
.reg-check-card-body::after {
    content:'\f00c'; font-family:'Font Awesome 6 Free'; font-weight:900;
    margin-left:auto; font-size:0.75rem; color:var(--primary);
    opacity:0; transition:opacity 0.2s;
}
.reg-check-card input:checked ~ .reg-check-card-body::after { opacity:1; }

/* Şehir grid */
.reg-city-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(120px,1fr)); gap:7px; margin-top:4px; }
.reg-city-item { position:relative; cursor:pointer; }
.reg-city-item input { position:absolute; opacity:0; width:0; height:0; }
.reg-city-label {
    display:block; padding:8px 10px; border:1.5px solid #e5e7eb; border-radius:8px;
    font-size:0.78rem; font-weight:600; color:#6b7280; text-align:center;
    background:#fafafa; transition:all 0.15s ease; cursor:pointer;
}
.reg-city-item input:checked ~ .reg-city-label {
    border-color:var(--primary); background:rgba(197,197,197,0.08); color:var(--secondary);
}

/* Navigasyon butonları */
.reg-nav { display:flex; justify-content:space-between; align-items:center; margin-top:28px; padding-top:22px; border-top:1px solid #f1f5f9; }
.reg-btn-prev {
    display:inline-flex; align-items:center; gap:8px;
    padding:11px 20px; border:1.5px solid #e5e7eb; border-radius:10px;
    background:#fff; color:#374151; font-family:'Inter',sans-serif;
    font-size:0.88rem; font-weight:600; cursor:pointer; transition:all 0.2s;
}
.reg-btn-prev:hover { border-color:#9ca3af; color:#111827; }
.reg-btn-next, .reg-btn-submit {
    display:inline-flex; align-items:center; gap:8px;
    padding:11px 24px; border:none; border-radius:10px;
    background:linear-gradient(135deg,var(--primary),var(--primary-hover));
    color:#0b0f17; font-family:'Inter',sans-serif;
    font-size:0.88rem; font-weight:700; cursor:pointer;
    box-shadow:0 4px 12px rgba(197,197,197,0.35); transition:all 0.2s;
}
.reg-btn-next:hover, .reg-btn-submit:hover { transform:translateY(-2px); box-shadow:0 6px 18px rgba(197,197,197,0.45); }

/* Uyarı/hata */
.reg-alert { display:flex; gap:12px; padding:13px 16px; border-radius:10px; margin-bottom:20px; font-size:0.85rem; }
.reg-alert-error { background:#fef2f2; border:1px solid #fecaca; color:#dc2626; }
.reg-alert-success { background:#f0fdf4; border:1px solid #bbf7d0; color:#15803d; }
.reg-alert i { flex-shrink:0; margin-top:1px; }
.reg-alert ul { margin:6px 0 0 16px; padding:0; }

/* Adım panelleri */
.reg-step-panel { display:none; }
.reg-step-panel.is-active { display:block; }

/* Section başlık */
.reg-section-title { font-size:0.78rem; font-weight:700; color:#9ca3af; letter-spacing:0.08em; text-transform:uppercase; margin:22px 0 12px; padding-bottom:8px; border-bottom:1px solid #f1f5f9; }
.reg-section-title:first-child { margin-top:0; }

@media(max-width:640px){
    .reg-card-body { padding:22px 20px; }
    .reg-card-head { padding:20px; }
    .reg-row { grid-template-columns:1fr; gap:0; }
    .reg-check-grid { grid-template-columns:1fr 1fr; }
    .reg-city-grid { grid-template-columns:repeat(auto-fill,minmax(90px,1fr)); }
}

/* ================================================================================
   GLOBAL LIGHT THEME — Tüm siteye uygulanan nihai katman
   Zemin: beyaz · Kart/input: #f8fafc · Yazı: siyah · Vurgu: turuncu gradient
   ================================================================================ */
:root {
    --lt-bg-page: #ffffff;
    --lt-bg-soft: #f8fafc;
    --lt-bg-soft-2: #f1f5f9;
    --lt-border: #e5e7eb;
    --lt-border-strong: #cbd5e1;
    --lt-text: #000000;
    --lt-text-muted: #475569;
    --lt-text-soft: #64748b;
    --lt-primary: #C5C5C5;
    --lt-primary-2: #C5C5C5;
    --lt-primary-hover: #a8a8a8;
    --lt-primary-soft: rgba(197,197,197,0.10);
    --lt-primary-ring: rgba(197,197,197,0.18);
    --lt-dark-grad: linear-gradient(135deg, #1f2937 0%, #0f172a 100%);
    --lt-orange-grad: linear-gradient(180deg, #C5C5C5 0%, #C5C5C5 100%);
    --lt-shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
    --lt-shadow-md: 0 1px 2px rgba(15,23,42,0.04), 0 4px 12px rgba(15,23,42,0.05);
    --lt-shadow-lg: 0 1px 2px rgba(15,23,42,0.04), 0 12px 28px rgba(15,23,42,0.08);
    --lt-shadow-btn: 0 1px 2px rgba(120,120,120,0.25), 0 6px 16px rgba(197,197,197,0.28);
    --lt-shadow-btn-hover: 0 2px 4px rgba(120,120,120,0.30), 0 10px 22px rgba(197,197,197,0.38);
}

body, body.home-dark, body.home-light {
    background-color: var(--lt-bg-page) !important;
    color: var(--lt-text) !important;
}
h1, h2, h3, h4, h5, h6 { color: var(--lt-text) !important; }

/* ---- HEADER ---- */
.header, .header.header-dark {
    background: #ffffff !important;
    border-bottom: 1px solid var(--lt-border) !important;
    box-shadow: var(--lt-shadow-sm) !important;
}
.header-top { border-bottom: 1px solid var(--lt-border); }
.header-nav-strip {
    background: #ffffff !important;
    border-top: none;
    border-bottom: 1px solid var(--lt-border);
}
.header-search {
    background: var(--lt-bg-soft) !important;
    border: 1px solid var(--lt-border) !important;
    border-radius: 10px;
}
.header-search input { color: var(--lt-text) !important; background: transparent !important; }
.header-search input::placeholder { color: var(--lt-text-soft); }
.header-search button {
    background: #C5C5C5 !important;
    color: #000 !important;
    border: none !important;
    box-shadow: var(--lt-shadow-sm);
    transition: background .18s ease;
}
.header-search button:hover { background: #a8a8a8 !important; }
.header-search button i { color: #000 !important; }
.header .logo a, .header-dark .logo a { color: var(--lt-text) !important; }
.header .logo a .text-primary,
.header-dark .logo a .text-primary { color: var(--lt-primary) !important; }
.header .nav-list > li > a,
.header-dark .nav-list a {
    color: var(--lt-text) !important;
    background: transparent !important;
}
.header .nav-list > li > a:hover,
.header-dark .nav-list a:hover,
.header-dark .nav-list a.active,
.header-nav-strip .nav-list > li:hover > a,
.header-nav-strip .nav-list > li.is-open > a {
    color: #000 !important;
    background: transparent !important;
    border-bottom-color: #C5C5C5 !important;
}
.header-dark .menu-toggle { color: var(--lt-text) !important; }

/* Account + Cart pill (header butonları) */
.account-pill, .cart-pill, .tech-join-pill {
    background: var(--lt-bg-soft) !important;
    border: 1px solid var(--lt-border) !important;
    color: var(--lt-text) !important;
    box-shadow: var(--lt-shadow-sm);
}
.account-pill:hover, .cart-pill:hover, .tech-join-pill:hover {
    background: #e2e8f0 !important;
    border-color: var(--lt-border-strong) !important;
    color: var(--lt-text) !important;
}
.account-pill i, .cart-pill > i, .tech-join-pill i { color: #C5C5C5 !important; }
.account-pill:hover i, .cart-pill:hover > i, .tech-join-pill:hover i { color: var(--lt-text) !important; }
.account-pill-text strong, .cart-pill-text strong, .tech-join-pill-text strong { color: var(--lt-text) !important; }
.account-pill-text small, .cart-pill-text small, .tech-join-pill-text small { color: var(--lt-text-soft) !important; }
/* Cart badge (sepette ürün varsa sayı rozeti) */
.js-cart-badge.has-items {
    background: #C5C5C5 !important;
    color: #000 !important;
    box-shadow: 0 1px 4px rgba(15,23,42,0.12) !important;
}

/* Mega menü */
.nav-mega {
    background: #ffffff !important;
    border: 1px solid var(--lt-border) !important;
    box-shadow: var(--lt-shadow-lg) !important;
}
.header-dark .nav-mega-col-title,
.header-dark .nav-mega-col-title a,
.nav-mega-col-title, .nav-mega-col-title a { color: var(--lt-text) !important; }
.header-dark .nav-mega-col-title a:hover,
.nav-mega-col-title a:hover { color: var(--lt-primary) !important; }
.header-dark .nav-mega-col ul li a,
.nav-mega-col ul li a { color: var(--lt-text-muted) !important; }
.header-dark .nav-mega-col ul li a:hover,
.nav-mega-col ul li a:hover { color: var(--lt-primary) !important; }
.nav-mega::before { background: #ffffff !important; }

/* ---- GENEL SECTION/KART ---- */
.bg-light, .bg-dark { background: var(--lt-bg-soft) !important; }
.section-title h2 { color: var(--lt-text) !important; }
.section-title p { color: var(--lt-text-muted) !important; }

.service-card, .brand-item, .testimonial-card {
    background: #ffffff !important;
    border: 1px solid var(--lt-border) !important;
    box-shadow: var(--lt-shadow-sm) !important;
    color: var(--lt-text) !important;
}
.service-card:hover, .brand-item:hover, .testimonial-card:hover {
    border-color: var(--lt-primary) !important;
    box-shadow: var(--lt-shadow-md) !important;
    transform: translateY(-2px);
}
.service-card h3, .brand-item .brand-name,
.testimonial-card .author h4 { color: var(--lt-text) !important; }
.service-card p, .testimonial-card .message { color: var(--lt-text-muted) !important; }
.service-card-footer, .testimonial-card .author span { color: var(--lt-text-soft) !important; }
.service-card-footer i { color: var(--lt-primary) !important; }

/* ---- FORM INPUT ---- */
input[type="text"], input[type="email"], input[type="tel"], input[type="password"],
input[type="number"], input[type="search"], input[type="url"], input[type="date"],
textarea, select, .form-control, .form-select {
    background: var(--lt-bg-soft) !important;
    border: 1px solid var(--lt-border) !important;
    color: var(--lt-text) !important;
    box-shadow: inset 0 1px 2px rgba(15,23,42,0.03);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
input::placeholder, textarea::placeholder { color: #94a3b8 !important; }
input:hover, textarea:hover, select:hover { border-color: var(--lt-border-strong) !important; }
input:focus, textarea:focus, select:focus,
.form-control:focus, .form-select:focus {
    background: #ffffff !important;
    border-color: var(--lt-primary) !important;
    box-shadow: 0 0 0 4px var(--lt-primary-ring), inset 0 1px 2px rgba(15,23,42,0.03) !important;
    outline: none !important;
}
select option, .form-select option { background: #ffffff; color: var(--lt-text); }

/* ---- BUTONLAR: Primary CTA (#F8FAFC zemin + siyah yazı) ---- */
.btn-primary, .btn-callback, .btn-search,
.btn-submit, .btn-action-primary, .btn-action,
.sd-btn-buy, .sd-empty .sd-btn,
.reg-submit, .reg-btn-primary {
    background: #F8FAFC !important;
    color: #000 !important;
    font-weight: 700;
    border: 1px solid var(--lt-border) !important;
    border-radius: 10px !important;
    box-shadow: var(--lt-shadow-sm) !important;
    transition: transform .12s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    text-decoration: none;
}
.btn-primary:hover, .btn-callback:hover, .btn-search:hover,
.btn-submit:hover, .btn-action-primary:hover, .btn-action:hover,
.sd-btn-buy:hover, .sd-empty .sd-btn:hover,
.reg-submit:hover, .reg-btn-primary:hover {
    background: #e2e8f0 !important;
    border-color: var(--lt-border-strong) !important;
    box-shadow: var(--lt-shadow-md) !important;
    transform: translateY(-1px);
    color: #000 !important;
}
.btn-primary:active, .btn-callback:active, .btn-search:active { transform: translateY(0); }

/* ---- BUTONLAR: Gri/secondary (#F1F5F9 tabanlı) ---- */
.btn-outline, .header-dark .btn-outline,
.btn-secondary, .btn-action-outline,
.sd-btn-cart, .sd-demo-btn, .sd-loadmore, .sd-pg {
    background: #F1F5F9 !important;
    color: var(--lt-text) !important;
    border: 1px solid var(--lt-border) !important;
    border-radius: 10px !important;
    font-weight: 600;
    box-shadow: var(--lt-shadow-sm);
    transition: border-color .18s ease, color .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn-outline:hover, .header-dark .btn-outline:hover,
.btn-secondary:hover, .btn-action-outline:hover,
.sd-btn-cart:hover, .sd-demo-btn:hover, .sd-loadmore:hover,
.sd-pg:hover, .sd-pg.active {
    background: #e2e8f0 !important;
    color: var(--lt-primary) !important;
    border-color: var(--lt-primary) !important;
}

/* ---- BADGE / İKON ROZETLERİ (3. görsel gibi) ---- */
.icon-badge, .cat-pill-media, .svc-card-placeholder {
    background: var(--lt-bg-soft) !important;
    border: 1px solid var(--lt-border) !important;
    color: var(--lt-primary) !important;
    border-radius: 12px !important;
    box-shadow: var(--lt-shadow-sm);
}
.rating-badge, .svc-badge, .sd-chip, .service-tag, .sd-tag {
    background: var(--lt-primary-soft) !important;
    color: var(--lt-primary) !important;
    border: 1px solid rgba(197,197,197,0.25) !important;
}
.sd-tag:hover { border-color: var(--lt-primary) !important; color: var(--lt-primary) !important; }

/* ---- FOOTER ---- Note: .site-footer-custom (layout_footer.php) kendi koyu stilini getirir.
   Burada sadece sepet/odeme gibi kendi mini footer'ı olan sayfalar için light .footer kuralı var. */
.footer:not(.site-footer-custom):not(.site-footer) {
    background: var(--lt-bg-soft);
    color: var(--lt-text);
    border-top: 1px solid var(--lt-border);
    padding: 20px 0;
}
.footer:not(.site-footer-custom):not(.site-footer) a {
    color: var(--lt-text-muted);
}
.footer:not(.site-footer-custom):not(.site-footer) a:hover {
    color: var(--lt-text);
}
/* .cta-dark ve .section-dark — içerik sayfalarında opsiyonel koyu banner için */
.cta-dark, .section-dark {
    background: var(--lt-dark-grad) !important;
    color: #ffffff !important;
}
.cta-dark h1, .cta-dark h2, .cta-dark h3, .cta-dark h4,
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #ffffff !important; }
.cta-dark a, .section-dark a { color: #cbd5e1 !important; }
.cta-dark a:hover, .section-dark a:hover { color: #ffffff !important; }

/* ---- SEPET / ÖDEME / HESABIM (genel kart standardı) ---- */
.cart-item, .order-card, .order-row,
.cust-sidebar, .cust-card, .cust-table,
.checkout-card, .payment-card, .invoice-card {
    background: #ffffff !important;
    border: 1px solid var(--lt-border) !important;
    box-shadow: var(--lt-shadow-sm) !important;
    color: var(--lt-text) !important;
    border-radius: 14px;
}
.cust-avatar {
    background: #C5C5C5 !important;
    color: #000 !important;
    box-shadow: var(--lt-shadow-sm);
}
.cust-sidebar-head { border-bottom: 1px solid var(--lt-border); }
.cust-nav a { color: var(--lt-text) !important; }
.cust-nav a:hover, .cust-nav a.active {
    background: var(--lt-primary-soft) !important;
    color: var(--lt-primary) !important;
}

/* ---- TABLO ---- */
table { background: #ffffff; color: var(--lt-text); border-collapse: collapse; }
table th {
    background: var(--lt-bg-soft) !important;
    color: var(--lt-text) !important;
    border-bottom: 1px solid var(--lt-border) !important;
    font-weight: 700;
}
table td { border-bottom: 1px solid var(--lt-border); color: var(--lt-text); }
tr:hover td { background: var(--lt-bg-soft); }

/* ---- METIN UTILITY ---- */
.text-muted, .text-secondary { color: var(--lt-text-muted) !important; }
.text-light { color: var(--lt-text-soft) !important; }
.text-primary { color: var(--lt-primary) !important; }
hr { border-color: var(--lt-border) !important; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar-track { background: var(--lt-bg-soft); }
::-webkit-scrollbar-thumb { background: var(--lt-border-strong); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--lt-text-soft); }

/* ---- İKONLAR: Dekoratif ikonlar gri (#C5C5C5) ---- */
.service-card-footer i,
.firm-meta-item i,
.svc-card-count i,
.cat-pill-media i,
.icon-badge i,
.cust-nav a i,
.cust-sidebar i,
.nav-mega-col-title i,
.footer i, footer i,
.feature-item i,
.info-item i,
.contact-item i,
.social-links i,
.hero-search .search-field i,
.header-search i,
.header .logo i,
.filter-group i,
.filter-sidebar i,
p i, li i, td i,
h1 > i, h2 > i, h3 > i, h4 > i, h5 > i, h6 > i {
    color: #C5C5C5 !important;
}
/* Primary buton içindeki ikonlar — siyah (buton artık açık gri) */
.btn-primary i, .btn-callback i, .btn-search i,
.btn-submit i, .btn-action-primary i,
.sd-btn-buy i, .sd-empty .sd-btn i,
.reg-submit i, .reg-btn-primary i,
.btn-add i, .btn-save i {
    color: #000 !important;
}
/* Footer butonları hâlâ koyu zemin üstünde, beyaz kalsın */
footer .btn-primary i, .footer .btn-primary i { color: #ffffff !important; }
/* Aktif/seçili durumdaki ikonlar turuncu kalsın */
.nav-list > li > a.active i,
.nav-sub li a.active i,
.cust-nav a.active i,
.cust-nav a:hover i,
.filter-radio-item input:checked + label i,
.sd-list li a.active i,
a.active i, a:hover i:not(.btn i) {
    color: var(--lt-primary) !important;
}
/* Badge içindeki ikonlar */
.rating-badge i, .svc-badge i, .sd-chip i,
.callback-note i, .service-tag i {
    color: var(--lt-primary) !important;
}
/* Hero vurgu (turuncu kalsın) — .text-primary, logo vurgusu */
.text-primary > i, i.text-primary { color: var(--lt-primary) !important; }

/* ============================================================
   GÖRSEL FİLİGRAN (lazerkaynakbakim) + İNDİRME KORUMASI
   .wm-overlay sınıfı eklenmiş herhangi bir konteynerin üzerine
   ince diagonal SVG filigran bindirir. Klonlanan SVG'de text
   tile'lanarak resmin tüm yüzeyini yumuşakça örter.
   ============================================================ */
.wm-overlay { position: relative; }
.wm-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='260' height='110' viewBox='0 0 260 110'><text x='130' y='58' font-family='Arial,sans-serif' font-size='13' font-weight='700' fill='rgba(15,23,42,0.08)' text-anchor='middle' transform='rotate(-22 130 58)' letter-spacing='0.06em'>lazerkaynakbakim</text></svg>");
    background-repeat: repeat;
    background-position: center;
    /* Tarayıcı yakınlaştırmasında sabitlenmesi için boyut belirt */
    background-size: 260px 110px;
    mix-blend-mode: multiply;
    opacity: 0.85;
}
/* Galeri / ürün swiper'ında otomatik filigran — slide içine pseudo */
.pd-swiper .swiper-slide,
.pd-swiper-thumbs .swiper-slide,
.svc-pcard-img,
.cat-pill-media,
.firm-logo-wrap,
.featured-img,
.brand-circle-logo {
    position: relative;
}
.pd-swiper .swiper-slide::after,
.pd-swiper-thumbs .swiper-slide::after,
.svc-pcard-img::after,
.cat-pill-media::after,
.featured-img::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='260' height='110' viewBox='0 0 260 110'><text x='130' y='58' font-family='Arial,sans-serif' font-size='13' font-weight='700' fill='rgba(15,23,42,0.08)' text-anchor='middle' transform='rotate(-22 130 58)' letter-spacing='0.06em'>lazerkaynakbakim</text></svg>");
    background-repeat: repeat;
    background-size: 260px 110px;
    mix-blend-mode: multiply;
    opacity: 0.7;
}
/* Çok küçük ikon/logo alanlarında filigran gereksiz yer kaplar — gizle */
.firm-logo-wrap::after,
.brand-circle-logo::after { display: none; }

/* Tüm <img>'lere pasif koruma — drag/select engelle (browser destekli)
   data-allow-download taşıyanlar hariç. */
img:not([data-allow-download]) {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
