@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Corporate Dark Theme - Sade Siyah */
    --bg-main: #000000;
    --bg-header: #0a0a0a;
    --bg-card: #111111;
    --bg-input: #161616;
    --bg-input-dark: #161616;

    --text-main: #ffffff;
    --text-muted: #8a8a8a;

    --primary: #10b981; /* Emerald accent */
    --primary-hover: #059669;
    --primary-glow: rgba(16, 185, 129, 0.25);

    --success: #22c55e;
    --accent: #10b981;
    --accent-soft: #34d399;
    --border: rgba(255, 255, 255, 0.06);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.2);
    --shadow-md: 0 12px 30px rgba(0,0,0,0.4);
}

/* ── Light Mode (Sade) ── */
body.light-mode {
    --bg-main: #f8fafc;
    --bg-header: #ffffff;
    --bg-card: #ffffff;
    --bg-input: #f1f5f9;
    --bg-input-dark: #f1f5f9;

    --text-main: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;

    --border: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html, body {
    background-color: #000000;
}

body {
    background-color: #000000;
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
body.light-mode {
    background-color: var(--bg-main);
}

/* Kurumsal vurgu butonları - sade yeşil gradient + ışıma */
.btn-primary,
button.btn-primary,
.add-to-cart-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.18);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary:hover,
button.btn-primary:hover,
.add-to-cart-btn:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    transform: translateY(-1px);
}

/* Sade ışıma animasyonu - aktif kategori, vurgular */
@keyframes subtleGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(16, 185, 129, 0); }
    50%      { box-shadow: 0 0 18px rgba(16, 185, 129, 0.35); }
}
.glow-pulse {
    animation: subtleGlow 3.5s ease-in-out infinite;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ════ HEADER ════ */
header {
    background: var(--bg-header);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}
body.light-mode header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.header-top-social {
    display: flex;
    gap: 15px;
}
.header-top-social a:hover {
    color: var(--text-main);
}

.header-top-links {
    display: flex;
    gap: 20px;
}
.header-top-links a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.logo img {
    height: 64px;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 42px;
    position: relative;
}
.search-bar input {
    background: transparent;
    border: none;
    color: var(--text-main);
    width: 100%;
    margin-left: 10px;
    outline: none;
    font-size: 14px;
}
.search-bar i {
    color: var(--text-muted);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.icon-btn:hover {
    background: rgba(255,255,255,0.05);
}
.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 0 20px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: #fff;
    padding: 0 20px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Sub Navbar */
.sub-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    flex-wrap: wrap;
}
.sub-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.sub-nav .kategoriler {
    background: rgba(255,255,255,0.05);
    padding: 8px 15px;
    border-radius: 20px;
}
.nav-item-special {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-left: auto;
}

/* Category Circles */
.category-circles {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 25px 0;
    background: var(--bg-main);
    flex-wrap: wrap;
}
.cat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.cat-circle .img-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-header);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}
.cat-circle:hover .img-wrapper {
    border-color: var(--primary);
    transform: translateY(-5px);
}
.cat-circle img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}
.cat-circle span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}
.cat-circle:hover span {
    color: #fff;
}

/* ════ HERO SLIDER ════ */
.hero-slider-wrap {
    margin-top: 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.hero-slider-wrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ════ MODALS (LOGIN / REGISTER) ════ */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    display: flex;
    width: 900px;
    max-width: 95%;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    transform: translateY(20px);
    transition: var(--transition);
}
.modal-overlay.active .modal-box {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(255,255,255,0.05);
    border: none;
    color: var(--text-main);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}
body.light-mode .modal-close {
    background: rgba(0,0,0,0.05);
}
.modal-close:hover {
    background: rgba(255,255,255,0.1);
}
body.light-mode .modal-close:hover {
    background: rgba(0,0,0,0.1);
}

.modal-left {
    flex: 1;
    padding: 40px;
}
.modal-right {
    flex: 1;
    background: var(--bg-header);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border);
}
body.light-mode .modal-right {
    background: #f8fafc;
}

.modal-left .title h2 {
    font-size: 28px;
    margin-bottom: 5px;
}
.modal-left .title p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}
.modal-left .title a {
    color: var(--primary);
    font-weight: bold;
}

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

/* ═══════════════════════════════════════════════════ */
/*  AUTH MODAL — Premium SaaS Redesign               */
/* ═══════════════════════════════════════════════════ */

/* Overlay */
.auth-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.auth-overlay.active { opacity: 1; visibility: visible; }
.auth-overlay.active .auth-modal {
    transform: translateY(0) scale(1); opacity: 1;
}

/* Close Button */
.auth-modal-close {
    position: absolute; top: 18px; right: 18px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    width: 34px; height: 34px; border-radius: 50%;
    color: var(--text-muted); font-size: 15px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 10; transition: all 0.2s;
}
.auth-modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
body.light-mode .auth-modal-close { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.06); color: #94a3b8; }
body.light-mode .auth-modal-close:hover { background: rgba(0,0,0,0.08); color: #1e293b; }

/* Modal Container */
.auth-modal {
    width: 960px !important; max-width: 96vw;
    min-height: auto;
    border-radius: 24px !important;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03);
    transform: translateY(20px) scale(0.97); opacity: 0;
    transition: transform 0.4s cubic-bezier(.16,1,.3,1), opacity 0.35s ease;
    overflow: hidden;
}
body.light-mode .auth-modal {
    border-color: #e2e8f0 !important;
    box-shadow: 0 25px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
}

/* Left Panel */
.auth-modal .modal-left {
    flex: 1.15;
    padding: 44px 48px 44px !important;
    overflow-y: auto;
    max-height: 92vh;
}
.auth-modal .modal-left::-webkit-scrollbar { width: 4px; }
.auth-modal .modal-left::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

/* Toggle Pill */
.auth-toggle-pill {
    display: inline-flex;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 4px;
    border: 1px solid rgba(255,255,255,0.06);
    gap: 2px;
}
body.light-mode .auth-toggle-pill {
    background: #f1f5f9;
    border-color: #e2e8f0;
}
.auth-toggle-btn {
    padding: 10px 28px;
    font-size: 13px; font-weight: 700;
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none; background: transparent;
    letter-spacing: 0.01em;
}
.auth-toggle-btn:hover { color: var(--text-main); }
.auth-toggle-btn.active {
    background: var(--primary);
    color: #fff !important;
    box-shadow: 0 4px 16px var(--primary-glow);
}

/* Title */
.auth-modal .title h2 {
    font-size: 28px !important; font-weight: 900; letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.auth-modal .title p {
    font-size: 14px; color: var(--text-muted);
}

/* Form Labels */
.auth-modal .form-group label {
    font-size: 13px; font-weight: 700; color: var(--text-main);
    margin-bottom: 8px; display: block;
    letter-spacing: 0.01em;
}

/* Input Fields */
.auth-input {
    position: relative;
}
.auth-input .form-control {
    background: rgba(255,255,255,0.04) !important;
    border: 1.5px solid rgba(255,255,255,0.08) !important;
    height: 50px;
    border-radius: 14px;
    font-weight: 500; font-size: 14px;
    padding-left: 46px !important;
    color: var(--text-main);
    transition: all 0.25s ease;
}
body.light-mode .auth-input .form-control {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
}
.auth-input .form-control::placeholder { color: var(--text-muted); opacity: 0.6; }
.auth-input .form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px var(--primary-glow) !important;
    background: rgba(255,255,255,0.06) !important;
}
body.light-mode .auth-input .form-control:focus {
    background: #fff !important;
    box-shadow: 0 0 0 4px var(--primary-glow) !important;
}
.auth-input i {
    position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    color: var(--text-muted); font-size: 15px; opacity: 0.6;
    transition: color 0.2s;
}
.auth-input:focus-within i { color: var(--primary); opacity: 1; }

/* Submit Button */
.auth-modal .btn-primary.btn-block {
    border-radius: 14px !important;
    height: 52px;
    font-size: 15px !important; font-weight: 800 !important;
    background: var(--primary) !important;
    border: none !important;
    box-shadow: 0 6px 24px var(--primary-glow);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}
.auth-modal .btn-primary.btn-block:hover {
    box-shadow: 0 8px 32px var(--primary-glow);
    transform: translateY(-1px);
}

/* ─── Right Panel ─── */
.auth-right-panel {
    flex: 0.85 !important;
    background: linear-gradient(165deg, rgba(0,184,148,0.06) 0%, transparent 50%) !important;
    position: relative; overflow: hidden;
    border-left: 1px solid rgba(255,255,255,0.04) !important;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 50px 30px !important;
}
body.light-mode .auth-right-panel {
    background: linear-gradient(165deg, rgba(0,184,148,0.04) 0%, #f8fafc 50%) !important;
    border-left-color: #e2e8f0 !important;
}

/* Decorative Circle */
.auth-right-decor {
    position: absolute; top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(0,184,148,0.08) 0%, transparent 70%);
    border-radius: 50%; z-index: 1;
}
.auth-right-icon {
    position: relative; z-index: 2;
    width: 72px; height: 72px;
    background: linear-gradient(135deg, rgba(0,184,148,0.15), rgba(0,184,148,0.05));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 28px;
    margin: 0 auto 24px;
    border: 1px solid rgba(0,184,148,0.15);
    box-shadow: 0 8px 30px rgba(0,184,148,0.12);
}

/* Welcome */
.auth-right-panel .welcome h3 {
    font-size: 24px !important; font-weight: 900; letter-spacing: -0.02em;
    margin-bottom: 8px !important;
}
.auth-right-panel .welcome p {
    font-size: 14px; color: var(--text-muted); opacity: 0.8;
}

/* Perk Cards */
.auth-perk-card {
    background: rgba(255,255,255,0.04);
    padding: 14px 18px; border-radius: 14px;
    width: 88%;
    display: flex; align-items: center; gap: 14px;
    font-size: 13px; font-weight: 700;
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.25s ease;
}
body.light-mode .auth-perk-card {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.auth-perk-card:hover {
    border-color: rgba(0,184,148,0.2);
    transform: translateX(4px);
}
.auth-perk-card .icon {
    width: 38px; height: 38px; min-width: 38px;
    background: rgba(0, 184, 148, 0.1);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    border-radius: 11px; font-size: 16px;
}

/* WhatsApp Support Box */
.auth-whatsapp-box {
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex; align-items: center; gap: 14px;
    width: 88%; margin: 0 auto;
    color: var(--text-main);
    font-size: 12.5px; line-height: 1.6; text-align: left;
}
.auth-whatsapp-box i {
    font-size: 26px; color: #22c55e; min-width: 26px;
}
body.light-mode .auth-whatsapp-box {
    background: #f0fdf4; border-color: #bbf7d0;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .auth-modal { width: 100% !important; border-radius: 18px !important; }
    .auth-modal .modal-left { padding: 32px 28px !important; }
    .auth-modal .modal-right { display: none !important; }
}
.form-row {
    display: flex;
    gap: 15px;
}
.form-row .form-group {
    flex: 1;
}
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
}
.form-control {
    width: 100%;
    background: var(--bg-input-dark);
    border: 1px solid var(--border);
    color: #fff;
    height: 48px;
    border-radius: 8px;
    padding: 0 15px 0 48px;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}
.form-control:focus {
    border-color: var(--primary);
}
.input-wrap {
    position: relative;
}
.input-wrap i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}
.input-wrap .form-control {
    padding-left: 48px !important;
}
.input-wrap.light-bg .form-control {
    background: #f4f7fb;
    color: #000;
    border: none;
}
.input-wrap.light-bg i {
    color: #666;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.form-check input {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}
.form-check a {
    color: var(--primary);
    font-weight: bold;
}
.forgot-pass {
    float: right;
    color: var(--primary);
    font-weight: bold;
    font-size: 13px;
}

.btn-block {
    width: 100%;
    height: 48px;
    font-size: 16px;
}

.modal-right .welcome {
    text-align: center;
    margin-bottom: 40px;
}
.modal-right .welcome h3 {
    font-size: 24px;
    margin-bottom: 5px;
}
.modal-right .welcome p {
    color: var(--text-muted);
    font-size: 14px;
}
.perk-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.perk-box i {
    color: var(--primary);
    font-size: 20px;
}
.perk-box span {
    font-weight: 600;
    font-size: 14px;
}
.help-box {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
}
.help-box i {
    color: var(--success);
    font-size: 24px;
}
.help-box p {
    font-size: 13px;
    color: #bbb;
}
.help-box p b {
    color: var(--success);
}

/* ════ PROFILE DASHBOARD ════ */
.profile-layout {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}
.profile-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: var(--bg-header);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}
.profile-user {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.profile-user .avatar {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    color: #fff;
}
.profile-user h4 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
}
.profile-user .balance {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.profile-nav {
    padding: 15px;
}
.profile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}
.profile-nav a:hover, .profile-nav a.active {
    background: var(--primary);
    color: #fff;
}
.profile-nav a i {
    width: 20px;
    text-align: center;
}

.profile-content {
    flex: 1;
}
.profile-header h2 {
    font-size: 24px;
    margin-bottom: 5px;
}
.profile-header p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.stat-item {
    background: var(--bg-header);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.stat-item .icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}
.stat-item .info span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px;
}
.stat-item .info strong {
    font-size: 18px;
    font-weight: bold;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.action-card {
    background: var(--bg-header);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.cat-explore-arrow {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 11px;
    transition: var(--transition);
}
.cat-explore-card:hover .cat-explore-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: none;
}
.action-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}
.action-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--text-muted);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    transition: var(--transition);
}
.action-card:hover .icon {
    border-color: var(--primary);
    color: var(--primary);
}
.action-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}
.action-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.help-banner {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.help-banner h3 {
    font-size: 20px;
    margin-bottom: 5px;
}
.help-banner p {
    font-size: 14px;
    opacity: 0.9;
}
.help-banner .btn {
    background: #fff;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
}

/* ════ FOOTER ════ */
footer {
    background: var(--bg-main);
    border-top: 1px solid var(--border);
    padding: 60px 0 20px;
    margin-top: auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}
.footer-about {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--bg-header);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col h4::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before {
    content: '•';
    color: var(--primary);
}
.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-header);
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}
.footer-contact-item i {
    color: var(--primary);
    font-size: 20px;
}
.footer-contact-item span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}
.footer-contact-item strong {
    font-size: 14px;
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}
.payment-methods {
    display: flex;
    gap: 10px;
}
.payment-methods span {
    background: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    color: #000;
    font-size: 12px;
}
.payment-methods .shopier {
    background: #392b58;
    color: #fcb045;
}
.payment-methods .paytr {
    background: #1e3a8a;
    color: #60a5fa;
}

