/* css/main.css - Revamped */


:root {
    /* Premium Lighter Dark Theme Variables */
    --bg-dark: #232d3f; /* Lighter slate blue */
    --bg-panel: #2b384e; /* Panel background */
    --bg-card: #2f3e58; /* Card background */
    --primary-blue: #3b82f6; 
    --primary-hover: #60a5fa; 
    --accent-color: #f97316;
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    --border-color: rgba(255, 255, 255, 0.1); 
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
    --glass-bg: rgba(43, 56, 78, 0.85); 
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* ================= HEADER ================= */
.top-bar {
    background: #05080f;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-muted);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-links a {
    color: var(--text-muted);
    margin-left: 15px;
}
.top-bar-links a:hover {
    color: var(--text-main);
}

.main-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px); /* Glassmorphism */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000000;
}

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

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--primary-blue);
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.5); /* Hafif parlama */
}

/* Search Bar */
.search-container {
    flex: 1;
    max-width: 500px;
    margin: 0 40px;
    position: relative;
}
.search-container input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: 25px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}
.search-container input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}
.search-container button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: var(--primary-blue);
    border: none;
    color: #fff;
    padding: 0 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}
.search-container button:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

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

/* Bildirim Paneli Stilleri */
.notif-wrapper {
    position: relative;
}

.notif-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
    text-decoration: none;
}
.notif-btn:hover {
    background: rgba(59, 130, 246, 0.18);
    border-color: rgba(59, 130, 246, 0.4);
    color: var(--primary-blue);
}

.notif-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

.notif-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 360px;
    background: #0d1321;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    display: none;
    flex-direction: column;
    z-index: 9999999 !important;
    overflow: hidden;
    animation: notifFadeIn 0.2s ease;
}
@keyframes notifFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.notif-dropdown.show {
    display: flex !important;
}

.notif-header {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
}
.notif-header a {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}
.notif-header a:hover {
    text-decoration: underline;
}

.notif-body {
    max-height: 360px;
    overflow-y: auto;
}
.notif-empty {
    padding: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}
.notif-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: background 0.2s;
}
.notif-item:hover {
    background: rgba(255, 255, 255, 0.04);
}
.notif-item.unread {
    background: rgba(59, 130, 246, 0.08);
}
.notif-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.notif-icon.bg-success { background: rgba(16, 185, 129, 0.18); color: #10b981; }
.notif-icon.bg-primary { background: rgba(59, 130, 246, 0.18); color: #3b82f6; }
.notif-icon.bg-warning { background: rgba(245, 158, 11, 0.18); color: #f59e0b; }
.notif-icon.bg-danger { background: rgba(239, 68, 68, 0.18); color: #ef4444; }

.notif-content {
    flex: 1;
    overflow: hidden;
}
.notif-title {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 2px;
}
.notif-desc {
    color: var(--text-muted);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notif-footer {
    padding: 12px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}
.notif-footer a {
    color: var(--primary-blue);
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
}

/* Kategori Menüsü (Sub Header) */
.category-nav {
    position: relative;
    z-index: 9999;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border-color);
}
.category-nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 25px;
    padding: 15px 0;
}
.category-nav a {
    color: #ffffff !important; /* Tam Beyaz */
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}
.category-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%; /* Üstüne gelmeden sürekli görünen sabit mavi çizgi */
    height: 2.5px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.7);
    transition: all 0.3s ease;
}
.category-nav a:hover::after, 
.category-nav a.active::after,
.category-nav .mega-menu-item:hover > a::after {
    box-shadow: 0 0 15px rgba(59, 130, 246, 1), 0 0 5px #fff;
    background: linear-gradient(90deg, #60a5fa, #93c5fd);
}
.category-nav a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 12px rgba(59,130,246,0.6);
}

/* ================= MENÜ ANİMASYONLARI & KUTU STİLLERİ ================= */
.menu-anim-pulse { animation: navPulse 1.8s infinite ease-in-out; }
.menu-anim-blink { animation: navBlink 1.2s infinite ease-in-out; }
.menu-anim-slide { animation: navSlide 1.5s infinite ease-in-out; }
.menu-anim-bounce { animation: navBounce 1.4s infinite ease-in-out; }
.menu-anim-rainbow { animation: navRainbow 3s infinite linear; }

@keyframes navPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(59,130,246,0.6)); }
    50% { transform: scale(1.06); filter: drop-shadow(0 0 14px rgba(59,130,246,1)); }
}
@keyframes navBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}
@keyframes navSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}
@keyframes navBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
@keyframes navRainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.menu-badge-box {
    padding: 6px 14px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.menu-badge-box::after { display: none !important; }

/* ================= MEGA MENU (Extracted from header.php) ================= */
.mega-menu-item {
    position: relative;
}
.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 16px;
    min-width: 600px;
    padding: 22px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9), 0 0 25px rgba(59, 130, 246, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999999;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.mega-menu-item:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-sub-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-main) !important;
    transition: all 0.3s ease;
    text-decoration: none;
}
.mega-sub-link:hover {
    background: rgba(59,130,246,0.1);
    border-color: var(--primary-blue);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.mega-sub-link img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}
.mega-sub-link i {
    font-size: 22px;
    color: var(--primary-blue);
}
.cat-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
}

/* ================= NOTIFICATIONS ================= */
.notif-wrapper { position: relative; display: inline-block; margin-right: 15px; }
.notif-btn { color: #fff; font-size: 22px; position: relative; display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.05); transition: 0.3s; }
.notif-btn:hover { background: rgba(255,255,255,0.1); }
.notif-badge { position: absolute; top: 0; right: -5px; background: var(--primary-blue); color: #fff; font-size: 11px; font-weight: 800; padding: 2px 6px; border-radius: 10px; border: 2px solid var(--bg-panel); line-height: 1; }
.notif-dropdown { position: absolute; top: calc(100% + 15px); right: -60px; width: 320px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.6); z-index: 9999; display: none; opacity: 0; transform: translateY(10px); transition: all 0.3s ease; }
.notif-dropdown.show { display: block; opacity: 1; transform: translateY(0); }
.notif-header { padding: 15px 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
.notif-header span { font-weight: 700; color: #fff; }
.notif-header a { font-size: 12px; color: var(--text-muted); cursor: pointer; }
.notif-header a:hover { color: var(--primary-blue); }
.notif-body { max-height: 350px; overflow-y: auto; }
.notif-item { display: flex; gap: 12px; padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,0.02); text-decoration: none; transition: background 0.2s; }
.notif-item:hover { background: rgba(255,255,255,0.02); }
.notif-item.unread { background: rgba(59,130,246,0.05); }
.notif-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.notif-icon.bg-primary { background: rgba(59,130,246,0.15); color: #3b82f6; }
.notif-icon.bg-success { background: rgba(16,185,129,0.15); color: #10b981; }
.notif-icon.bg-warning { background: rgba(245,158,11,0.15); color: #f59e0b; }
.notif-icon.bg-danger { background: rgba(239,68,68,0.15); color: #ef4444; }
.notif-content { flex: 1; }
.notif-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.notif-desc { font-size: 12px; color: var(--text-muted); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.notif-footer { padding: 12px; text-align: center; border-top: 1px solid var(--border-color); background: rgba(255,255,255,0.01); border-radius: 0 0 16px 16px; }
.notif-footer a { color: var(--primary-blue); font-size: 13px; font-weight: 700; text-decoration: none; }
.notif-empty { padding: 30px 20px; text-align: center; color: var(--text-muted); font-size: 13px; font-style: italic; }

/* ==================== EXACT MOCKUP MATCHING PRODUCT CARDS & GRID ==================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 260px));
    gap: 24px;
    justify-content: flex-start;
}

.product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 260px;
    background: linear-gradient(180deg, #0d1527 0%, #070c18 100%);
    border: 1px solid rgba(0, 242, 254, 0.4);
    border-radius: 14px;
    padding: 5px;
    position: relative;
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 242, 254, 0.15);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: #00f2fe;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.4);
}

/* 1200x600 Banner Formatı (2:1 Oranı - Yatay Banner Görselleri Tam Oturur) */
.product-image-container {
    width: 100%;
    height: 340px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #070c18;
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Doping Badges */
.doping-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.5px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(245, 158, 11, 0.5);
    color: #fbbf24;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}
.doping-badge.deal {
    border-color: rgba(239, 68, 68, 0.6);
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.25);
}
.doping-badge.featured {
    border-color: rgba(245, 158, 11, 0.6);
    color: #fde68a;
    background: rgba(245, 158, 11, 0.25);
}
.doping-badge.category {
    border-color: rgba(59, 130, 246, 0.6);
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.25);
}

/* İlan Detay Bilgi Alanı */
.product-info {
    padding: 10px 2px 2px 2px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.product-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #60a5fa;
}

.product-subtitle {
    display: none;
}

/* Ekran Görüntüsündeki Mavi Fiyat Kutu Pill Yapısı */
.product-price-box {
    width: 100%;
    background: #1d4ed8;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    display: flex;
    gap: 6px;
    text-shadow: none;
}

/* Ekran Görüntüsündeki Mavi "Hemen Satın Al" Butonu */
.product-btn-add {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    background: #3b82f6;
    border: none;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    font-family: inherit;
}

.product-card:hover .product-btn-add {
    background: #2563eb;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Alt Çizgi Kaldırıldı */
.product-card-glow-line {
    display: none;
}


.product-card:hover .product-card-glow-line {
    opacity: 1;
    box-shadow: 0 0 20px #00f2fe, 0 0 10px #00f2fe;
}



/* ================= PRODUCT TITLE ELLIPSIS TRUNCATION (...) ================= */
.product-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-break: break-word !important;
    line-height: 1.4 !important;
    max-height: 2.8em !important;
    margin-bottom: 8px;
}

.checkout-title, .product-main-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    line-height: 1.3;
}

/* ================= AJAX SEARCH DROPDOWN (Extracted from header.php) ================= */
.search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 150%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    z-index: 9999;
    display: none;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}
@media (max-width: 768px) {
    .search-dropdown { width: 100%; }
}
.sd-section {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}
.sd-section:last-child { border-bottom: none; }
.sd-title {
    font-size: 11px;
    color: var(--primary-blue);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.sd-list { list-style: none; padding: 0; margin: 0; }
.sd-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    padding: 8px 0;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.sd-list li a:hover { color: #fff; transform: translateX(5px); }
.sd-list li a i { color: var(--primary-blue); font-size: 16px; }

.sd-cat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s;
}
.sd-cat-item:hover { background: rgba(255,255,255,0.06); transform: translateX(5px); }
.sd-cat-item img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }

.sd-prod-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s;
}
.sd-prod-item:hover { background: rgba(255,255,255,0.06); transform: translateX(5px); }
.sd-prod-item img { width: 45px; height: 45px; border-radius: 8px; object-fit: cover; }
.sd-prod-info { flex: 1; min-width: 0; }
.sd-prod-title { 
    font-weight: 600; font-size: 14px; color: #fff; 
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; 
    display: flex; align-items: center; gap: 5px;
}
.sd-prod-cat { font-size: 11px; color: var(--text-muted); }
.sd-prod-price { font-weight: 800; font-size: 14px; color: var(--success); }
.sd-empty { color: var(--text-muted); font-size: 13px; font-style: italic; }

/* ================= BUTTONS ================= */
.btn {
    padding: 10px 22px;
    border-radius: 10px; /* Daha yumuşak köşeler */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #2563eb);
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    color: #fff;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-wallet {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.btn-wallet:hover {
    background: var(--success);
    color: #fff;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.btn-doped {
    background: linear-gradient(45deg, #f59e0b, #ef4444) !important;
    padding: 6px 12px;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}
.btn-doped:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

/* ================= HERO SLIDER & BANNERS (Extracted from index.php) ================= */
.hero-section {
    position: relative;
    z-index: 1;
    margin: 40px 0;
    animation: fadeIn 0.6s ease;
}
.hero-grid {
    display: grid;
    grid-template-columns: 3fr 1fr; /* Make slider wider */
    gap: 20px;
    height: 450px; /* Slightly taller */
}
.main-slider {
    background: var(--bg-card);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.main-slider::before {
    display: none; /* User uploaded banners usually have their own design, no gradient needed unless there's dynamic text */
}
.slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 2;
}
.slider-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.slider-content p {
    font-size: 17px;
    color: #cbd5e1;
    margin-bottom: 25px;
    max-width: 550px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.side-banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.side-banner {
    flex: 1;
    border-radius: 12px;
    background: var(--bg-card);
    border: none;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.side-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.side-banner img {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: transform 0.6s ease;
}
.side-banner:hover img {
    transform: scale(1.1);
    opacity: 0.5;
}
.side-banner-content {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.6);
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}
.side-banner-content h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 800;
}
.side-banner-content span {
    display: inline-block;
    color: #fbbf24;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Swiper overrides */
.swiper-button-next, .swiper-button-prev {
    color: #fff !important;
    background: rgba(0,0,0,0.3);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}
.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--primary-blue) !important;
    box-shadow: 0 0 10px var(--primary-blue);
}

/* ================= INFO BAR (Extracted from index.php) ================= */
.info-bar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.3s ease;
}
.info-item:hover {
    transform: translateY(-3px);
}
.info-item i {
    font-size: 36px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}
.info-item h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}
.info-item p {
    color: var(--text-muted);
    font-size: 13px;
}

/* ================= SECTIONS & CARDS ================= */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0 25px;
}
.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-header h2 i {
    color: var(--primary-blue);
    background: rgba(59,130,246,0.1);
    padding: 8px;
    border-radius: 8px;
}