.whatsapp-float {
    background: var(--success);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* UTILITIES */
.d-none { display: none !important; }
.d-flex { display: flex !important; }

/* ════ CATEGORY LAYOUT ════ */
.category-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}
@media (max-width: 900px) {
    .category-layout {
        grid-template-columns: 1fr;
    }
}
.category-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.category-poster-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.category-poster-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.category-sidebar-info {
    padding: 20px;
    text-align: center;
}
.category-sidebar-info h2 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.category-sidebar-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.category-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.category-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 15px;
}
.header-title-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-title-box img {
    height: 54px;
    width: auto;
    object-fit: contain;
}
.header-title-box h1 {
    font-size: 1.5rem;
    margin: 0;
}
.header-search {
    position: relative;
    display: flex;
    align-items: center;
}
.header-search i {
    position: absolute;
    left: 10px;
    color: var(--text-muted);
}
.header-search input {
    background: var(--bg-main);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 8px 10px 8px 30px;
    border-radius: var(--radius-sm);
    outline: none;
}
.header-select {
    background: var(--bg-main);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    outline: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

/* ════ MISSING / FIX: CSS TAMAMLAMA BLOĞU ════ */

/* CSS Variables - Eksik değişkenler */
:root {
    --danger: #ef4444;
    --bg-card-hover: #163a31;
}/* ════ PAGE CONTENT ════ */
.page-content {
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 60px;
}

/* ════ SECTION HEADER ════ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 10px;
}
.section-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}
.view-all {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    transition: var(--transition);
}
.view-all:hover {
    color: var(--primary-hover);
}

/* ════ COUNTDOWN BADGE ════ */
.countdown-badge {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}
.countdown-badge span {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

/* ════ PRODUCT GRID ════ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
}

/* ════ PRODUCT CARD ════ */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(25, 114, 245, 0.15);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--bg-main);
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
/* removed scale animation */

.quick-view-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(25, 114, 245, 0.92);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: var(--transition);
}
.product-card:hover .quick-view-overlay {
    transform: translateY(0);
}

.product-info {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.product-info h3 {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
    margin-bottom: 8px;
}
.product-features {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}
.p-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.p-feature-item:last-child {
    border-bottom: none;
}
.p-feature-item i {
    width: 14px;
    text-align: center;
    font-size: 12px;
}
.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
}
.price-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
}
.price-old {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 6px;
}

/* Buy Button */
.btn-buy-mini {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-buy-mini:hover {
    background: var(--primary-hover);
}

/* ════ PRODUCT BADGE RIBBON ════ */
.product-badge-ribbon {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Dynamic Borders & Ribbon Colors */
.product-card.badge-best-seller { border-color: rgba(245, 158, 11, 0.4) !important; }
.product-card.badge-best-seller .product-badge-ribbon { background: #f59e0b; color: #000; }

.product-card.badge-featured { border-color: rgba(236, 72, 153, 0.4) !important; }
.product-card.badge-featured .product-badge-ribbon { background: #ec4899; color: #fff; }

.product-card.badge-hot { border-color: rgba(239, 68, 68, 0.4) !important; }
.product-card.badge-hot .product-badge-ribbon { background: #ef4444; color: #fff; }

.product-card.badge-new { border-color: rgba(14, 165, 233, 0.4) !important; }
.product-card.badge-new .product-badge-ribbon { background: #0ea5e9; color: #fff; }

.product-card.badge-sale { border-color: rgba(245, 158, 11, 0.4) !important; }
.product-card.badge-sale .product-badge-ribbon { background: var(--accent); color: #000; }

.product-card.badge-auto { border-color: rgba(14, 165, 233, 0.4) !important; }
.product-card.badge-auto .product-badge-ribbon { background: #0ea5e9; color: #fff; }

/* Card hover state should respect badge color if present */
.product-card.badge-best-seller:hover { box-shadow: 0 8px 30px rgba(245, 158, 11, 0.2); }
.product-card.badge-featured:hover { box-shadow: 0 8px 30px rgba(236, 72, 153, 0.2); }
.product-card.badge-hot:hover { box-shadow: 0 8px 30px rgba(239, 68, 68, 0.2); }
.product-card.badge-new:hover { box-shadow: 0 8px 30px rgba(34, 197, 94, 0.2); }
.product-card.badge-sale:hover { box-shadow: 0 8px 30px rgba(245, 158, 11, 0.2); }
.product-card.badge-auto:hover { box-shadow: 0 8px 30px rgba(14, 165, 233, 0.2); }

/* ════ WISHLIST HEART ════ */
.wishlist-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    font-size: 14px;
    backdrop-filter: blur(4px);
}
.wishlist-heart:hover,
.wishlist-heart.active {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
}

/* ════ HERO SLIDER FIX ════ */
.hero-slider-wrap {
    margin-top: 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    min-height: 300px;
    background: var(--bg-card);
}
.hero-slider {
    width: 100%;
    height: 420px;
}
.hero-slider .swiper-slide {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--primary);
}
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,0.4);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
}

/* Slider placeholder/fallback */
.slider-placeholder {
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #13141a 0%, #1a1d2e 100%);
    flex-direction: column;
    gap: 15px;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ════ CART DRAWER ════ */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1500;
    display: none;
    backdrop-filter: blur(3px);
}
.cart-overlay.active {
    display: block;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 95vw;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 1600;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}
.cart-drawer.open,
.cart-drawer.active {
    right: 0;
}
.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-drawer-header button {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}
.cart-drawer-header button:hover {
    background: rgba(255,255,255,0.1);
}
.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cart-drawer-items::-webkit-scrollbar {
    width: 4px;
}
.cart-drawer-items::-webkit-scrollbar-track {
    background: var(--bg-main);
}
.cart-drawer-items::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    gap: 12px;
    font-size: 0.9rem;
}
.cart-empty i {
    font-size: 3rem;
    opacity: 0.3;
}
.cart-item {
    display: flex;
    gap: 12px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px;
    align-items: center;
}
.cart-item img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}
.cart-item-info {
    flex: 1;
    min-width: 0;
}
.cart-item-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.cart-item-info span {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
}
.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
}
.cart-item-remove:hover {
    color: #ef4444;
}
.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

/* ════ NOTIFICATION TOAST ════ */
.notification-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 250px;
    max-width: 360px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}
.notification-toast.show {
    transform: translateY(0);
    opacity: 1;
}
.notification-toast.success {
    border-color: var(--success);
}
.notification-toast.success i {
    color: var(--success);
}
.notification-toast.error {
    border-color: #ef4444;
}
.notification-toast.error i {
    color: #ef4444;
}
.notification-toast.info i {
    color: var(--primary);
}

/* ════ HEADER SCROLLED STATE ════ */
header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* ════ SEARCH SUGGESTIONS ════ */
.search-suggestions {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    z-index: 200;
    max-height: 350px;
    overflow-y: auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    cursor: pointer;
    transition: var(--transition);
}
.suggestion-item:hover {
    background: rgba(255,255,255,0.05);
}
.suggestion-item img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
}
.suggestion-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ════ QUICK VIEW MODAL ════ */
.quick-view-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}
.quick-view-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.quick-view-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
}
.quick-view-img {
    width: 320px;
    flex-shrink: 0;
    object-fit: cover;
}
.quick-view-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ════ LIGHT MODE ════ */
body.light-mode {
    --bg-main: #f4f6f9;
    --bg-header: #ffffff;
    --bg-card: #ffffff;
    --bg-input-dark: #f0f2f5;
    --text-main: #0f1015;
    --text-muted: #64748b;
    --text-secondary: #475569;
    --border: #e2e8f0;
    --glass-border: rgba(0,0,0,0.08);
    --shadow: 0 8px 32px rgba(0,0,0,0.12);
}

body.light-mode .product-card {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
body.light-mode .search-bar {
    background: #f0f2f5;
    border-color: #e2e8f0;
}
body.light-mode .search-bar input {
    color: #0f1015;
}
body.light-mode .icon-btn {
    border-color: #e2e8f0;
    color: #0f1015;
}

/* ════ RESPONSIVE ════ */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .hero-slider {
        height: 220px;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .header-main {
        gap: 15px;
    }
    .search-bar {
        max-width: none;
    }
    .header-top {
        display: none;
    }
    .sub-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 5px;
    }
    .sub-nav::-webkit-scrollbar {
        display: none;
    }
    .nav-item-special {
        margin-left: 0;
    }
    .category-circles {
        gap: 15px;
        padding: 15px 10px;
    }
    .cart-drawer {
        width: 100%;
        max-width: 100vw;
        right: -100vw;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .section-header h2 {
        font-size: 1.1rem;
    }
    .price-value {
        font-size: 0.9rem;
    }
    .btn-buy-mini {
        padding: 6px 8px;
        font-size: 0.7rem;
    }
}

/* ════ NOTIFICATION CONTAINER ════ */
#notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.notification {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    min-width: 240px;
    max-width: 340px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.4);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}
.notification.show {
    transform: translateX(0);
    opacity: 1;
}
.notification.success {
    border-color: rgba(34, 197, 94, 0.4);
}
.notification-icon {
    font-size: 1.1rem;
}
.notification.success .notification-icon { color: var(--success); }
.notification.error .notification-icon { color: #ef4444; }
.notification.info .notification-icon { color: var(--primary); }
.notification.error { border-color: rgba(239, 68, 68, 0.4); }
.notification.info { border-color: rgba(25, 114, 245, 0.4); }

/* ════ SWIPER HERO SLIDE CONTENT ════ */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}
.slide-content h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.slide-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ════ RECENTLY VIEWED SECTION ════ */
#recently-viewed-container {
    margin-top: 4rem;
}

/* ════ EMPTY STATE ════ */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--text-muted);
    text-align: center;
    gap: 12px;
}
.empty-state i {
    font-size: 3rem;
    opacity: 0.3;
}
.empty-state p {
    font-size: 0.95rem;
}

/* ════ BREADCRUMB ════ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 15px 0;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb .sep { opacity: 0.4; }

/* ════ MISSING CSS VARIABLES — GLOBAL FIX ════ */
:root {
    --glass-border: rgba(255,255,255,0.08);
    --text-secondary: #a0a8b8;
    --primary-gradient: linear-gradient(135deg, #00b894 0%, #00876c 100%);
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-primary: 0 4px 20px rgba(0, 184, 148, 0.4);
}

/* ════ BTN-LOGIN (Admin + Category pages) ════ */
.btn-login {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-login:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}
.btn-ghost {
    background: rgba(255,255,255,0.05);
    color: var(--text-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 24px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
body.light-mode .btn-ghost {
    background: #f1f5f9;
    color: #1e293b;
    border-color: #e2e8f0;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
}
body.light-mode .btn-ghost:hover {
    background: #e2e8f0;
}

/* ════ COMMENTS SECTION ════ */
.comments-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 20px;
}
.comments-container h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}
.comments-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ════ NEWSLETTER POPUP ════ */
#newsletter-popup .btn-login {
    background: var(--primary);
}

/* ════ CART ITEM BORDER FIX ════ */
.cart-item {
    border-bottom: 1px solid var(--border) !important;
}
.cart-item:last-child {
    border-bottom: none !important;
}

/* ════ BADGE NEON ════ */
.badge-neon {
    display: inline-block;
    background: rgba(25, 114, 245, 0.15);
    border: 1px solid rgba(25, 114, 245, 0.4);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ════ TEXT-SECONDARY FIX ════ */
.text-secondary, [style*="text-secondary"] {
    color: var(--text-secondary) !important;
}

/* ════ PRODUCT CARD HOVER — cart-item polish ════ */
.cart-drawer-items .cart-item {
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-main);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.cart-drawer-items .cart-item:last-child {
    margin-bottom: 0;
}

/* ════ AUTOPLAY PROGRESS (Swiper) ════ */
.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #fff;
    font-weight: 700;
}
.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 3px;
    stroke: var(--primary);
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}
.autoplay-progress circle {
    r: 20;
    cx: 24;
    cy: 24;
}
.autoplay-progress span {
    position: relative;
    z-index: 20;
}

/* ════ HERO SLIDE CONTENT ════ */
.hero-slide-content {
    position: relative;
    height: 420px;
    overflow: hidden;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-text-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    max-width: 500px;
}
.hero-text-content h1 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.hero-text-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-bottom: 20px;
}
.hero-btns {
    display: flex;
    gap: 12px;
}

/* ════ PROFILE PAGES ════ */
.profile-layout {
    margin-bottom: 60px;
}

/* ════ MISSING: page-content bottom padding ════ */
.page-content.container,
main.page-content {
    padding-bottom: 80px;
}

/* ════ SCROLLBAR GLOBAL ════ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ════ SKELETON LOADER ════ */
.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-input-dark) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}
@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ════ PRODUCT CARD SKELETON ════ */
.product-card-skeleton {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.product-card-skeleton .img-skel {
    aspect-ratio: 1/1;
    width: 100%;
}
.product-card-skeleton .info-skel {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-card-skeleton .line {
    height: 12px;
    border-radius: 4px;
}
.product-card-skeleton .line.short { width: 60%; }
.product-card-skeleton .line.long { width: 90%; }

/* ════ FORM FOCUS STATES ════ */
.form-control:focus,
.header-search input:focus,
.header-select:focus {
    box-shadow: 0 0 0 2px rgba(25, 114, 245, 0.2);
}

/* ════ RESPONSIVE FIXES ════ */
@media (max-width: 600px) {
    .modal-box {
        flex-direction: column;
    }
    .modal-right {
        display: none;
    }
    .hero-text-content {
        left: 20px;
        bottom: 20px;
    }
    .hero-text-content h1 {
        font-size: 1.4rem;
    }
    .profile-layout {
        flex-direction: column;
    }
    .profile-sidebar {
        width: 100%;
    }
    .stats-grid, .actions-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════
   GELİŞTİRMELER — Kapsamlı UI İyileştirmeleri
   ═══════════════════════════════════════════════════ */

/* ── Header kullanıcı profil widget'ı ── */
.user-menu-wrap {
    position: relative;
}
.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 14px 6px 6px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-main);
}
.user-menu-btn:hover { background: rgba(255,255,255,0.09); }
.user-avatar {
    width: 32px; height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800; color: #fff;
    flex-shrink: 0;
}
.user-menu-info { display: flex; flex-direction: column; }
.user-menu-info .u-name { font-size: 13px; font-weight: 700; line-height: 1.2; }
.user-menu-info .u-balance { font-size: 11px; color: var(--primary); font-weight: 700; }

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 999;
    overflow: hidden;
}
.user-menu-wrap.open .user-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.user-dropdown-header {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}
.user-dropdown-header .email { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.user-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 16px;
    font-size: 13px; font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.user-dropdown a:hover { background: rgba(255,255,255,0.04); color: var(--text-main); }
.user-dropdown a i { width: 16px; text-align: center; }
.user-dropdown .logout-btn { color: #ef4444; }
.user-dropdown .logout-btn:hover { background: rgba(239,68,68,0.08); color: #ef4444; }

/* ── Logo alanı ── */
.logo img { height: 64px; object-fit: contain; } /* Increased from 42px */
.logo-link { display: flex; align-items: center; gap: 12px; }
.logo-text {
    font-size: 1.6rem; font-weight: 900;
    letter-spacing: -0.8px;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.light-mode .logo-text {
    background: linear-gradient(135deg, #0f172a 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* ── Category circles geliştirmesi ── */
.category-circles {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 20px 0;
    background: linear-gradient(180deg, var(--bg-header) 0%, var(--bg-main) 100%);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.cat-circle .img-wrapper {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.cat-circle:hover .img-wrapper, 
.cat-circle.active .img-wrapper {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--primary-glow);
}
.cat-circle span { font-size: 12px; font-weight: 700; color: var(--text-muted); margin-top: 8px; transition: color 0.2s; }
.cat-circle:hover span,
.cat-circle.active span { color: var(--primary); }

/* ── Ürün kartı geliştirme ── */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex; flex-direction: column;
}
body.light-mode .product-card {
    border-color: rgba(0,0,0,0.06);
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}
.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--primary-glow);
}

/* ── Çekiliş Kartı (Giveaway) Premium Styles ── */
.giveaway-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    animation: fadeInUp 0.4s ease both;
    box-shadow: var(--shadow-sm);
}
body.light-mode .giveaway-card {
    border-color: rgba(0,0,0,0.06);
}
.giveaway-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px var(--primary-glow);
}
.giveaway-banner { position: relative; height: 160px; overflow: hidden; background: #000; }
.giveaway-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; opacity: 0.8; }
.giveaway-card:hover .giveaway-banner img { transform: scale(1.05); opacity: 1; }
.giveaway-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, var(--bg-card) 0%, transparent 60%);
}
.giveaway-banner-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--primary);
    backdrop-filter: blur(4px);
    color: #fff; padding: 5px 12px; border-radius: 8px;
    font-size: 11px; font-weight: 800;
    box-shadow: 0 4px 15px var(--primary-glow);
    z-index: 2;
}
.giveaway-body { padding: 20px; }
.giveaway-body h3 { font-size: 17px; font-weight: 800; color: var(--text-main); margin-bottom: 12px; }
.giveaway-requirements ul li {
    color: var(--text-muted);
    font-size: 12px;
}
.giveaway-requirements ul li i { color: var(--primary); }
.join-btn:hover {
    background: #0d4fd6 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(25,114,245,0.4);
}
.join-btn:active { transform: translateY(0); }
.join-btn:disabled { opacity: 0.7; cursor: not-allowed; filter: grayscale(0.5); }
.product-img-wrapper { aspect-ratio: 1/1; overflow: hidden; background: #0a0b0f; position: relative; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
/* removed scale animation */

/* ── Section header geliştirme ── */
.section-header h2 {
    font-size: 1.35rem; font-weight: 800;
    display: flex; align-items: center; gap: 10px;
}
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 60%);
    margin: 6px 0 20px;
    border: none;
}