.doping-header {
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding-bottom: 15px;
}
.doping-header h2 {
    color: var(--warning);
}
.doping-header h2 i {
    color: var(--warning);
    background: rgba(245, 158, 11, 0.1);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 24px;
}

/* Category Pills */
.cat-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 10px;
}
.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}
.cat-pill img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}
.cat-pill i {
    font-size: 18px;
    color: var(--primary-blue);
}
.cat-pill:hover, .cat-pill.active {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Doping Badges */
.doping-badge {
    position: absolute;
    top: 0; left: 0; right: 0;
    text-align: center;
    color: #fff;
    padding: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.doping-badge.deal { background: linear-gradient(45deg, #ef4444, #f87171); animation: pulseGlow 2s infinite; }
.doping-badge.featured { background: linear-gradient(45deg, #f59e0b, #fbbf24); color: #000; }
.doping-badge.category { background: linear-gradient(45deg, #3b82f6, #60a5fa); }

.product-image-container {
    background: transparent;
    padding: 8px;
    display: block;
    height: 180px;
    position: relative;
    overflow: hidden;
}
.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-card); /* Darker bottom section */
    position: relative;
    z-index: 2;
}

.product-cat {
    display: none; /* Hide cat in this layout or keep it? We hide it to match the clean design */
}

.product-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-box {
    background: #1d4ed8; /* Blue price box */
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 10px;
}
.product-price-box span {
    font-size: 12px;
    font-weight: 600;
}

.product-btn-add {
    background: #3b82f6; /* Lighter blue add button */
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s;
}
.product-btn-add:hover {
    background: #2563eb;
}

/* ================= CATEGORY GRID ================= */
.category-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
    gap: 20px; 
    margin-bottom: 50px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
    text-decoration: none;
    position: relative;
}
.category-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.category-image {
    width: 100%; 
    height: 160px; 
    object-fit: cover; 
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.5s ease;
}
.category-card:hover .category-image {
    transform: scale(1.08);
}

.category-placeholder {
    width: 100%; 
    height: 160px; 
    background: rgba(59,130,246,0.05); 
    border-bottom: 1px solid var(--border-color); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--primary-blue);
    transition: background 0.3s;
}
.category-card:hover .category-placeholder {
    background: rgba(59,130,246,0.1);
}
.category-placeholder i {
    font-size: 60px; 
    opacity: 0.5;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.category-card:hover .category-placeholder i {
    transform: scale(1.2);
    opacity: 0.8;
}

.category-title {
    padding: 18px; 
    text-align: center;
    background: var(--bg-card);
    position: relative;
    z-index: 2;
}
.category-title span {
    font-size: 16px; 
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ================= FOOTER ================= */
.footer {
    background: #05080f;
    padding: 80px 0 30px;
    margin-top: 80px;
    border-top: 1px solid var(--border-color);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: var(--text-muted);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}
.footer-col ul li a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: var(--primary-blue);
}
.footer-col ul li a:hover {
    color: #fff;
}
.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 14px;
}

/* Forms (Login/Register) */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 14px;
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}
.form-control:focus {
    border-color: var(--primary-blue);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
    outline: none;
}

/* ================= MOBILE RESPONSIVENESS ================= */

/* Masaüstü: Mobil bileşenleri gizle */
.mobile-header,
.mobile-bottom-nav {
    display: none !important;
}

/* Masaüstü: Desktop header görünür */
.desktop-only-header {
    display: block;
}

@media (max-width: 768px) {
    /* Desktop header ve category nav tamamen gizle */
    .desktop-only-header,
    .top-bar,
    .category-nav {
        display: none !important;
    }

    /* ===== MOBİL COMPACT HEADER ===== */
    .mobile-header {
        display: block !important;
        position: relative;
        z-index: 100000;
        background: rgba(35, 45, 63, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 10px 16px 8px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.35);
    }

    /* Body: bottom nav için boşluk */
    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }

    .mobile-header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .mobile-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        letter-spacing: -0.3px;
    }
    .mobile-logo i {
        font-size: 24px;
        color: var(--primary-blue);
        filter: drop-shadow(0 0 8px rgba(59,130,246,0.7));
    }
    .mobile-logo b {
        color: var(--primary-blue);
        text-shadow: 0 0 14px rgba(59,130,246,0.5);
    }

    .mobile-header-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Mobil Bildirim Butonu */
    .mob-notif-wrapper {
        position: relative;
    }
    .mob-notif-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        text-decoration: none;
        position: relative;
        transition: all 0.25s ease;
    }
    .mob-notif-btn:hover, .mob-notif-btn:active {
        background: rgba(59,130,246,0.2);
        border-color: var(--primary-blue);
        color: var(--primary-blue);
    }
    .mob-notif-badge {
        position: absolute;
        top: -2px;
        right: -4px;
        background: #ef4444;
        color: #fff;
        font-size: 9px;
        font-weight: 800;
        padding: 2px 5px;
        border-radius: 10px;
        border: 2px solid #232d3f;
        line-height: 1;
    }

    /* Mobil Bakiye Butonu */
    .mob-balance-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(16,185,129,0.12);
        border: 1px solid rgba(16,185,129,0.25);
        color: #10b981;
        padding: 7px 13px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.25s ease;
        white-space: nowrap;
    }
    .mob-balance-btn i { font-size: 16px; }
    .mob-balance-btn:hover, .mob-balance-btn:active {
        background: rgba(16,185,129,0.22);
        color: #10b981;
        box-shadow: 0 0 12px rgba(16,185,129,0.25);
    }

    /* Mobil Giriş Butonu (Giriş Yapılmadıysa) */
    .mob-login-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, var(--primary-blue), #2563eb);
        color: #fff;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 4px 14px rgba(59,130,246,0.3);
        transition: all 0.25s ease;
    }
    .mob-login-btn i { font-size: 16px; }
    .mob-login-btn:hover, .mob-login-btn:active {
        color: #fff;
        box-shadow: 0 6px 18px rgba(59,130,246,0.5);
        transform: translateY(-1px);
    }

    /* Mobil Arama Çubuğu */
    .mobile-search-bar form {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 24px;
        padding: 9px 16px;
        transition: all 0.3s ease;
    }
    .mobile-search-bar form:focus-within {
        border-color: var(--primary-blue);
        background: rgba(59,130,246,0.06);
        box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
    }
    .mobile-search-bar i {
        color: var(--text-muted);
        font-size: 18px;
        flex-shrink: 0;
    }
    .mobile-search-bar input {
        flex: 1;
        background: none;
        border: none;
        outline: none;
        color: #fff;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
    }
    .mobile-search-bar input::placeholder {
        color: var(--text-muted);
    }

    /* ===== MOBİL BOTTOM NAVIGATION BAR ===== */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100001;
        background: rgba(27, 35, 50, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 8px 0 max(8px, env(safe-area-inset-bottom));
        box-shadow: 0 -8px 30px rgba(0,0,0,0.5);
        justify-content: space-around;
        align-items: stretch;
    }

    .mob-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        flex: 1;
        color: rgba(255,255,255,0.45);
        text-decoration: none;
        padding: 6px 4px;
        border-radius: 12px;
        margin: 0 4px;
        transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
    }
    .mob-nav-item i {
        font-size: 22px;
        transition: all 0.25s ease;
        line-height: 1;
    }
    .mob-nav-item span {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.2px;
        transition: all 0.25s ease;
    }

    /* Aktif durum */
    .mob-nav-item.active {
        color: var(--primary-blue);
    }
    .mob-nav-item.active i {
        filter: drop-shadow(0 0 8px rgba(59,130,246,0.8));
        transform: translateY(-2px);
    }
    .mob-nav-item.active::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 28px;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6, #60a5fa);
        border-radius: 2px;
        box-shadow: 0 0 8px rgba(59,130,246,0.7);
    }
    .mob-nav-item:hover:not(.active), .mob-nav-item:active:not(.active) {
        color: rgba(255,255,255,0.75);
        background: rgba(255,255,255,0.04);
    }

    /* Sayfanın altına bottom nav kadar boşluk bırak */
    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }

    /* ===== GENEL MOBİL AYARLAR ===== */
    .hero-grid { grid-template-columns: 1fr; height: auto; }
    .main-slider { height: 260px; }
    .side-banner { height: 150px; }
    .side-banners { display: none; }
    .info-bar { flex-direction: column; gap: 20px; padding: 20px 15px; }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .product-image-container { height: 140px; }

    .section-header { margin: 30px 0 18px; }
    .section-header h2 { font-size: 18px; }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    .footer-col h4 { justify-content: center; }
    .footer-col ul li a::before { display: none; }
    .footer { padding: 40px 0 20px; }
}