/* ── Hero slider geliştirme ── */
.hero-slider-wrap {
    margin-top: 24px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    position: relative;
}
.hero-slider { width: 100%; height: 420px; }

/* ── Flash sale badge animasyonu ── */
@keyframes pulse-red {
    0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
    50%      { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}
.countdown-badge { animation: pulse-red 2s infinite; }

/* ── Sepet çekmecesi boş durumu ── */
.cart-empty {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    flex: 1; gap: 14px;
    color: var(--text-muted);
}
.cart-empty i { font-size: 3.5rem; opacity: 0.2; }
.cart-empty p { font-size: 0.9rem; }

/* ── Modal (Genel/Frontend) ── */
.admin-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center;
    z-index: 10000; padding: 20px;
}
.modal-body {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    position: relative;
    max-width: 100%;
}
.modal-close {
    position: absolute; top: 12px; right: 12px;
    background: none; border: none; color: var(--text-muted);
    font-size: 24px; cursor: pointer; line-height:1;
}
.modal-close:hover { color: var(--text-main); }

/* ── Sub-nav hover efektleri ── */
.sub-nav a { position: relative; }
.sub-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.2s ease;
    border-radius: 2px;
}
.sub-nav a:hover::after { transform: scaleX(1); }
.sub-nav .kategoriler::after { display: none; }

/* ── Profil sayfası iyileştirme ── */
.profile-user .avatar {
    background: linear-gradient(135deg, var(--primary) 0%, #0d4fd6 100%);
    box-shadow: 0 8px 24px rgba(25,114,245,0.4);
}

/* ── Giriş/Kayıt form iyileştirmesi ── */
.form-control {
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* ── Footer iyileştirme ── */
.footer-col h4 { font-size: 14px; font-weight: 800; margin-bottom: 18px; color: var(--text-main); }
body.light-mode .footer-col h4 { color: #1e293b; }
.footer-col a { color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); }

/* ── Scrolled header shadow ── */
header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    background: var(--bg-header);
}
body.light-mode header.scrolled {
    background: #fff;
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}

/* ── Badge animasyonu ── */
.badge {
    animation: none;
}
.badge-pop {
    animation: badge-bounce 0.3s cubic-bezier(0.36,0.07,0.19,0.97);
}
@keyframes badge-bounce {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.4); }
}

/* ── İçerik yüklenme efekti ── */
@keyframes fadeInUp {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
}
.product-card { animation: fadeInUp 0.4s ease both; }
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.10s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.20s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.30s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.40s; }

/* ── Whatsapp float butonu ── */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    z-index: 9000;
    background: #25d366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700; font-size: 14px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 24px rgba(37,211,102,0.5);
    transition: var(--transition);
    text-decoration: none;
    animation: fadeInUp 0.6s 1s ease both;
}
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37,211,102,0.6);
    color: #fff;
}

/* ── Form Controls Premium ── */
.form-control {
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text-main);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.2s;
}
body.light-mode .form-control {
    background: #f8fafc;
    border-color: #cbd5e1;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
    outline: none;
}

/* ── Tema geçiş butonu ── */
.icon-btn.theme-toggle { overflow: hidden; }
.icon-btn.theme-toggle i { transition: all 0.3s; }

/* ── Arama çubuğu geliştirmesi ── */
.search-bar {
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(25,114,245,0.12);
}

/* ═══════════════════════════════════════════════════════
   HEADER — Gamesepet Tarzı Komple Yeniden Tasarım
   ═══════════════════════════════════════════════════════ */

/* ── TOP BAR ── */
.header-top {
    background: #0b0c10;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 7px 0;
    font-size: 12px;
    color: var(--text-muted);
}
.header-top-social {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header-top-social a {
    color: #5a5e72;
    font-size: 14px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}
.header-top-social a:hover { color: #fff; }

.header-top-links {
    display: flex;
    align-items: center;
    gap: 0;
}
.header-top-links a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #5a5e72;
    font-size: 12px;
    font-weight: 600;
    padding: 0 14px;
    transition: color 0.2s;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.header-top-links a:first-child { border-left: 1px solid rgba(255,255,255,0.06); }
.header-top-links a:hover { color: #fff; }
.header-top-links i { font-size: 11px; }
.top-divider { display: none; } /* handled by border-right */

/* ── MAIN HEADER ── */
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 24px;
    background: var(--bg-header);
}
.logo img { height: 64px; object-fit: contain; max-width: 260px; }
.logo a { display: flex; align-items: center; }

.search-bar {
    flex: 1;
    max-width: 540px;
    background: #0d0e14;
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    height: 44px;
    gap: 10px;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(25,114,245,0.12);
}
.search-bar > i { color: #4a4f66; font-size: 14px; flex-shrink: 0; }
.search-bar input {
    background: transparent;
    border: none;
    color: var(--text-main);
    width: 100%;
    outline: none;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
}
.search-bar input::placeholder { color: #4a4f66; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.icon-btn {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.07);
    color: var(--text-main);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    font-size: 16px;
}
.icon-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.badge {
    position: absolute;
    top: -5px; right: -5px;
    background: #ef4444;
    color: #fff;
    font-size: 9px; font-weight: 800;
    border-radius: 50%;
    width: 17px; height: 17px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--bg-header);
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 0 18px;
    height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 7px;
    border-radius: 10px;
    font-weight: 700; font-size: 14px;
    border: none; cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: #fff;
    padding: 0 18px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 7px; border-radius: 10px;
    font-weight: 700; font-size: 14px;
    border: 1.5px solid rgba(255,255,255,0.1);
    cursor: pointer; transition: var(--transition);
    white-space: nowrap; text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* ── Trust Section ── */
.trust-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.trust-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}
.trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px var(--primary-glow);
}
.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.trust-info { display: flex; flex-direction: column; }
.trust-info span { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.trust-info strong { font-size: 16px; font-weight: 800; color: var(--text-main); line-height: 1.2; }
.trust-info small { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ══════════════════════════════════════════════
   CATEGORY NAV BAR — Gamesepet Style
   ══════════════════════════════════════════════ */
.cat-nav-wrap {
    background: var(--bg-header);
    border-top: 1px solid var(--border);
    border-bottom: 2px solid var(--border);
    position: relative;
}
body.light-mode .cat-nav-wrap {
    background: #fff;
    border-color: #f1f5f9;
}
.cat-nav-wrap::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, #7c3aed 40%, transparent 100%);
}
.cat-nav {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 54px;
    overflow: visible;
    flex-wrap: wrap;
}

/* Tüm Kategoriler butonu */
.cat-nav-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s;
    border-right: none;
    text-decoration: none;
    flex-shrink: 0;
}
body.light-mode .cat-nav-all {
    background: var(--primary-glow);
    color: var(--primary);
}
.cat-nav-all:hover { background: var(--primary-hover); color: #fff; }
body.light-mode .cat-nav-all:hover { background: var(--primary); color: #fff; }
.cat-nav-all i.fa-th-large { font-size: 14px; }
.cat-nav-all .caret { font-size: 9px; margin-left: 2px; opacity: 0.8; }

/* Ayırıcı */
.cat-nav-sep {
    width: 1px;
    background: rgba(255,255,255,0.07);
    margin: 8px 0;
    flex-shrink: 0;
}

/* Oyun butonları */
.cat-nav-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    color: #9098b8;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    border-right: 1px solid rgba(255,255,255,0.04);
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
}
.cat-nav-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.2s;
}
.cat-nav-btn:hover { color: #fff; background: rgba(255,255,255,0.04); }
.cat-nav-btn:hover::after { transform: scaleX(1); }
.cat-nav-btn[data-color="#ff4655"]:hover { color: #ff4655; }
.cat-nav-btn[data-color="#66c0f4"]:hover { color: #66c0f4; }
.cat-nav-btn[data-color="#f2a900"]:hover { color: #f2a900; }
.cat-nav-btn[data-color="#c8a84b"]:hover { color: #c8a84b; }
.cat-nav-btn[data-color="#2b96ff"]:hover { color: #2b96ff; }
.cat-nav-btn[data-color="#003087"]:hover { color: #6ea3ff; }
.cat-nav-btn[data-color="#107c10"]:hover { color: #52c41a; }

.cat-nav-btn .caret { font-size: 9px; opacity: 0.6; }
.nav-game-icon, .nav-game-img { width: 20px; height: 20px; flex-shrink: 0; opacity: 0.8; object-fit: contain; }

/* Sağ özel linkler */
.cat-nav-right {
    margin-left: auto;
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
}
.cat-nav-special {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255,255,255,0.04);
    position: relative;
}
.cat-nav-special i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cat-nav-special:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.03);
}
.cat-nav-special:hover i {
    transform: scale(1.2) rotate(-5deg);
}
.giveaway-btn { color: #3b82f6; }
.giveaway-btn:hover { color: #60a5fa; background: rgba(59,130,246,0.1); box-shadow: 0 4px 15px rgba(59,130,246,0.2); }
.streamer-btn { color: #8b5cf6; }
.streamer-btn:hover { color: #a78bfa; background: rgba(139,92,246,0.1); box-shadow: 0 4px 15px rgba(139,92,246,0.2); }

.nav-new-badge {
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    color: #fff;
    font-size: 8px;
    font-weight: 900;
    padding: 2px 5px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* Tema switch */
.theme-switch-wrap {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0 12px;
    border-left: 1px solid rgba(255,255,255,0.04);
}
.tsw-btn {
    width: 30px; height: 30px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #5a5e72;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    transition: all 0.2s;
}
.tsw-btn:hover { color: #fff; background: rgba(255,255,255,0.06); }
.tsw-btn.active { background: var(--primary); color: #fff; }

/* ══ Light mode adaptasyonu ══ */
body.light-mode .cat-nav-wrap { background: #f0f2f7; border-top-color: #e2e8f0; }
body.light-mode .cat-nav-wrap::after { opacity: 0.5; }
body.light-mode .cat-nav-btn { color: #5a6478; }
body.light-mode .cat-nav-btn:hover { color: #111; background: rgba(0,0,0,0.04); }
body.light-mode .cat-nav-all { background: var(--primary); }
body.light-mode .header-top { background: #e8eaf0; }
body.light-mode .header-top-social a { color: #8892a8; }
body.light-mode .header-top-links a { color: #8892a8; }
body.light-mode .search-bar { background: #edf0f7; border-color: #d8dce8; }
body.light-mode .icon-btn { background: #edf0f7; border-color: #d8dce8; color: #1a1d2e; }
body.light-mode .tsw-btn { color: #8892a8; }
body.light-mode .giveaway-btn { color: #2563eb; }
body.light-mode .streamer-btn { color: #7c3aed; }
body.light-mode .cat-nav-sep { background: #d8dce8; }
body.light-mode .cat-nav-special { border-left-color: #d8dce8; }
body.light-mode .theme-switch-wrap { border-left-color: #d8dce8; }

/* ══ setTheme icon sync ══ */
body.light-mode #dark-theme-sw { background: transparent; color: #8892a8; }
body.light-mode #light-theme-sw { background: var(--primary); color: #fff; }

/* ══ Responsive ══ */
@media (max-width: 1024px) {
    .cat-nav-btn:nth-child(n+8) { display: none; }
}
@media (max-width: 768px) {
    .header-top { display: none; }
    .cat-nav-btn { padding: 0 10px; font-size: 12px; }
    .cat-nav-all { padding: 0 12px; }
    .cat-nav-right { display: none; }
    .search-bar { max-width: none; }
}

/* ══ setTheme güncellemesi için ══ */
#light-icon, #dark-icon { display: none !important; }

/* ═══════════════════════════════════════════════════════
   GELİŞMİŞ ÖZELLİKLER — features.js CSS
   ═══════════════════════════════════════════════════════ */

/* ── Sayfa yükleme progress bar ── */
#page-progress-bar {
    position: fixed; top: 0; left: 0; z-index: 99999;
    height: 3px; width: 0;
    background: linear-gradient(90deg, var(--primary), #7c3aed);
    transition: width 0.3s ease, opacity 0.4s ease;
    box-shadow: 0 0 8px rgba(25,114,245,0.6);
}

/* ── Social Proof Toast ── */
.social-proof-toast {
    position: fixed; bottom: 90px; left: 20px; z-index: 9500;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex; align-items: center; gap: 12px;
    min-width: 260px; max-width: 320px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transform: translateX(-120%);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.social-proof-toast.show { transform: translateX(0); }
.spt-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.spt-info { flex: 1; }
.spt-info strong { display: block; font-size: 13px; font-weight: 700; }
.spt-info span { display: block; font-size: 12px; color: var(--text-muted); }
.spt-info time { display: block; font-size: 11px; color: var(--primary); margin-top: 2px; }
.spt-close {
    background: none; border: none; color: var(--text-muted);
    cursor: pointer; font-size: 18px; line-height: 1;
    padding: 0; flex-shrink: 0;
}
.spt-close:hover { color: var(--text-main); }

/* ── Sepete uçan nokta ── */
.cart-fly-dot {
    position: fixed; z-index: 9999;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--primary);
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.6s ease;
    box-shadow: 0 0 8px var(--primary);
}

/* ── Live count bump ── */
@keyframes count-bump {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.3); color: var(--primary); }
}
.count-bump { animation: count-bump 0.4s ease; }

/* ── Back to top ── */
#back-to-top {
    position: fixed; bottom: 90px; right: 24px; z-index: 9000;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary);
    border: none; color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 16px;
    box-shadow: 0 4px 16px rgba(25,114,245,0.4);
    opacity: 0; transform: translateY(10px);
    transition: all 0.3s;
    pointer-events: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(25,114,245,0.5); }

/* ── Active nav highlight ── */
.cat-nav-btn.active-nav {
    color: #fff;
    background: rgba(255,255,255,0.06);
}
.cat-nav-btn.active-nav::after { transform: scaleX(1); }

/* ── Search history ── */
.search-history-header {
    padding: 10px 16px 6px;
    font-size: 11px; font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.5px;
    display: flex; align-items: center; gap: 6px;
}
.history-item { color: var(--text-muted); }
.history-item i { font-size: 12px; color: var(--text-muted); }
.search-clear-btn {
    padding: 8px 16px;
    font-size: 12px; color: #ef4444;
    cursor: pointer; font-weight: 600;
    border-top: 1px solid var(--border);
    text-align: center;
}
.search-clear-btn:hover { background: rgba(239,68,68,0.06); }

/* ── Trust section ── */
.trust-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 32px 0;
}
.trust-item {
    background: var(--bg-card);
    padding: 24px 20px;
    display: flex; align-items: center; gap: 14px;
    transition: background 0.2s;
}
.trust-item:hover { background: var(--bg-card-hover, #1c1e28); }
.trust-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.trust-info span { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.trust-info strong { font-size: 18px; font-weight: 900; }
.trust-info small { font-size: 11px; color: var(--text-muted); }

/* ── Canli kullanıcı badge ── */
.live-users-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px; font-weight: 700;
    color: #22c55e;
}
.live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e;
    animation: live-pulse 1.5s infinite;
}
@keyframes live-pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

/* ── Kupon kutusu (sepet) ── */
.coupon-box {
    display: flex; gap: 8px; margin-top: 12px;
}
.coupon-input {
    flex: 1;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 12px;
    height: 38px;
    color: var(--text-main);
    font-size: 13px; font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    outline: none;
    font-family: 'Outfit', sans-serif;
}
.coupon-input:focus { border-color: var(--primary); }
.coupon-apply-btn {
    background: var(--primary);
    color: #fff; border: none;
    border-radius: 8px; padding: 0 14px;
    font-size: 13px; font-weight: 700;
    cursor: pointer;
}

/* ── Slider placeholder güzel ── */
.slider-fallback {
    height: 420px;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px; color: var(--text-muted);
    border-radius: var(--radius-lg);
}
.slider-fallback h2 { font-size: 2rem; font-weight: 900; color: #fff; }
.slider-fallback p { font-size: 1rem; }

/* ── Responsive trust ── */
@media (max-width: 768px) {
    .trust-section { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .trust-section { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   ALT KATEGORİ DROPDOWN — Hover Menü
   ═══════════════════════════════════════════════════ */
.cat-nav-item-wrap { position: relative; display: flex; }

.cat-dropdown {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    min-width: 240px;
    background: #13141e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    z-index: 500;
    padding: 8px;
}
.cat-nav-item-wrap.has-drop:hover .cat-dropdown {
    display: block;
}
.cat-nav-item-wrap.has-drop:hover > .cat-nav-btn {
    color: #fff;
    background: rgba(255,255,255,0.06);
}
.cat-nav-item-wrap.has-drop:hover > .cat-nav-btn .caret {
    transform: rotate(180deg);
}
.cat-nav-btn .caret {
    transition: transform 0.2s ease;
}

.cat-dropdown-inner { display: flex; flex-direction: column; gap: 2px; }
.cat-drop-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #9098b8;
    font-size: 13px; font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}
.cat-drop-item img { width: 24px; height: 24px; object-fit: contain; border-radius: 6px; }
.cat-drop-item i { width: 16px; text-align: center; font-size: 12px; }
.cat-drop-item:hover { background: rgba(255,255,255,0.06); color: #fff; }

/* Light mode dropdown */
body.light-mode .cat-dropdown {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
body.light-mode .cat-drop-item { color: #5a6478; }
body.light-mode .cat-drop-item:hover { background: #f1f5f9; color: #111; }

/* ── Logo fallback text ── */
.logo-fallback {
    font-size: 1.3rem; font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════════
   FOOTER — Gamesepet Tarzı
   ═══════════════════════════════════════════════════ */
.site-footer {
    background: #0a0b10;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 56px 0 0;
    margin-top: 60px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand { display: block; }
.footer-logo { height: 44px; object-fit: contain; margin-bottom: 16px; display: block; }
.footer-about { color: var(--text-muted); font-size: 13px; line-height: 1.7; margin-bottom: 18px; max-width: 280px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 14px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; }

.footer-col h4 {
    font-size: 13px; font-weight: 800;
    color: #fff; margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: var(--text-muted); font-size: 13px;
    display: flex; align-items: center; gap: 7px;
    transition: var(--transition);
    text-decoration: none;
}
.footer-links a i { font-size: 10px; color: var(--primary); }
.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px; color: var(--text-muted);
    flex-wrap: wrap; gap: 12px;
}
.payment-methods { display: flex; gap: 8px; align-items: center; }
.pm-badge {
    background: #fff; color: #000;
    padding: 4px 10px; border-radius: 5px;
    font-size: 11px; font-weight: 900;
    display: flex; align-items: center; gap: 4px;
}
.pm-badge.paytr { background: #1e3a8a; color: #60a5fa; }
.pm-badge.shopier { background: #392b58; color: #fcb045; }
.pm-badge i { font-size: 16px; }

@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 500px) {
    .footer-top { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   PROFİL SAYFASI — Gamesepet Tarzı
   ═══════════════════════════════════════════════════ */
.profile-page { display: grid; grid-template-columns: 280px 1fr; gap: 0; min-height: calc(100vh - 200px); }
.profile-sidebar-new {
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column;
}
body.light-mode .profile-sidebar-new {
    background: #fff;
}
.profile-hero {
    background: linear-gradient(135deg, #1972f5 0%, #7c3aed 100%);
    padding: 28px 20px;
    position: relative; overflow: hidden;
}
.profile-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.profile-avatar-big {
    width: 70px; height: 70px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 900; color: #fff;
    border: 3px solid rgba(255,255,255,0.4);
    margin-bottom: 12px; position: relative;
}
.profile-hero-name { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.profile-hero-balance {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(0,0,0,0.25); border-radius: 20px;
    padding: 4px 12px; font-size: 13px; font-weight: 800; color: #fff;
}

.profile-nav-section { padding: 8px 12px 4px; font-size: 10px; font-weight: 700; color: #4a5068; text-transform: uppercase; letter-spacing: 1px; }
.profile-nav-item {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 18px;
    color: #6b7280; font-size: 13px; font-weight: 600;
    cursor: pointer; text-decoration: none;
    transition: all 0.15s;
    border-left: 3px solid transparent;
    position: relative;
}
.profile-nav-item i { width: 18px; text-align: center; font-size: 14px; }
.profile-nav-item .nav-sub { font-size: 11px; color: #4a5068; display: block; margin-top: 1px; }
.profile-nav-item:hover { color: var(--text-main); background: rgba(255,255,255,0.04); }
body.light-mode .profile-nav-item:hover { background: rgba(0,0,0,0.03); }
.profile-nav-item.active { color: var(--text-main); background: var(--primary-glow); border-left-color: var(--primary); }
.profile-nav-item.active i { color: var(--primary); }
.profile-nav-item.danger { color: #ef4444; }
.profile-nav-item.danger:hover { background: rgba(239,68,68,0.08); }

.profile-content-area { background: var(--bg-main); padding: 32px; }
body.light-mode .profile-content-area { background: #f8fafc; }
.profile-content-header {
    background: linear-gradient(135deg, #1972f5 0%, #7c3aed 100%);
    border-radius: 14px; padding: 24px 28px;
    margin-bottom: 24px; display: flex; align-items: center; gap: 16px;
}
.profile-content-header .ph-icon {
    width: 52px; height: 52px; background: rgba(255,255,255,0.15);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff;
}
.profile-content-header h2 { font-size: 1.2rem; font-weight: 800; color: #fff; }
.profile-content-header p { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 2px; }

.profile-stat-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px;
}
.profile-stat-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 16px 20px;
    display: flex; align-items: center; gap: 14px;
    cursor: pointer; transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}
body.light-mode .profile-stat-card { background: #fff; border-color: rgba(0,0,0,0.05); }
.profile-stat-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.psc-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.psc-label { font-size: 11px; color: var(--text-muted); }
.psc-value { font-size: 1.3rem; font-weight: 900; }
.psc-arrow { margin-left: auto; color: var(--text-muted); font-size: 12px; }

.profile-tab { display: none; }
.profile-tab.active { display: block; }

.order-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 18px 20px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; margin-bottom: 10px; flex-wrap: wrap;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}
body.light-mode .order-card { background: #fff; border-color: rgba(0,0,0,0.05); }
.order-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.order-code {
    background: #0e0f18; border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 8px; padding: 8px 14px;
    font-family: monospace; font-size: 12px; color: var(--primary);
    letter-spacing: 1px; margin-top: 10px; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
}

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

/* ═══════════════════════════════════════════════════
   BLOG SAYFASI
   ═══════════════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }
.blog-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; overflow: hidden;
    transition: all 0.3s; text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(25,114,245,0.15); }
.blog-card-img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { display: inline-block; background: rgba(25,114,245,0.12); color: var(--primary); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.blog-card-body h3 { font-size: 15px; font-weight: 800; line-height: 1.4; margin-bottom: 8px; }
.blog-card-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════
   ÇEKİLİŞ SAYFASI
   ═══════════════════════════════════════════════════ */
.giveaway-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden;
    transition: all 0.3s;
}
.giveaway-card:hover { border-color: #8b5cf6; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(139,92,246,0.2); }
.giveaway-banner { position: relative; height: 200px; overflow: hidden; }
.giveaway-banner img { width: 100%; height: 100%; object-fit: cover; }
.giveaway-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}
.giveaway-banner-badge {
    position: absolute; top: 12px; right: 12px;
    background: linear-gradient(135deg,#8b5cf6,#3b82f6);
    color: #fff; padding: 4px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 800;
}
.giveaway-body { padding: 20px; }
.giveaway-body h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.giveaway-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.giveaway-meta span { display: flex; align-items: center; gap: 5px; }
.giveaway-progress { height: 6px; background: var(--border); border-radius: 3px; margin-bottom: 6px; overflow: hidden; }
.giveaway-progress-bar { height: 100%; background: linear-gradient(90deg,#8b5cf6,#3b82f6); border-radius: 3px; transition: width 1s ease; }
.join-btn {
    width: 100%; height: 42px; border-radius: 10px;
    background: linear-gradient(135deg,#8b5cf6,#3b82f6);
    border: none; color: #fff; font-size: 14px; font-weight: 700;
    cursor: pointer; transition: all 0.2s; font-family: 'Outfit', sans-serif;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 14px;
}
.join-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.join-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.join-btn.joined { background: linear-gradient(135deg,#22c55e,#16a34a); }

/* ═══════════════════════════════════════════════════
   NOTIF CONTAINER — sağ alt
   ═══════════════════════════════════════════════════ */
#notif-container {
    position: fixed; bottom: 90px; right: 20px;
    z-index: 9999; display: flex; flex-direction: column; gap: 10px;
    pointer-events: none; max-width: 340px;
}
.notification {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 12px 16px;
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 600;
    box-shadow: 0 6px 24px rgba(0,0,0,0.4);
    transform: translateX(120%); opacity: 0;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    pointer-events: auto;
}
.notification.show { transform: translateX(0); opacity: 1; }
.notification-icon { font-size: 15px; flex-shrink: 0; }
.notification.success { border-color: rgba(34,197,94,0.35); }
.notification.error   { border-color: rgba(239,68,68,0.35); }
.notification.info    { border-color: rgba(25,114,245,0.35); }

/* ── Logo sadece görsel, büyük ── */
.logo a { display: flex; align-items: center; text-decoration: none; }
.header-logo-img { height: 52px; max-width: 200px; object-fit: contain; }
.logo-fallback { display: none !important; }

/* ═══════════════════════════════════════════════════
   PROFİL — Minimalist Yeniden Tasarım
   ═══════════════════════════════════════════════════ */
.profile-page {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    min-height: calc(100vh - 120px);
}
.profile-sidebar-new {
    background: #0f1018;
    border-right: 1px solid rgba(255,255,255,0.05);
}
.profile-hero {
    padding: 20px 16px;
    background: linear-gradient(135deg, #1972f5 0%, #7c3aed 100%);
    position: relative; overflow: hidden;
}
.profile-avatar-big {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 900; color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
    margin-bottom: 8px;
}
.profile-hero-name { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.profile-hero-balance {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(0,0,0,0.22); border-radius: 14px;
    padding: 3px 10px; font-size: 12px; font-weight: 800; color: #fff;
}
.profile-nav-section {
    padding: 10px 14px 3px;
    font-size: 9px; font-weight: 700; color: #3a3e55;
    text-transform: uppercase; letter-spacing: 1px;
}
.profile-nav-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 16px;
    color: #565d7a; font-size: 12.5px; font-weight: 600;
    cursor: pointer; text-decoration: none;
    transition: all 0.15s;
    border-left: 2px solid transparent;
}
.profile-nav-item i { width: 16px; text-align: center; font-size: 13px; }
.profile-nav-item .nav-sub { font-size: 10px; color: #3a3e55; display: block; margin-top: 1px; }
.profile-nav-item:hover { color: #fff; background: rgba(255,255,255,0.03); }
.profile-nav-item.active { color: #fff; background: rgba(25,114,245,0.08); border-left-color: var(--primary); }
.profile-nav-item.active i { color: var(--primary); }
.profile-nav-item.danger { color: #ef4444; }
.profile-nav-item.danger:hover { background: rgba(239,68,68,0.06); }
.psc-arrow { margin-left: auto; color: #3a3e55; font-size: 10px; }

.profile-content-area { background: #0b0c12; padding: 24px 28px; }
.profile-content-header {
    background: linear-gradient(135deg, #1972f5 0%, #7c3aed 100%);
    border-radius: 12px; padding: 18px 22px;
    margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.profile-content-header .ph-icon {
    width: 42px; height: 42px; background: rgba(255,255,255,0.14);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff;
}
.profile-content-header h2 { font-size: 1.05rem; font-weight: 800; color: #fff; }
.profile-content-header p { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 1px; }

.profile-stat-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px;
}
.profile-stat-card {
    background: #141620; border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px; padding: 14px 16px;
    display: flex; align-items: center; gap: 12px;
    cursor: pointer; transition: all 0.2s;
}
.profile-stat-card:hover { border-color: var(--primary); }
.psc-icon {
    width: 36px; height: 36px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.psc-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.4px; }
.psc-value { font-size: 1.1rem; font-weight: 900; }

/* Quick access grid kompakt */
.profile-page .quick-access-btn {
    background: #141620; border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px; padding: 14px 10px;
    gap: 8px;
}
.profile-page .qa-icon { width: 40px; height: 40px; border-radius: 10px; font-size: 17px; }
.profile-page .quick-access-btn span { font-size: 11px; }

.order-card {
    background: #141620; border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px; padding: 14px 16px;
    margin-bottom: 8px;
}

@media (max-width: 700px) {
    .profile-page { grid-template-columns: 1fr; }
    .profile-stat-row { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   LOGO — Sadece görsel, metin yok
   ═══════════════════════════════════════════ */
.logo-link { display: flex; align-items: center; text-decoration: none; }
.header-logo-img {
    height: 80px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s;
}
.header-logo-img:hover { opacity: 0.85; }

/* ═══════════════════════════════════════════
   PROFİL — MİNİMALİST REVIZYON
   ═══════════════════════════════════════════ */
.profile-page {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    min-height: calc(100vh - 130px);
    max-width: 1100px;
    margin: 24px auto 0;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
}

.profile-sidebar-new {
    background: #111318;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.profile-hero {
    background: linear-gradient(135deg, #1972f5 0%, #7c3aed 100%);
    padding: 20px 16px;
}
.profile-avatar-big {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 900; color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
    margin-bottom: 10px;
}
.profile-hero-name { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.profile-hero-balance {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(0,0,0,0.2); border-radius: 20px;
    padding: 3px 10px; font-size: 12px; font-weight: 700; color: #fff;
}

.profile-nav-section {
    padding: 10px 14px 3px;
    font-size: 9px; font-weight: 700;
    color: #3d4458;
    text-transform: uppercase; letter-spacing: 1px;
}
.profile-nav-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 14px;
    color: #5a6278; font-size: 12.5px; font-weight: 600;
    cursor: pointer; text-decoration: none;
    transition: all 0.15s;
    border-left: 2px solid transparent;
}
.profile-nav-item i { width: 16px; text-align: center; font-size: 13px; flex-shrink: 0; }
.profile-nav-item .nav-sub { font-size: 10px; color: #3d4458; display: block; }
.profile-nav-item:hover { color: #c8cce0; background: rgba(255,255,255,0.03); }
.profile-nav-item.active { color: #fff; background: var(--primary-glow); border-left-color: var(--primary); }
.profile-nav-item.active i { color: var(--primary); }
.profile-nav-item.danger { color: #ef4444; }
.profile-nav-item.danger:hover { background: rgba(239,68,68,0.06); }

.profile-content-area {
    background: #0d0e16;
    padding: 24px;
    overflow-y: auto;
}

.profile-content-header {
    background: var(--primary-gradient);
    border-radius: 12px; padding: 18px 22px;
    margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.profile-content-header .ph-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.15); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff; flex-shrink: 0;
}
.profile-content-header h2 { font-size: 1.05rem; font-weight: 800; color: #fff; }
.profile-content-header p { font-size: 12px; color: rgba(255,255,255,0.7); }

.profile-stat-row {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 10px; margin-bottom: 18px;
}
.profile-stat-card {
    background: #161820; border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px; padding: 13px 14px;
    display: flex; align-items: center; gap: 10px;
    cursor: pointer; transition: all 0.2s;
}
.profile-stat-card:hover { border-color: rgba(25,114,245,0.3); transform: translateY(-1px); }
.psc-icon {
    width: 34px; height: 34px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.psc-label { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.4px; }
.psc-value { font-size: 1.1rem; font-weight: 900; line-height: 1.2; }
.psc-arrow { margin-left: auto; color: #3d4458; font-size: 11px; }

/* Quick access minimal */
.quick-access-btn {
    background: #161820; border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px; padding: 14px 10px;
    text-align: center; cursor: pointer; transition: all .2s;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.quick-access-btn:hover { border-color: rgba(25,114,245,0.3); transform: translateY(-2px); }
.qa-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #fff;
}
.quick-access-btn span { font-size: 11px; font-weight: 700; color: var(--text-muted); }

@media (max-width: 768px) {
    .profile-page { grid-template-columns: 1fr; margin: 0; border-radius: 0; }
    .profile-stat-row { grid-template-columns: 1fr 1fr; }
}

/* ── Logo final override ── */
.logo img, .header-logo-img {
    height: 80px !important;
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain !important;
}
.logo a, .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    min-height: 80px;
}

/* ═══════════════════════════════════════════════
   KALAN BUGFIX VE İYİLEŞTİRMELER
   ═══════════════════════════════════════════════ */

/* Select elements dark theme fix */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px !important;
}

/* Ticket type select */
#ticket-type, #ticket-order-id {
    background: #0e0f18;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
}
#ticket-type:focus, #ticket-order-id:focus {
    border-color: var(--primary);
}

/* Profile sidebar scroll */
.profile-sidebar-new {
    overflow-y: auto;
    max-height: 100%;
}


/* Category nav dropdown z-index */
.cat-dropdown { z-index: 500; }

/* User dropdown z-index */
.user-dropdown { z-index: 999; }

/* Search suggestions z-index */
#search-results { z-index: 200; }

/* Giveaway cards - ensure proper display */
.giveaway-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.giveaway-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Blog card hover fix */
.blog-card { display: flex; flex-direction: column; color: inherit; }
.blog-card:hover { color: inherit; }

/* Social cards responsive */
@media (max-width: 600px) {
    .profile-stat-row { grid-template-columns: 1fr 1fr; gap: 8px; }
    .profile-content-area { padding: 16px; }
    .profile-page { margin: 0; border-radius: 0; border: none; }
}

/* Notification container position */
#notif-container {
    bottom: 80px;
    right: 16px;
    max-width: 320px;
}

/* Footer margin */
.site-footer { margin-top: 40px; }

/* Ticket form inputs in profile */
.profile-content-area input[type="text"],
.profile-content-area input[type="email"],
.profile-content-area input[type="password"],
.profile-content-area textarea,
.profile-content-area select {
    background: #0e0f18;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 8px;
    outline: none;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.2s;
}
.profile-content-area input:focus,
.profile-content-area textarea:focus,
.profile-content-area select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(25,114,245,0.12);
}

/* Main content container padding bottom (footer için alan) */
main { padding-bottom: 0 !important; }

/* Category page breadcrumb */
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   features-v2.js — Ek CSS
   ═══════════════════════════════════════════ */

/* Para birimi tooltip */
.currency-tooltip {
    animation: fadeInUp 0.2s ease;
}

/* Accordion tck-arrow */
.tck-arrow.rotate { transform: rotate(180deg) !important; }
.tck-body.open { max-height: 500px !important; }

/* Renk özelleştirici buton (nav'a eklenebilir) */
#color-panel button:hover { filter: brightness(1.15); }

/* Ticket list active state */
.ticket-list-item:hover { background: rgba(255,255,255,0.025) !important; }

/* Profile tab transitions */
.profile-tab { animation: none; }
.profile-tab.active { animation: fadeInUp 0.2s ease; }

/* Order code */
.order-code {
    background: #0e0f18;
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 14px;
    font-family: monospace;
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    width: 100%;
}

/* Profile content area scroll fix */
.profile-content-area {
    overflow-y: auto;
    max-height: calc(100vh - 130px);
}

/* ═══════════════════════════════════════════════════════
   GÖRSEL BOYUTLARI — 1518x2048 oranı (3:4)
   ═══════════════════════════════════════════════════════ */

/* Ürün kartı görsel alanı — 3:4 oran */
.product-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 133.33%; /* 4/3 = 1.333 → 3:4 oran */
    overflow: hidden;
    background: #0a0b10;
}
.product-img-wrapper > img.product-img,
.product-img-wrapper > .quick-view-overlay,
.product-img-wrapper > .badge-tag,
.product-img-wrapper > .wishlist-heart {
    position: absolute;
}
.product-img-wrapper > img.product-img {
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }



/* Blog kart görseli - geniş format */
.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

/* Giveaway banner - standart */
.giveaway-banner {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.giveaway-banner img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ═══════════════════════════════════════════════════════
   ÖZEL SELECT / DROPDOWN — Sitenin kendi tasarımı
   ═══════════════════════════════════════════════════════ */

/* Native select'i gizle, custom wrapper göster */
.custom-select-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}
.custom-select-wrap select {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
    width: 100%;
    height: 100%;
}
.custom-select-display {
    background: #0e0f18;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 10px 36px 10px 13px;
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    pointer-events: none;
    transition: border-color 0.2s;
}
.custom-select-wrap:focus-within .custom-select-display {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(25,114,245,0.12);
}
.custom-select-display::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #6b7280;
    pointer-events: none;
}

/* Profile ticket select — özel stil */
select.ticket-input {
    background: #0e0f18;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 8px;
    padding: 10px 36px 10px 13px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
select.ticket-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(25,114,245,0.12);
}
select.ticket-input option {
    background: #13141e;
    color: #fff;
    padding: 8px;
}

/* Admin select styling */
.admin-main select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px !important;
    cursor: pointer;
}

/* ═══════════════════════════════════════════════════════
   NAV KATEGORİ GÖRSELLER — düzeltme
   ═══════════════════════════════════════════════════════ */
.nav-game-img {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.cat-nav-btn:hover .nav-game-img { 
    transform: scale(1.1); 
}

/* Kategori circle — nav bar altı */
.cat-circle .img-wrapper {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: var(--transition);
}
.cat-circle .img-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ═══════════════════════════════════════════════════════
   OTOMATİK TESLİMAT BADGE (ana sayfa)
   ═══════════════════════════════════════════════════════ */
.auto-delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.25);
    color: #22c55e;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    margin-left: 6px;
}

/* ═══════════════════════════════════════════════════════
   SG-SELECT — Sitenin özel select componenti
   ═══════════════════════════════════════════════════════ */
.sg-select-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}
.sg-select {
    width: 100%;
    background: #0e0f18;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 8px;
    padding: 11px 38px 11px 13px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.sg-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(25,114,245,0.12);
}
.sg-select option {
    background: #13141e;
    color: #fff;
    padding: 8px 12px;
    font-size: 13px;
}
.sg-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 11px;
    pointer-events: none;
    transition: transform 0.2s;
}
.sg-select-wrap:focus-within .sg-select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--primary);
}

/* Light mode adaptasyonu */
body.light-mode .sg-select {
    background: #f0f2f7;
    border-color: #d8dce8;
    color: #1a1d2e;
}
body.light-mode .sg-select option { background: #fff; color: #1a1d2e; }



/* ════ ALL CATEGORIES PAGE ════ */
.all-cats-header {
    text-align: center;
    padding: 60px 20px 40px;
}
.all-cats-header h1 {
    font-size: 2.5rem;
    font-weight: 900 !important;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: #fff !important;
}
.all-cats-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.cats-search-wrap {
    max-width: 600px !important;
    margin: 0 auto 50px !important;
    position: relative;
}
.cats-search-input {
    width: 100% !important;
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    height: 60px !important;
    padding: 0 20px 0 55px !important;
    color: #fff !important;
    font-size: 16px !important;
    outline: none !important;
}
.cats-search-input:focus {
    border-color: var(--primary) !important;
}
.cats-search-wrap i {
    position: absolute !important;
    left: 22px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: var(--text-muted) !important;
    font-size: 20px !important;
    z-index: 5 !important;
}

.cats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    padding-bottom: 100px !important;
}
@media (max-width: 1100px) { .cats-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 750px) { .cats-grid { grid-template-columns: 1fr !important; } }

.cat-explore-card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
    padding: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    cursor: pointer !important;
    text-decoration: none !important;
}
.cat-explore-card:hover {
    transform: translateY(-5px) !important;
    border-color: var(--primary) !important;
}
.cat-explore-img {
    width: 72px !important;
    height: 72px !important;
    border-radius: 14px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
}
.cat-explore-info {
    flex: 1 !important;
}
.cat-explore-info h3 {
    font-size: 1.25rem !important;
    margin-bottom: 4px !important;
    color: #fff !important;
    font-weight: 700 !important;
}
.cat-explore-info span {
    font-size: 13px !important;
    color: var(--text-muted) !important;
}
.cat-explore-arrow {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--text-muted) !important;
}

/* Hero Slider — sade alt-sol sayaç */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev,
.hero-slider .swiper-pagination { display: none !important; }

.hero-slide-counter {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    pointer-events: none;
    user-select: none;
}
.hero-slide-counter .hsc-sep { opacity: 0.45; margin: 0 1px; }
.hero-slide-counter #hero-slide-current { color: var(--primary); }

@media (max-width: 640px) {
    .hero-slide-counter { left: 12px; bottom: 12px; font-size: 11.5px; padding: 6px 11px; }
}
/* Eski .badge-best-seller (kart-geneli yeşil arkaplan) kaldırıldı.
   Etiket görünümü artık .product-card.badge-best-seller .product-badge-ribbon
   kuralı tarafından yönetiliyor (turuncu ribbon, kart normal kalır). */

/* ═══════════════════════════════════════════════════
   GÜNÜN FIRSATLARI — Weekly Deals Section
   ═══════════════════════════════════════════════════ */
.weekly-deals-section {
    margin-top: 32px;
    padding: 32px 28px 30px;
    background:
        linear-gradient(135deg, rgba(35,18,8,0.85) 0%, rgba(20,12,18,0.92) 50%, rgba(30,10,14,0.88) 100%);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px -20px rgba(239, 68, 68, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.04);
}
.weekly-deals-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 0%, rgba(245,158,11,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 100%, rgba(239,68,68,0.14) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(168,85,247,0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: deals-glow 8s ease-in-out infinite alternate;
}
.weekly-deals-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f59e0b 30%, #ef4444 70%, transparent);
    opacity: 0.7;
    pointer-events: none;
}
@keyframes deals-glow {
    0% { opacity: 0.85; }
    100% { opacity: 1; }
}

.deals-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 16px;
}

.deals-title {
    display: flex;
    align-items: center;
    gap: 14px;
}
.deals-fire-icon {
    font-size: 36px;
    filter: drop-shadow(0 0 12px rgba(245,158,11,0.6));
    animation: fire-bounce 2s ease-in-out infinite;
    transform-origin: bottom center;
}
@keyframes fire-bounce {
    0%, 100% { transform: scale(1) rotate(-3deg); filter: drop-shadow(0 0 12px rgba(245,158,11,0.6)); }
    50%      { transform: scale(1.08) rotate(3deg); filter: drop-shadow(0 0 20px rgba(239,68,68,0.7)); }
}
.deals-title h2 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 35%, #ef4444 70%, #f59e0b 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: deals-shine 4s linear infinite;
    margin: 0;
}
.deals-title-sub {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(245, 158, 11, 0.85);
    margin-top: 2px;
    text-transform: uppercase;
}
@keyframes deals-shine {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.deals-countdown-badge {
    background: linear-gradient(135deg, rgba(239,68,68,0.18), rgba(245,158,11,0.12));
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fff;
    padding: 10px 16px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px -8px rgba(239, 68, 68, 0.5), inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}
.deals-countdown-badge i {
    color: #ef4444;
    animation: flash 1.5s infinite;
    font-size: 18px;
}
.deals-countdown-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.65);
    font-weight: 700;
    text-transform: uppercase;
}
.deals-countdown-blocks {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Courier New', Courier, monospace;
}
.deals-countdown-blocks .cd-num {
    background: rgba(0,0,0,0.45);
    color: #fff;
    padding: 5px 9px;
    border-radius: 7px;
    font-weight: 900;
    font-size: 17px;
    min-width: 36px;
    text-align: center;
    box-shadow: inset 0 -2px 0 rgba(239,68,68,0.4), 0 1px 0 rgba(255,255,255,0.05);
    letter-spacing: 0.5px;
}
.deals-countdown-blocks .cd-sep {
    color: rgba(239,68,68,0.7);
    font-weight: 900;
    animation: flash 1s infinite;
}
@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.weekly-deals-section .product-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(245, 158, 11, 0.22);
    box-shadow: 0 8px 24px -12px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,158,11,0.04) inset;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.weekly-deals-section .product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(245,158,11,0.4), transparent 40%, rgba(239,68,68,0.3));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.weekly-deals-section .product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6), 0 0 32px -4px rgba(245, 158, 11, 0.35);
}
.weekly-deals-section .product-card:hover::before { opacity: 1; }

.deal-firsat-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    font-weight: 900;
    font-size: 10px;
    padding: 5px 11px;
    border-radius: 8px;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.5);
    z-index: 3;
    text-transform: uppercase;
    animation: glow-orange 2s infinite;
    display: flex;
    align-items: center;
    gap: 4px;
}
.deal-firsat-badge::before {
    content: '🔥';
    font-size: 11px;
}
@keyframes glow-orange {
    0%, 100% { box-shadow: 0 4px 14px rgba(245, 158, 11, 0.5); }
    50%      { box-shadow: 0 4px 22px rgba(245, 158, 11, 0.85); }
}

/* Big eye-catching discount tag (top-right) */
.weekly-deals-section .badge-sale {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    padding: 7px 13px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 6px 18px rgba(239, 68, 68, 0.55), inset 0 1px 0 rgba(255,255,255,0.2);
    transform: rotate(2deg);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* "Tasarruf" (savings) chip on the card */
.deal-savings-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, rgba(34,197,94,0.18), rgba(34,197,94,0.08));
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #22c55e;
    font-weight: 800;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 7px;
    margin-top: 6px;
    width: fit-content;
}
.deal-savings-chip i { font-size: 10px; }

/* Old price + new price emphasis inside deal cards */
.weekly-deals-section .product-price-row .price-value {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    font-weight: 900;
}
.weekly-deals-section .btn-buy-mini {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border: none;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(239,68,68,0.35);
    transition: all 0.25s;
}
.weekly-deals-section .btn-buy-mini:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(239,68,68,0.5);
}

/* ═══════════════════════════════════════════════════
   HOMEPAGE CSS IMPROVEMENTS
   ═══════════════════════════════════════════════════ */

/* Product card glow on hover */
.product-card {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Trust section improvements */
.trust-section {
    animation: fadeInUp 0.6s ease-out;
}
.trust-icon {
    transition: all 0.3s ease;
}
/* removed scale animation */
.trust-item {
    transition: all 0.3s ease;
}
.trust-item:hover {
    transform: translateY(-4px);
}

/* Section header gradient underline */
.section-header h2 {
    position: relative;
    padding-bottom: 6px;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 3px;
}

/* View all link animation */
.view-all {
    transition: all 0.3s ease;
}
.view-all:hover {
    color: var(--primary);
    gap: 6px;
}
.view-all:hover i {
    transform: translateX(4px);
}
.view-all i {
    transition: transform 0.3s ease;
}

/* Stats banner shimmer effect */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Scroll-in animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animate sections on scroll */
.section-header,
.product-grid,
.trust-section,
.weekly-deals-section {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Live dot glow */
.live-dot {
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

/* Countdown badge hover */
.countdown-badge {
    transition: all 0.3s ease;
}
/* removed scale animation */

/* Why card icon subtle animation */
.why-card:hover i {
    color: var(--primary);
    transition: all 0.3s ease;
}

/* Empty state improvement */
.empty-state {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
}
.empty-state i {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
    opacity: 0.3;
}
.empty-state p {
    font-size: 14px;
}

/* Responsive deals grid */
@media (max-width: 768px) {
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .deals-header {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
    }
    .deals-title h2 {
        font-size: 20px;
        letter-spacing: 1px;
    }
    .deals-fire-icon { font-size: 28px; }
    .deal-img-wrap {
        height: 170px;
    }
    .deal-new-price {
        font-size: 16px;
    }
    .weekly-deals-section {
        padding: 22px 16px;
        margin-top: 20px;
        border-radius: 18px;
    }
    .deals-countdown-blocks .cd-num {
        font-size: 14px;
        min-width: 30px;
        padding: 4px 7px;
    }
}
@media (max-width: 480px) {
    .deals-grid {
        grid-template-columns: 1fr;
    }
    .deals-countdown-badge { width: 100%; justify-content: space-between; }
}

/* ═══════════════════════════════════════════════════
   CART PAGE STYLES — sepetim.html
   ═══════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════
   CART PAGE STYLES — sepetim.html (Premium Version)
   ═══════════════════════════════════════════════════ */
.cart-page-body { background-color: #0b0c10; min-height: 100vh; }
.cart-main-container { padding: 40px 0 100px; }

.cart-page-header { margin-bottom: 40px; }
.cart-page-header h1 { font-size: 2.5rem; font-weight: 900; color: #fff; margin-bottom: 10px; display: flex; align-items: center; gap: 15px; }
.cart-page-header h1 i { color: var(--primary); }
.cart-page-header p { color: var(--text-muted); font-size: 1rem; }

.cart-content-wrapper { display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: flex-start; }

.cart-items-card { background: rgba(19, 20, 30, 0.8); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; backdrop-filter: blur(20px); box-shadow: var(--shadow-md); }

.cart-card-header { display: grid; grid-template-columns: 80px 1fr 140px 120px 60px; padding: 20px 30px; background: rgba(255, 255, 255, 0.02); border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: 12px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }

.cart-page-item { display: grid; grid-template-columns: 80px 1fr 140px 120px 60px; align-items: center; padding: 25px 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.03); transition: background 0.2s ease; }
.cart-page-item:hover { background: rgba(255, 255, 255, 0.02); }
.cart-page-item:last-child { border-bottom: none; }

.cp-item-img img { width: 64px; height: 64px; border-radius: 16px; object-fit: cover; border: 2px solid rgba(255,255,255,0.05); transition: transform 0.3s; }
.cart-page-item:hover .cp-item-img img { border-color: var(--primary); }

.cp-item-details h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 5px; cursor: pointer; transition: color 0.2s; }
.cp-item-details h3:hover { color: var(--primary); }
.cp-item-price { font-size: 13px; color: var(--text-muted); font-weight: 600; }

.cp-item-qty { display: flex; align-items: center; background: #0b0c10; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 5px; width: fit-content; }
.cp-item-qty .qty-btn { width: 32px; height: 32px; border-radius: 8px; border: none; background: transparent; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.cp-item-qty .qty-btn:hover { background: var(--primary); box-shadow: 0 5px 15px rgba(25, 114, 245, 0.3); }
.cp-item-qty .qty-val { width: 36px; text-align: center; font-weight: 800; font-size: 15px; color: #fff; }

.cp-item-total { font-weight: 800; font-size: 1.1rem; color: var(--primary); }

.cp-item-remove { width: 40px; height: 40px; border-radius: 12px; background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.1); color: #ef4444; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.cp-item-remove:hover { background: #ef4444; color: #fff; box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3); }

.continue-shopping { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; color: var(--text-muted); font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.2s; }
.continue-shopping:hover { color: var(--primary); }

.summary-card { background: rgba(19, 20, 30, 0.8); border: 1px solid var(--border); border-radius: 16px; padding: 30px; backdrop-filter: blur(20px); position: sticky; top: 100px; box-shadow: var(--shadow-md); }
.summary-card h3 { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); }

.summary-row { display: flex; justify-content: space-between; margin-bottom: 18px; font-size: 15px; color: var(--text-muted); font-weight: 600; }
.summary-total { display: flex; justify-content: space-between; align-items: center; margin: 25px 0; padding-top: 25px; border-top: 1px dashed rgba(255,255,255,0.1); }
.summary-total span { font-size: 15px; font-weight: 700; color: #fff; }
.summary-total strong { font-size: 1.6rem; font-weight: 800; color: var(--primary); }

.coupon-section { margin-bottom: 25px; }
.coupon-section p { font-size: 13px; font-weight: 800; margin-bottom: 12px; color: #fff; }
.cp-input-group { display: flex; gap: 10px; }
.cp-input-group input { flex: 1; background: #0b0c10; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px 18px; color: #fff; font-family: inherit; font-size: 14px; outline: none; transition: border-color 0.2s; }
.cp-input-group input:focus { border-color: var(--primary); }
.cp-input-group button { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 0 20px; font-weight: 800; cursor: pointer; transition: all 0.2s; }
.cp-input-group button:hover { background: #fff; color: #000; }

.checkout-btn { width: 100%; height: 56px; background: var(--primary); color: #fff; border: none; border-radius: 12px; font-size: 1rem; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px; transition: all 0.2s; box-shadow: 0 5px 15px var(--primary-glow); letter-spacing: 0.5px; }
.checkout-btn:hover { background: var(--primary-hover); box-shadow: 0 8px 20px var(--primary-glow); }

.secure-info { margin-top: 30px; display: grid; gap: 12px; }
.secure-item { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-muted); font-weight: 600; }
.secure-item i { color: #22c55e; font-size: 16px; }

.cart-empty-state { padding: 100px 40px; text-align: center; }
.cart-empty-state .empty-icon { font-size: 80px; color: rgba(255,255,255,0.03); margin-bottom: 25px; }
.cart-empty-state h2 { font-size: 2rem; font-weight: 900; margin-bottom: 15px; color: #fff; }
.cart-empty-state p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 35px; }

@media (max-width: 1200px) {
    .cart-content-wrapper { grid-template-columns: 1fr; }
    .summary-card { position: static; }
}

@media (max-width: 768px) {
    .cart-card-header { display: none; }
    .cart-page-item { grid-template-columns: 80px 1fr 60px; gap: 15px; padding: 20px; }
    .cp-item-qty { grid-column: 2; margin-top: 10px; }
    .cp-item-total { grid-column: 2; margin-top: 5px; }
    .cp-item-remove { grid-column: 3; grid-row: 1/3; }
    .cart-page-header h1 { font-size: 1.8rem; }
}



#page-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    z-index: 9999;
    transition: width 0.3s ease, opacity 0.4s ease;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.social-proof-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(19, 20, 30, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
.social-proof-toast.show {
    transform: translateX(0);
}

/* ── Category Explore Cards (categories.html) ── */
.cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.cat-explore-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.cat-explore-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px var(--primary-glow);
}
.cat-explore-img {
    width: 60px; height: 60px;
    border-radius: 14px;
    object-fit: cover;
    background: #000;
}
.cat-explore-info h3 { font-size: 16px; font-weight: 800; color: var(--text-main); margin-bottom: 2px; }
.cat-explore-info span { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.cat-explore-arrow {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 14px;
    opacity: 0.5;
    transition: all 0.3s;
}
.cat-explore-card:hover .cat-explore-arrow {
    transform: translateX(3px);
    color: var(--primary);
    opacity: 1;
}

/* ── Cart Page Enhancements ── */
.cart-page-body { background: var(--bg-main); }
.cart-main-container { padding: 40px 0 100px 0; }
.cart-items-card, .summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
body.light-mode .cart-items-card, body.light-mode .summary-card {
    border-color: #f1f5f9;
}

/* ── Review Mini Button (Orders) ── */
.review-mini-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.2s ease;
}
.review-mini-btn:hover {
    background: rgba(245, 158, 11, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

/* ── Order Card Enhanced ── */
.order-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}
.order-card:hover {
    border-color: var(--primary);
    background: rgba(25, 114, 245, 0.04);
}

/* ═══════════════════════════════════════════════════ */
/*  HOMEPAGE V2 — Premium Redesign                    */
/* ═══════════════════════════════════════════════════ */

/* ─── Category Banner Row ─── */
.cat-banner-row {
    display: flex; gap: 12px;
    margin: 20px 0 24px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}
.cat-banner-row::-webkit-scrollbar { display: none; }

.cat-banner-card {
    flex: 0 0 auto;
    min-width: 200px;
    height: 90px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex; align-items: center; gap: 14px;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-main);
    position: relative;
    overflow: hidden;
}
.cat-banner-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,184,148,0.05) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s;
}
.cat-banner-card:hover::before { opacity: 1; }
.cat-banner-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.cat-banner-card .cbc-icon {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 14px;
    background: rgba(0,184,148,0.1);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}
.cat-banner-card:hover .cbc-icon {
    background: var(--primary);
    color: #fff;
}
.cat-banner-card .cbc-info { position: relative; z-index: 1; }
.cat-banner-card .cbc-info strong {
    font-size: 14px; font-weight: 800;
    display: block; margin-bottom: 2px;
}
.cat-banner-card .cbc-info span {
    font-size: 11px; color: var(--text-muted);
}

/* ─── Trust Bar V2 ─── */
.trust-bar-v2 {
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(135deg, rgba(0,184,148,0.06) 0%, rgba(139,92,246,0.04) 100%);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 32px;
    margin: 8px 0 28px;
    gap: 10px;
    flex-wrap: wrap;
}
.trust-v2-item {
    display: flex; align-items: center; gap: 14px;
    flex: 1; min-width: 180px;
}
.trust-v2-icon {
    font-size: 24px;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
}
body.light-mode .trust-v2-icon {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.06);
}
.trust-v2-text strong {
    font-size: 14px; font-weight: 800;
    display: block; margin-bottom: 2px;
}
.trust-v2-text span {
    font-size: 11.5px; color: var(--text-muted);
}
.trust-v2-sep {
    width: 1px; height: 36px;
    background: var(--border);
}

/* ─── Category Section ─── */
.cat-section {
    margin-top: 2.5rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
}
.cat-section-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 12px;
}
.cat-section-title {
    display: flex; align-items: center; gap: 12px;
}
.cat-section-title .cs-icon {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 20px;
    flex-shrink: 0;
}
.cat-section-title .cs-text h3 {
    font-size: 18px; font-weight: 800;
    margin: 0 0 2px;
}
.cat-section-title .cs-text span {
    font-size: 12px; color: var(--text-muted);
}
.cat-section .view-all {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.2s;
    display: flex; align-items: center; gap: 6px;
    background: transparent;
}
.cat-section .view-all:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Sub-category tabs */
.cat-section-tabs {
    display: flex; gap: 6px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.cat-tab {
    padding: 7px 18px;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    transition: all 0.2s;
    display: flex; align-items: center; gap: 6px;
}
body.light-mode .cat-tab {
    background: #f1f5f9;
    border-color: #e2e8f0;
}
.cat-tab:hover { color: var(--text-main); border-color: var(--primary); }
.cat-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Category Carousel */
.cat-carousel-wrap {
    position: relative;
    padding-left: 28px;
    --cat-line-color: var(--primary);
}
.cat-carousel-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--cat-line-color);
    border-radius: 2px;
    opacity: 0.9;
}
.cat-carousel .swiper-slide {
    width: auto;
    display: flex;
    height: auto;
}
.cat-carousel .product-card {
    width: 195px;
    min-width: 195px;
    height: 100%;
}
.cat-carousel .swiper-button-prev,
.cat-carousel .swiper-button-next {
    width: 36px; height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-main);
    top: 50%;
    transform: translateY(-50%);
}
.cat-carousel .swiper-button-prev { left: -14px; }
.cat-carousel .swiper-button-next { right: -14px; }
.cat-carousel .swiper-button-prev::after,
.cat-carousel .swiper-button-next::after {
    font-size: 14px; font-weight: 900;
}
.cat-carousel .swiper-button-prev:hover,
.cat-carousel .swiper-button-next:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* More card at end */
.cat-more-card {
    width: 195px; min-width: 195px;
    height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: rgba(255,255,255,0.02);
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg, 14px);
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    color: var(--text-muted);
    padding: 20px;
    text-align: center;
}
.cat-more-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0,184,148,0.04);
}
.cat-more-card i {
    font-size: 28px;
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(0,184,148,0.1);
    color: var(--primary);
}
.cat-more-card span {
    font-size: 12.5px; font-weight: 700;
}

/* ─── Stats Banner V2 ─── */
.stats-banner-v2 {
    display: flex;
    align-items: center; justify-content: space-around;
    background: var(--primary-gradient, linear-gradient(135deg, #00b894, #00a082));
    border-radius: 20px;
    padding: 36px 40px;
    margin: 3rem 0;
    flex-wrap: wrap;
    gap: 20px;
}
.stats-v2-item {
    text-align: center;
    color: #fff;
}
.stats-v2-number {
    font-size: 2.2rem; font-weight: 900;
    line-height: 1.2;
}
.stats-v2-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .trust-bar-v2 { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
    .trust-v2-sep { display: none; }
    .trust-v2-item { min-width: unset; }
    .cat-section { padding: 0; border-radius: 0; }
    .cat-section-title .cs-icon { width: 34px; height: 34px; font-size: 17px; }
    .cat-section-title .cs-text h3 { font-size: 16px; }
    .cat-carousel-wrap { padding-left: 18px; }
    .cat-banner-card { min-width: 160px; height: 76px; padding: 0 14px; }
    .cat-banner-card .cbc-icon { width: 40px; height: 40px; min-width: 40px; font-size: 17px; }
    .cat-carousel .product-card { width: 165px; min-width: 165px; }
    .cat-carousel .swiper-button-prev,
    .cat-carousel .swiper-button-next { display: none; }
    .stats-banner-v2 { padding: 24px 20px; }
    .stats-v2-number { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════════════════
   BİLDİRİM SİSTEMİ (NOTIFICATION SYSTEM)
   ═══════════════════════════════════════════════════ */
.notification-wrap {
    position: relative;
    display: inline-block;
}

.notification-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.notification-btn i {
    transition: transform 0.3s;
}

.notification-btn:hover i {
    animation: bellShake 0.5s ease-in-out;
}

@keyframes bellShake {
    0% { transform: rotate(0); }
    15% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    45% { transform: rotate(10deg); }
    60% { transform: rotate(-10deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(0); }
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-main);
    box-shadow: 0 0 15px var(--primary-glow);
    z-index: 2;
}

.notification-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 340px;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    overflow: hidden;
    transform-origin: top right;
    animation: dropdownSlideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification-wrap.open .notification-dropdown {
    display: block;
}

@keyframes dropdownSlideIn {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.notif-header {
    padding: 15px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
}

.notif-header h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.notif-header .read-all-btn {
    font-size: 11px;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: opacity 0.2s;
}

.notif-header .read-all-btn:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.notif-list {
    max-height: 400px;
    overflow-y: auto;
}

.notif-item {
    padding: 16px 20px;
    display: flex;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.notif-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.notif-item.unread {
    background: rgba(255, 196, 0, 0.03);
}

.notif-item.unread::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary);
}

.notif-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.notif-icon.success { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.notif-icon.info { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }
.notif-icon.warning { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.notif-icon.error { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.notif-content {
    flex: 1;
}

.notif-title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
    display: block;
    letter-spacing: -0.2px;
}

.notif-msg {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    display: block;
}

.notif-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.notif-time::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
}

.notif-empty {
    padding: 40px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

.notif-empty i {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.2;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast-notif {
    background: rgba(20, 20, 25, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 24px;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 320px;
    max-width: 420px;
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.toast-notif::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: currentColor;
    opacity: 0.5;
    transform-origin: left;
    animation: toastProgress 5s linear forwards;
}

@keyframes toastProgress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

.toast-notif.show {
    transform: translateX(0);
}

.toast-notif.success { color: #22c55e; }
.toast-notif.info { color: #0ea5e9; }
.toast-notif.warning { color: #f59e0b; }
.toast-notif.error { color: #ef4444; }

.toast-notif i.main-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(255,255,255,0.05);
    flex-shrink: 0;
}

.toast-notif.success i.main-icon { background: rgba(34, 197, 94, 0.1); }
.toast-notif.info i.main-icon { background: rgba(14, 165, 233, 0.1); }
.toast-notif.warning i.main-icon { background: rgba(245, 158, 11, 0.1); }
.toast-notif.error i.main-icon { background: rgba(239, 68, 68, 0.1); }

.toast-notif-body {
    flex: 1;
}

.toast-notif-body b {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
    letter-spacing: -0.2px;
}

.toast-notif-body span {
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

.toast-close {
    cursor: pointer;
    opacity: 0.3;
    font-size: 14px;
    padding: 8px;
    transition: all 0.2s;
    color: #fff;
}

.toast-close:hover { opacity: 1; transform: rotate(90deg); }


/* ══════════════════════════════════════════
   PREMIUM CUSTOM MODAL (CONFIRM/ALERT)
   ══════════════════════════════════════════ */
.sg-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sg-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.sg-modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-glow);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.sg-modal-overlay.show .sg-modal-card {
    transform: scale(1) translateY(0);
}

.sg-modal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.sg-modal-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.sg-modal-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.sg-modal-body {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 30px;
}

.sg-modal-actions {
    display: flex;
    gap: 12px;
}

.sg-modal-btn {
    flex: 1;
    height: 48px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    border: 1px solid transparent;
}

.sg-modal-btn-cancel {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border-color: var(--border);
}

.sg-modal-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.sg-modal-btn-confirm {
    background: var(--primary);
    color: #000;
}

.sg-modal-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow);
    filter: brightness(1.1);
}

.sg-modal-btn-confirm:active {
    transform: translateY(0);
}

.sg-modal-icon.warning { color: #f59e0b; background: rgba(245, 158, 11, 0.1); }
.sg-modal-icon.danger { color: #ef4444; background: rgba(239, 68, 68, 0.1); }
.sg-modal-icon.success { color: #22c55e; background: rgba(34, 197, 94, 0.1); }

/* Skeleton Loading & Error States */
.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-input) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.product-card.skeleton-card {
    border-color: rgba(255,255,255,0.05);
    pointer-events: none;
}

.product-card.skeleton-card .product-img-wrapper {
    background: var(--bg-input);
    aspect-ratio: 1/1;
    border-radius: 12px;
}

.product-card.skeleton-card .skeleton-text {
    height: 14px;
    margin-bottom: 10px;
    width: 80%;
}

.product-card.skeleton-card .skeleton-price {
    height: 24px;
    width: 40%;
}

.load-error-state {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    background: rgba(239, 68, 68, 0.05);
    border: 1px dashed rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    color: var(--text-muted);
}

.load-error-state i {
    font-size: 32px;
    color: #ef4444;
    margin-bottom: 15px;
}

.btn-retry {
    margin-top: 15px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-retry:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ═══════════════════════════════════════════════════════
   LIVE CHAT WIDGET
   ═══════════════════════════════════════════════════════ */
#lc-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    font-family: 'Outfit', sans-serif;
}
#lc-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35), 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
#lc-toggle::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.6);
    animation: lcPulseRing 2.4s ease-out infinite;
    pointer-events: none;
}
@keyframes lcPulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}
#lc-toggle:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
}
.lc-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 2px solid #000;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

#lc-panel {
    position: absolute;
    right: 0;
    bottom: 76px;
    width: 380px;
    max-width: calc(100vw - 32px);
    height: 540px;
    max-height: calc(100vh - 120px);
    background: #0e0e0e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    overflow: hidden;
}
#lc-panel.lc-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.lc-header {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.lc-header-info { display: flex; align-items: center; gap: 12px; }
.lc-header-avatar {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    backdrop-filter: blur(8px);
}
.lc-header-title { font-weight: 800; font-size: 15px; }
.lc-header-status {
    font-size: 11px;
    opacity: 0.9;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.lc-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    animation: lcDotPulse 1.6s infinite;
}
@keyframes lcDotPulse {
    0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
#lc-close {
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}
#lc-close:hover { background: rgba(255,255,255,0.22); }

.lc-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background:
        radial-gradient(circle at 20% 0%, rgba(16,185,129,0.06) 0%, transparent 50%),
        #0a0a0a;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lc-body::-webkit-scrollbar { width: 6px; }
.lc-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }

.lc-loading {
    display: flex;
    justify-content: center;
    padding: 40px;
    color: var(--primary);
    font-size: 24px;
}

.lc-welcome {
    text-align: center;
    padding: 24px 16px;
    margin: auto 0;
}
.lc-welcome-icon {
    width: 56px; height: 56px;
    margin: 0 auto 14px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
}
.lc-welcome h4 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.lc-welcome p { font-size: 13px; color: var(--text-muted); }
.lc-cta-row { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.lc-cta {
    display: inline-block;
    padding: 9px 18px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff !important;
    font-weight: 700;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
}
.lc-cta-outline {
    background: transparent !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary);
}

.lc-msg { display: flex; flex-direction: column; max-width: 80%; animation: lcSlideIn 0.25s ease; }
.lc-msg-user { align-self: flex-end; align-items: flex-end; }
.lc-msg-admin { align-self: flex-start; align-items: flex-start; }
@keyframes lcSlideIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lc-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13.5px;
    line-height: 1.4;
    word-wrap: break-word;
    color: #fff;
}
.lc-msg-user .lc-bubble {
    background: linear-gradient(135deg, #10b981, #059669);
    border-bottom-right-radius: 4px;
}
.lc-msg-admin .lc-bubble {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.06);
    border-bottom-left-radius: 4px;
}
.lc-meta {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-top: 4px;
    padding: 0 4px;
}

.lc-form {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: #0a0a0a;
}
#lc-input {
    flex: 1;
    background: #161616;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-size: 13.5px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
#lc-input:focus { border-color: var(--primary); }
#lc-send {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: #fff;
    width: 42px; height: 42px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}
#lc-send:hover { transform: scale(1.05); box-shadow: 0 4px 14px rgba(16,185,129,0.4); }
#lc-send:disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 480px) {
    #lc-widget { right: 16px; bottom: 16px; }
    #lc-panel {
        width: calc(100vw - 32px);
        height: calc(100vh - 100px);
        right: 0;
    }
}

/* WhatsApp float ile çakışmasın */
.whatsapp-float { bottom: 96px !important; }

/* ═══════════════════════════════════════════════════════════════
   BEYAZ TEMA (LIGHT MODE) — KAPSAMLI DÜZELTMELER
   ═══════════════════════════════════════════════════════════════ */

/* ── Header Top Bar ── */
body.light-mode .header-top {
    background: #eef0f6;
    border-bottom: 1px solid #dde1eb;
    color: #5a6478;
}
body.light-mode .header-top-social a { color: #7a8499; }
body.light-mode .header-top-social a:hover { color: #1a1d2e; }
body.light-mode .header-top-links a {
    color: #7a8499;
    border-right-color: #d4d8e4;
}
body.light-mode .header-top-links a:first-child { border-left-color: #d4d8e4; }
body.light-mode .header-top-links a:hover { color: #1a1d2e; }

/* ── Search Bar ── */
body.light-mode .search-bar {
    background: #eef0f6;
    border-color: #d4d8e4;
}
body.light-mode .search-bar > i { color: #8892a8; }
body.light-mode .search-bar input { color: #1a1d2e; }
body.light-mode .search-bar input::placeholder { color: #8892a8; }
body.light-mode .search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}

/* ── Icon Buttons ── */
body.light-mode .icon-btn {
    background: #eef0f6;
    border-color: #d4d8e4;
    color: #1a1d2e;
}
body.light-mode .icon-btn:hover {
    background: #e2e6f0;
    border-color: #c0c8d8;
    color: #000;
}

/* ── Btn Secondary (Kayıt Ol) ── */
body.light-mode .btn-secondary {
    background: #eef0f6;
    color: #1a1d2e;
    border-color: #d4d8e4;
}
body.light-mode .btn-secondary:hover {
    background: #e2e6f0;
    color: #000;
}

/* ── Category Nav Bar ── */
body.light-mode .cat-nav-wrap {
    background: #f5f7fb;
    border-top-color: #e2e6f0;
    border-bottom-color: #e2e6f0;
}
body.light-mode .cat-nav-sep { background: #d4d8e4; }
body.light-mode .cat-nav-btn { color: #5a6478; border-right-color: #e2e6f0; }
body.light-mode .cat-nav-btn:hover { color: #1a1d2e; background: rgba(0,0,0,0.04); }
body.light-mode .cat-nav-item-wrap.has-drop:hover > .cat-nav-btn { color: #1a1d2e; background: rgba(0,0,0,0.04); }
body.light-mode .cat-nav-special { color: #5a6478 !important; }
body.light-mode .cat-nav-special:hover { color: var(--primary) !important; }
body.light-mode .cat-nav-all {
    background: var(--primary);
    color: #fff !important;
}
body.light-mode .cat-nav-all:hover { background: var(--primary-hover); color: #fff !important; }
body.light-mode .theme-switch-wrap { border-left-color: #d4d8e4; }
body.light-mode .tsw-btn { color: #5a6478; }
body.light-mode #light-theme-sw { background: var(--primary); color: #fff; }
body.light-mode #dark-theme-sw { background: transparent; color: #5a6478; }

/* ── Product Img Wrapper ── */
body.light-mode .product-img-wrapper { background: #f1f3f8; }

/* ── Search Suggestions / Dropdown ── */
body.light-mode .search-suggestions {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
body.light-mode .suggestion-item { color: #334155; }
body.light-mode .suggestion-item:hover { background: #f1f5f9; }

/* ── User Dropdown ── */
body.light-mode .user-dropdown {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
body.light-mode .user-dropdown a {
    color: #334155;
    border-bottom-color: #f1f5f9;
}
body.light-mode .user-dropdown a:hover { background: #f1f5f9; color: #1e293b; }

/* ── Notification Dropdown ── */
body.light-mode .notification-dropdown {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
body.light-mode .notif-header { border-bottom-color: #f1f5f9; color: #1e293b; }

/* ── Logo fallback ── */
body.light-mode .logo-fallback {
    background: linear-gradient(135deg, #0f172a 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Footer ── */
body.light-mode .site-footer {
    background: #e8ecf5;
    border-top-color: #d4d8e8;
}
body.light-mode .footer-bottom {
    border-top-color: #d4d8e8;
    color: #64748b;
}
body.light-mode .footer-col h4 { color: #1e293b; }
body.light-mode .footer-links a { color: #64748b; }
body.light-mode .footer-links a:hover { color: #1e293b; }
body.light-mode .footer-social a {
    background: rgba(0,0,0,0.06);
    color: #64748b;
}
body.light-mode .footer-social a:hover { background: var(--primary); color: #fff; }
body.light-mode .footer-about { color: #64748b; }

/* ── Product Detail Specific ── */
body.light-mode .pd-action-row {
    border-top-color: rgba(0,0,0,0.08);
}
body.light-mode .pd-img-card {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 0 10px rgba(16,185,129,0.08);
}

/* ── Trust Section ── */
body.light-mode .trust-item {
    background: #fff;
    border-color: #e2e8f0;
}
body.light-mode .trust-info strong { color: #1e293b; }
body.light-mode .trust-info small,
body.light-mode .trust-info span { color: #64748b; }

/* ── Giveaway ── */
body.light-mode .giveaway-banner-overlay {
    background: linear-gradient(0deg, #fff 0%, transparent 60%);
}
body.light-mode .giveaway-btn { color: #2563eb !important; }
body.light-mode .streamer-btn { color: #7c3aed !important; }

/* ── Profile Page ── */
body.light-mode .profile-sidebar-new {
    background: #fff;
    border-right-color: #e2e8f0;
}

/* ── Breadcrumb ── */
body.light-mode .breadcrumb { color: #64748b; }

/* ── Empty State ── */
body.light-mode .empty-state { color: #94a3b8; }

/* ── Canlı Destek (Live Chat) Widget ── */
body.light-mode #lc-panel {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
body.light-mode .lc-header {
    background: linear-gradient(135deg, #10b981, #059669);
}
body.light-mode .lc-messages { background: #f8fafc; }
body.light-mode .lc-welcome { background: #f1faf6; border-color: #bbf7d0; }
body.light-mode .lc-welcome h4 { color: #1e293b; }
body.light-mode .lc-msg-admin .lc-bubble {
    background: #fff;
    border-color: #e2e8f0;
    color: #1e293b;
}
body.light-mode .lc-form {
    background: #f1f5f9;
    border-top-color: #e2e8f0;
}
body.light-mode #lc-input {
    background: #fff;
    border-color: #d4d8e4;
    color: #1a1d2e;
}
body.light-mode #lc-input::placeholder { color: #94a3b8; }

/* ── Notification / Toast ── */
body.light-mode .notification {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    color: #1e293b;
}

/* ── Cart Drawer ── */
body.light-mode .cart-drawer {
    background: #fff;
    border-left-color: #e2e8f0;
}
body.light-mode .cart-drawer-header { border-bottom-color: #e2e8f0; color: #1e293b; }
body.light-mode .cart-item { border-bottom-color: #f1f5f9; }
body.light-mode .cart-item-name { color: #1e293b; }
body.light-mode .cart-item-price { color: #1e293b; }
body.light-mode .cart-drawer-footer { border-top-color: #e2e8f0; background: #f8fafc; }

/* ── Section Headers ── */
body.light-mode .section-header h2 { color: #1e293b; }

/* ── Category Circles ── */
body.light-mode .cat-circle span { color: #64748b; }
body.light-mode .cat-circle:hover span { color: var(--primary); }

/* ── Quick View ── */
body.light-mode .quick-view-modal {
    background: #fff;
    border-color: #e2e8f0;
}

/* ── Weekly Deals ── */
body.light-mode .deals-header { color: #1e293b; }
body.light-mode .deals-countdown-badge {
    background: #fff;
    border-color: #e2e8f0;
    color: #1e293b;
}

/* ── Hero slider navigation ── */
body.light-mode .swiper-button-next,
body.light-mode .swiper-button-prev {
    background: rgba(0,0,0,0.3);
    color: #fff;
}

/* ── Scrollbar ── */
body.light-mode ::-webkit-scrollbar-track { background: #f1f5f9; }
body.light-mode ::-webkit-scrollbar-thumb { background: #cbd5e1; }
body.light-mode ::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ═══════════════════════════════════════════════════════════════
   BEYAZ TEMA — EK KAPSAMLI DÜZELTMELER (2. Dalga)
   ═══════════════════════════════════════════════════════════════ */

/* ── Genel form label & input ── */
body.light-mode .form-group label { color: #1e293b; }
body.light-mode .form-control { background: #f8fafc; border-color: #cbd5e1; color: #1e293b; }
body.light-mode .help-box p { color: #64748b; }
body.light-mode .help-box p b { color: #1e293b; }

/* ── Ürün kartı fiyat ── */
body.light-mode .price-value { color: #0f172a; }
body.light-mode .p-feature-item { border-bottom-color: rgba(0,0,0,0.06); }

/* ── Kategori circle hover metin ── */
body.light-mode .cat-circle:hover span { color: var(--primary); }

/* ── Footer links hover ── */
body.light-mode .footer-links a:hover { color: #1e293b; padding-left: 4px; }
body.light-mode .footer-contact-item { background: #f1f5f9; }
body.light-mode .footer-contact-item strong { color: #1e293b; }

/* ── Sub-nav ── */
body.light-mode .sub-nav a { color: #1e293b; }
body.light-mode .sub-nav .kategoriler { background: rgba(0,0,0,0.05); }

/* ── User menu button ── */
body.light-mode .user-menu-btn { background: #f1f5f9; border-color: #e2e8f0; }
body.light-mode .user-menu-btn:hover { background: #e2e8f0; }
body.light-mode .user-dropdown-header { background: #f8fafc; border-bottom: 1px solid #f1f5f9; }
body.light-mode .user-dropdown a:hover { background: #f1f5f9; color: #1e293b; }
body.light-mode .user-dropdown a { border-bottom-color: #f1f5f9; }

/* ── Cart drawer close button ── */
body.light-mode .cart-drawer-header button { background: #f1f5f9; border-color: #e2e8f0; color: #1e293b; }
body.light-mode .cart-drawer-header button:hover { background: #e2e8f0; }

/* ── Bildirim Dropdown (Notification) ── */
body.light-mode .notification-dropdown {
    background: #fff !important;
    border-color: #e2e8f0 !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1) !important;
}
body.light-mode .notif-header { background: #f8fafc; border-bottom-color: #e2e8f0; }
body.light-mode .notif-header h4 { color: #1e293b; }
body.light-mode .notif-item { border-bottom-color: #f1f5f9; }
body.light-mode .notif-item:hover { background: #f8fafc; }
body.light-mode .notif-item.unread { background: rgba(16,185,129,0.04); }
body.light-mode .notif-icon { background: #f1f5f9; }
body.light-mode .notif-title { color: #1e293b; }
body.light-mode .notif-msg { color: #64748b; }
body.light-mode .notif-time { color: #94a3b8; }
body.light-mode .notif-empty { color: #94a3b8; }

/* ── Toast Notification ── */
body.light-mode .toast-notif {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
body.light-mode .toast-notif-body b { color: #1e293b; }
body.light-mode .toast-notif-body span { color: #64748b; }
body.light-mode .toast-close { color: #64748b; }
body.light-mode .toast-notif i.main-icon { background: #f1f5f9; }

/* ── Sepet Sayfası (Cart Page) ── */
body.light-mode .cart-page-body { background: var(--bg-main); }
body.light-mode .cart-page-header h1 { color: #1e293b; }
body.light-mode .cart-items-card,
body.light-mode .summary-card {
    background: #fff;
    border-color: #e2e8f0;
}
body.light-mode .cart-card-header { background: #f8fafc; border-bottom-color: #e2e8f0; }
body.light-mode .cart-page-item { border-bottom-color: #f1f5f9; }
body.light-mode .cart-page-item:hover { background: #f8fafc; }
body.light-mode .cp-item-details h3 { color: #1e293b; }
body.light-mode .cp-item-qty {
    background: #f1f5f9;
    border-color: #e2e8f0;
}
body.light-mode .cp-item-qty .qty-btn { color: #1e293b; }
body.light-mode .cp-item-qty .qty-val { color: #1e293b; }
body.light-mode .summary-card h3 { color: #1e293b; border-bottom-color: #e2e8f0; }
body.light-mode .summary-total { border-top-color: #e2e8f0; }
body.light-mode .summary-total span { color: #1e293b; }
body.light-mode .coupon-section p { color: #1e293b; }
body.light-mode .cp-input-group input {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #1e293b;
}
body.light-mode .cp-input-group button {
    background: #f1f5f9;
    color: #1e293b;
    border-color: #e2e8f0;
}
body.light-mode .cp-input-group button:hover { background: #e2e8f0; color: #1e293b; }
body.light-mode .cart-empty-state .empty-icon { color: rgba(0,0,0,0.06); }
body.light-mode .cart-empty-state h2 { color: #1e293b; }

/* ── Profil Sayfası ── */
body.light-mode .profile-sidebar-new { background: #fff; border-right-color: #e2e8f0; }
body.light-mode .profile-content-area { background: #f8fafc; }
body.light-mode .profile-stat-card { background: #fff; border-color: #e2e8f0; }
body.light-mode .quick-access-btn { background: #f1f5f9; border-color: #e2e8f0; }
body.light-mode .quick-access-btn:hover { background: #e2e8f0; border-color: #cbd5e1; }
body.light-mode .order-card { background: #fff; border-color: #e2e8f0; }
body.light-mode .order-code { background: #f1f5f9; border-color: #cbd5e1; }
body.light-mode .profile-nav-item { color: #64748b; }
body.light-mode .profile-nav-item:hover { color: #1e293b; background: rgba(0,0,0,0.03); }
body.light-mode .profile-nav-item.active { color: #1e293b; background: rgba(16,185,129,0.08); }
body.light-mode .profile-nav-section { color: #94a3b8; }
body.light-mode .profile-nav-item .nav-sub { color: #94a3b8; }
body.light-mode .psc-arrow { color: #94a3b8; }
body.light-mode .profile-user .balance { color: #1e293b; }

/* ── Profil ticket/form inputs ── */
body.light-mode .profile-content-area input[type="text"],
body.light-mode .profile-content-area input[type="email"],
body.light-mode .profile-content-area input[type="password"],
body.light-mode .profile-content-area textarea,
body.light-mode .profile-content-area select,
body.light-mode #ticket-type,
body.light-mode #ticket-order-id,
body.light-mode select.ticket-input,
body.light-mode .custom-select-display,
body.light-mode .sg-select {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #1e293b;
}
body.light-mode select.ticket-input option,
body.light-mode .sg-select option { background: #fff; color: #1e293b; }

/* ── Kategoriler Sayfası ── */
body.light-mode .all-cats-header h1 { color: #1e293b !important; }
body.light-mode .cats-search-input { color: #1e293b !important; background: #fff !important; border-color: #e2e8f0 !important; }

/* ── Kategori Explore Card ── */
body.light-mode .cat-explore-info h3 { color: #1e293b !important; }
body.light-mode .cat-explore-arrow { background: #f1f5f9 !important; border-color: #e2e8f0 !important; }

/* ── Weekly Deals Section ── */
body.light-mode .weekly-deals-section {
    background:
        linear-gradient(135deg, #fff7ed 0%, #fffbeb 50%, #fef2f2 100%);
    border-color: rgba(245,158,11,0.3);
    box-shadow: 0 20px 50px -20px rgba(245, 158, 11, 0.25);
}
body.light-mode .weekly-deals-section::before {
    background:
        radial-gradient(ellipse at 15% 0%, rgba(245,158,11,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 100%, rgba(239,68,68,0.10) 0%, transparent 55%);
}
body.light-mode .weekly-deals-section .product-card {
    background: #fff;
    border-color: rgba(245,158,11,0.18);
    box-shadow: 0 8px 24px -12px rgba(245,158,11,0.2);
}
body.light-mode .weekly-deals-section .product-card h3 { color: #0f172a; }
body.light-mode .weekly-deals-section .product-card .p-feature-item { color: #475569; }
body.light-mode .weekly-deals-section .product-card .price-value {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
body.light-mode .deals-title-sub { color: #ea580c; }
body.light-mode .deals-countdown-badge {
    background: linear-gradient(135deg, rgba(239,68,68,0.10), rgba(245,158,11,0.08));
    border-color: rgba(239,68,68,0.35);
    color: #1e293b;
}
body.light-mode .deals-countdown-label { color: rgba(30,41,59,0.7); }
body.light-mode .deals-countdown-blocks .cd-num {
    background: rgba(15,23,42,0.85);
    color: #fff;
    box-shadow: inset 0 -2px 0 rgba(239,68,68,0.5);
}
body.light-mode .deal-savings-chip {
    background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.06));
    border-color: rgba(34, 197, 94, 0.4);
    color: #15803d;
}

/* ── Social Proof Toast ── */
body.light-mode .social-proof-toast {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
body.light-mode .spt-info strong { color: #1e293b; }

/* ── Slider Fallback ── */
body.light-mode .slider-fallback { background: #f1f5f9; }
body.light-mode .slider-fallback h2 { color: #1e293b; }
body.light-mode .slider-placeholder { background: #f1f5f9; }

/* ── SG Modal ── */
body.light-mode .sg-modal-title { color: #1e293b; }
body.light-mode .sg-modal-btn-cancel {
    background: #f1f5f9;
    color: #64748b;
    border-color: #e2e8f0;
}
body.light-mode .sg-modal-btn-cancel:hover { background: #e2e8f0; color: #1e293b; }

/* ── Bildirimler Sayfası (bildirimler.html) ── */
body.light-mode .notification-wrap.open .notification-dropdown { display: block; }

/* ── Product img wrapper dark bg ── */
body.light-mode .product-img-wrapper { background: #f1f5f9 !important; }

/* ── Footer contact item ── */
body.light-mode .footer-contact-item { background: #f1f5f9; border-radius: 10px; }

/* ── Kupon input (sepet sayfası içi) ── */
body.light-mode .coupon-input {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #1e293b;
}

/* ── Breadcrumb separator ── */
body.light-mode .breadcrumb .sep { color: #94a3b8; }

/* ── Page content genel arka plan ── */
body.light-mode .page-content { background: transparent; }

/* ── Profile page border ── */
body.light-mode .profile-page { border-color: #e2e8f0; }

/* ── Bildirim butonu (bell) ── */
body.light-mode .notification-btn {
    background: #eef0f6;
    border-color: #d4d8e4;
    color: #1a1d2e;
}
body.light-mode .notification-btn:hover {
    background: #e2e6f0;
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ── Ticket list hover ── */
body.light-mode .ticket-list-item:hover { background: rgba(0,0,0,0.03) !important; }

/* ── Giveaway banner overlay ── */
body.light-mode .giveaway-banner-overlay {
    background: linear-gradient(to top, rgba(255,255,255,0.9) 0%, transparent 60%);
}

/* ── Blog card footer ── */
body.light-mode .blog-card-footer { border-top-color: #f1f5f9; }

/* ── Product Detail page ── */
body.light-mode .pd-info-card,
body.light-mode .pd-details-card { background: #fff; border-color: #e2e8f0; }

/* ── Cat nav all button light mode fix ── */
body.light-mode .cat-nav-all { background: var(--primary); color: #fff !important; }
body.light-mode .cat-nav-all:hover { background: var(--primary-hover); color: #fff !important; }

/* ── Cat nav btn hover in light ── */
body.light-mode .cat-nav-item-wrap.has-drop:hover > .cat-nav-btn { color: #111; }