@media (max-width: 400px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .mob-balance-btn span {
        display: none;
    }
    .mob-balance-btn {
        padding: 7px 10px;
    }
}

/* ===== DESTEK BOTTOM SHEET ===== */
.mob-support-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 200000;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: fadeIn 0.25s ease;
}
.mob-support-overlay.active { display: block; }

.mob-support-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200001;
    background: linear-gradient(180deg, #1e2d42 0%, #182234 100%);
    border-radius: 24px 24px 0 0;
    padding: 0 0 calc(85px + env(safe-area-inset-bottom)) 0;
    box-shadow: 0 -10px 50px rgba(0,0,0,0.7);
    transform: translateY(110%);
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.mob-support-sheet.active {
    transform: translateY(0);
}

.mob-support-handle {
    width: 36px;
    height: 4px;
    background: rgba(255,255,255,0.18);
    border-radius: 4px;
    margin: 12px auto 0;
}

.mob-support-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mob-support-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59,130,246,0.25), rgba(37,99,235,0.15));
    border: 1px solid rgba(59,130,246,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #60a5fa;
    flex-shrink: 0;
}
.mob-support-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.mob-support-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}
.mob-support-close {
    margin-left: auto;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}
.mob-support-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.mob-support-options {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mob-support-opt {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    transition: all 0.22s ease;
}
.mob-support-opt:hover, .mob-support-opt:active {
    background: rgba(59,130,246,0.1);
    border-color: rgba(59,130,246,0.3);
    transform: translateX(3px);
}

.mob-sopt-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    position: relative;
}
.mob-sopt-icon.live   { background: rgba(16,185,129,0.15); color: #10b981; border: 1px solid rgba(16,185,129,0.25); }
.mob-sopt-icon.ticket { background: rgba(59,130,246,0.15); color: #60a5fa; border: 1px solid rgba(59,130,246,0.25); }
.mob-sopt-icon.faq    { background: rgba(245,158,11,0.15); color: #fbbf24; border: 1px solid rgba(245,158,11,0.25); }
.mob-sopt-icon.contact{ background: rgba(139,92,246,0.15); color: #a78bfa; border: 1px solid rgba(139,92,246,0.25); }

.mob-sopt-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 9px;
    height: 9px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid #1e2d42;
    animation: pulseGlow 2s infinite;
}

.mob-sopt-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mob-sopt-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: block;
}
.mob-sopt-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    display: block;
    line-height: 1.3;
}
.mob-sopt-arrow {
    font-size: 20px;
    color: rgba(255,255,255,0.25);
    flex-shrink: 0;
}

.mob-support-footer {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    padding: 10px 20px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.mob-support-footer i { color: #10b981; }

/* Mobilde chat bubble gizle (bottom sheet üzerinden açılır) */
@media (max-width: 768px) {
    #live-chat-widget #chat-bubble,
    #live-chat-widget #chat-tooltip { display: none !important; }
    #chat-window {
        position: fixed !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 85vh !important;
        border-radius: 20px 20px 0 0 !important;
        z-index: 300000 !important;
    }
}
/ *   = = = = = = = = = = = = = = = = =   N O T I F I C A T I O N S   = = = = = = = = = = = = = = = = =   * /  
 . n o t i f - w r a p p e r   {   p o s i t i o n :   r e l a t i v e ;   d i s p l a y :   i n l i n e - b l o c k ;   m a r g i n - r i g h t :   1 5 p x ;   }  
 . n o t i f - b t n   {   c o l o r :   # f f f ;   f o n t - s i z e :   2 2 p x ;   p o s i t i o n :   r e l a t i v e ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   w i d t h :   4 2 p x ;   h e i g h t :   4 2 p x ;   b o r d e r - r a d i u s :   5 0 % ;   b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 0 5 ) ;   t r a n s i t i o n :   0 . 3 s ;   }  
 . n o t i f - b t n : h o v e r   {   b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 ) ;   }  
 . n o t i f - b a d g e   {   p o s i t i o n :   a b s o l u t e ;   t o p :   0 ;   r i g h t :   - 5 p x ;   b a c k g r o u n d :   v a r ( - - p r i m a r y - b l u e ) ;   c o l o r :   # f f f ;   f o n t - s i z e :   1 1 p x ;   f o n t - w e i g h t :   8 0 0 ;   p a d d i n g :   2 p x   6 p x ;   b o r d e r - r a d i u s :   1 0 p x ;   b o r d e r :   2 p x   s o l i d   v a r ( - - b g - p a n e l ) ;   l i n e - h e i g h t :   1 ;   }  
 . n o t i f - d r o p d o w n   {   p o s i t i o n :   a b s o l u t e ;   t o p :   c a l c ( 1 0 0 %   +   1 5 p x ) ;   r i g h t :   - 6 0 p x ;   w i d t h :   3 2 0 p x ;   b a c k g r o u n d :   v a r ( - - b g - c a r d ) ;   b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;   b o r d e r - r a d i u s :   1 6 p x ;   b o x - s h a d o w :   0   2 0 p x   4 0 p x   r g b a ( 0 , 0 , 0 , 0 . 6 ) ;   z - i n d e x :   9 9 9 9 ;   d i s p l a y :   n o n e ;   o p a c i t y :   0 ;   t r a n s f o r m :   t r a n s l a t e Y ( 1 0 p x ) ;   t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;   }  
 . n o t i f - d r o p d o w n . s h o w   {   d i s p l a y :   b l o c k ;   o p a c i t y :   1 ;   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   }  
 . n o t i f - h e a d e r   {   p a d d i n g :   1 5 p x   2 0 p x ;   b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;   d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;   a l i g n - i t e m s :   c e n t e r ;   }  
 . n o t i f - h e a d e r   s p a n   {   f o n t - w e i g h t :   7 0 0 ;   c o l o r :   # f f f ;   }  
 . n o t i f - h e a d e r   a   {   f o n t - s i z e :   1 2 p x ;   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   c u r s o r :   p o i n t e r ;   }  
 . n o t i f - h e a d e r   a : h o v e r   {   c o l o r :   v a r ( - - p r i m a r y - b l u e ) ;   }  
 . n o t i f - b o d y   {   m a x - h e i g h t :   3 5 0 p x ;   o v e r f l o w - y :   a u t o ;   }  
 . n o t i f - i t e m   {   d i s p l a y :   f l e x ;   g a p :   1 2 p x ;   p a d d i n g :   1 5 p x   2 0 p x ;   b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 0 2 ) ;   t e x t - d e c o r a t i o n :   n o n e ;   t r a n s i t i o n :   b a c k g r o u n d   0 . 2 s ;   }  
 . n o t i f - i t e m : h o v e r   {   b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 0 2 ) ;   }  
 . n o t i f - i t e m . u n r e a d   {   b a c k g r o u n d :   r g b a ( 5 9 , 1 3 0 , 2 4 6 , 0 . 0 5 ) ;   }  
 . n o t i f - i c o n   {   w i d t h :   4 0 p x ;   h e i g h t :   4 0 p x ;   b o r d e r - r a d i u s :   1 0 p x ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   f o n t - s i z e :   2 0 p x ;   f l e x - s h r i n k :   0 ;   }  
 . n o t i f - i c o n . b g - p r i m a r y   {   b a c k g r o u n d :   r g b a ( 5 9 , 1 3 0 , 2 4 6 , 0 . 1 5 ) ;   c o l o r :   # 3 b 8 2 f 6 ;   }  
 . n o t i f - i c o n . b g - s u c c e s s   {   b a c k g r o u n d :   r g b a ( 1 6 , 1 8 5 , 1 2 9 , 0 . 1 5 ) ;   c o l o r :   # 1 0 b 9 8 1 ;   }  
 . n o t i f - i c o n . b g - w a r n i n g   {   b a c k g r o u n d :   r g b a ( 2 4 5 , 1 5 8 , 1 1 , 0 . 1 5 ) ;   c o l o r :   # f 5 9 e 0 b ;   }  
 . n o t i f - i c o n . b g - d a n g e r   {   b a c k g r o u n d :   r g b a ( 2 3 9 , 6 8 , 6 8 , 0 . 1 5 ) ;   c o l o r :   # e f 4 4 4 4 ;   }  
 . n o t i f - c o n t e n t   {   f l e x :   1 ;   }  
 . n o t i f - t i t l e   {   f o n t - s i z e :   1 3 p x ;   f o n t - w e i g h t :   7 0 0 ;   c o l o r :   # f f f ;   m a r g i n - b o t t o m :   4 p x ;   d i s p l a y :   - w e b k i t - b o x ;   - w e b k i t - l i n e - c l a m p :   1 ;   - w e b k i t - b o x - o r i e n t :   v e r t i c a l ;   o v e r f l o w :   h i d d e n ;   }  
 . n o t i f - d e s c   {   f o n t - s i z e :   1 2 p x ;   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   l i n e - h e i g h t :   1 . 4 ;   d i s p l a y :   - w e b k i t - b o x ;   - w e b k i t - l i n e - c l a m p :   2 ;   - w e b k i t - b o x - o r i e n t :   v e r t i c a l ;   o v e r f l o w :   h i d d e n ;   }  
 . n o t i f - f o o t e r   {   p a d d i n g :   1 2 p x ;   t e x t - a l i g n :   c e n t e r ;   b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;   b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 0 1 ) ;   b o r d e r - r a d i u s :   0   0   1 6 p x   1 6 p x ;   }  
 . n o t i f - f o o t e r   a   {   c o l o r :   v a r ( - - p r i m a r y - b l u e ) ;   f o n t - s i z e :   1 3 p x ;   f o n t - w e i g h t :   7 0 0 ;   t e x t - d e c o r a t i o n :   n o n e ;   }  
 . n o t i f - e m p t y   {   p a d d i n g :   3 0 p x   2 0 p x ;   t e x t - a l i g n :   c e n t e r ;   c o l o r :   v a r ( - - t e x t - m u t e d ) ;   f o n t - s i z e :   1 3 p x ;   f o n t - s t y l e :   i t a l i c ;   }  
 