/* ============================================
   Ehveniser - E-Pin Satış ve Oyuncu Pazaryeri
   Ana Stil Dosyası
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800&family=Rajdhani:wght@400;500;600;700&display=swap');

/* CSS Değişkenleri */
:root {
    --primary-bg: #1a2332;
    --secondary-bg: #243044;
    --header-bg: #1e2a3a;
    --accent-orange: #ff6b35;
    --accent-orange-hover: #ff8555;
    --accent-green: #00c853;
    --text-white: #ffffff;
    --text-gray: #a0aec0;
    --text-light: #cbd5e0;
    --border-color: #2d3a4f;
    --search-bg: #2a3a4d;
    --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ============================================
   TOP BAR - Üst Bilgi Barı
   ============================================ */
.top-bar {
    background: linear-gradient(90deg, #151c28 0%, #1a2332 100%);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    position: relative;
    z-index: 11000;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons a {
    color: var(--text-gray);
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-orange);
    transform: translateY(-2px);
}

/* Kayan Duyuru */
.announcement-wrapper {
    flex: 1;
    margin: 0 30px;
    overflow: hidden;
    position: relative;
}

.announcement-wrapper::before,
.announcement-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
}

.announcement-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #151c28 0%, transparent 100%);
}

.announcement-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #151c28 100%);
}

.announcement {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideAnnouncement 20s linear infinite;
    white-space: nowrap;
}

.announcement i {
    color: #ffc107;
}

.announcement span {
    color: var(--text-light);
}

@keyframes slideAnnouncement {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Üst Menü Linkleri */
.top-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-links a {
    color: var(--text-gray);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
}

.top-links a:hover {
    color: var(--text-white);
}

.top-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.top-links a:hover::after {
    width: 100%;
}

/* ============================================
   MAIN HEADER - Ana Header
   ============================================ */
.main-header {
    background: var(--header-bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 12000;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
}

.logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--accent-orange);
}

/* Arama Alanı */
.search-wrapper {
    flex: 1;
    max-width: 650px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    background: var(--search-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 14px;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: var(--text-gray);
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.search-box .search-icon {
    position: absolute;
    left: 18px;
    color: var(--accent-orange);
    font-size: 18px;
}

.search-box .search-btn {
    position: absolute;
    right: 5px;
    padding: 10px 20px;
    background: var(--gradient-orange);
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box .search-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Header Butonları */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-login i {
    font-size: 16px;
}

.btn-cart {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-orange);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-cart i {
    font-size: 18px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: #e53935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid var(--header-bg);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.btn-user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--search-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-user-menu:hover {
    border-color: var(--accent-orange);
}

.btn-user-menu img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.btn-user-menu i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.user-dropdown:hover .btn-user-menu i {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 260px;
    background: linear-gradient(145deg, #1e2a3a 0%, #151d2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 8px;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 13000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.user-dropdown:hover .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu .dropdown-section {
    padding: 4px 0;
}

.user-dropdown-menu .section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-orange);
}

.user-dropdown-menu .section-label i {
    font-size: 12px;
}

.user-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 10px;
    margin: 2px 0;
}

.user-dropdown-menu a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--text-white);
}

.user-dropdown-menu a i {
    width: 18px;
    text-align: center;
    font-size: 14px;
}

.user-dropdown-menu a.has-badge {
    position: relative;
}

.user-dropdown-menu .menu-badge {
    background: var(--accent-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: auto;
}

.user-dropdown-menu .seller-section a {
    padding-left: 36px;
}

.user-dropdown-menu .seller-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px !important;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 140, 66, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    margin: 4px 0;
}

.user-dropdown-menu .seller-cta i {
    width: 36px;
    height: 36px;
    background: var(--gradient-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.user-dropdown-menu .seller-cta span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-dropdown-menu .seller-cta strong {
    color: var(--text-white);
    font-size: 14px;
}

.user-dropdown-menu .seller-cta small {
    color: var(--text-gray);
    font-size: 11px;
}

.user-dropdown-menu .seller-cta:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25) 0%, rgba(255, 140, 66, 0.1) 100%);
    border-color: rgba(255, 107, 53, 0.4);
}

.user-dropdown-menu .admin-link {
    color: var(--accent-orange);
}

.user-dropdown-menu .admin-link:hover {
    background: rgba(255, 107, 53, 0.15);
}

.user-dropdown-menu .logout-link {
    color: #e53935;
}

.user-dropdown-menu .logout-link:hover {
    background: rgba(229, 57, 53, 0.1);
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 6px 8px;
}

/* ============================================
   NAVIGATION - Ana Menü
   ============================================ */
.main-nav {
    background: var(--secondary-bg);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 11000;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-item {
    position: relative;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 22px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 18px;
}

.nav-link .material-icons {
    font-size: 20px;
}

.nav-link:hover {
    color: var(--accent-orange);
    background: rgba(255, 107, 53, 0.1);
}

.nav-item.active .nav-link {
    color: var(--accent-orange);
    background: rgba(255, 107, 53, 0.15);
}

/* Dropdown Menü */
.dropdown-toggle {
    position: relative;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-item:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: none;
}

.nav-item:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    padding-left: 25px;
}

.dropdown-menu a i {
    font-size: 16px;
    width: 20px;
}

/* ============================================
   RESPONSIVE TASARIM
   ============================================ */
@media (max-width: 1200px) {
    .search-wrapper {
        max-width: 450px;
    }
    
    .nav-link {
        padding: 16px 16px;
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .top-bar-content {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .announcement-wrapper {
        order: 3;
        width: 100%;
        margin: 10px 0 0 0;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .search-wrapper {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .top-links {
        display: none;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .nav-link {
        padding: 12px 14px;
        font-size: 11px;
    }
    
    .header-buttons {
        gap: 8px;
    }
    
    .btn-login, .btn-cart {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Material Icons için */
.material-icons {
    font-size: 20px;
    vertical-align: middle;
}

/* ============================================
   HERO SECTION - Ana Banner
   ============================================ */
/* ============================================
   HERO BANNER SECTION - Ana Banner Alanı
   ============================================ */
.hero-banner-section {
    padding: 25px 0;
    background: var(--primary-bg);
}

.hero-banner-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
}

/* Sol Taraf - Ana Slider Wrapper */
.main-slider-wrapper {
    display: flex;
    flex-direction: column;
}

.main-slider {
    position: relative;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    height: 380px; /* Sabit yükseklik */
}

.main-slider .carousel,
.main-slider .carousel-inner,
.main-slider .carousel-item {
    height: 100%;
}

.main-slider .carousel-item a {
    display: block;
    height: 100%;
}

.main-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Carousel Kontrolleri */
.main-slider .carousel-control-prev,
.main-slider .carousel-control-next {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.main-slider:hover .carousel-control-prev,
.main-slider:hover .carousel-control-next {
    opacity: 1;
}

.main-slider .carousel-control-prev {
    left: 15px;
}

.main-slider .carousel-control-next {
    right: 15px;
}

.main-slider .carousel-control-prev:hover,
.main-slider .carousel-control-next:hover {
    background: var(--accent-orange);
}

.main-slider .carousel-control-prev i,
.main-slider .carousel-control-next i {
    font-size: 18px;
    color: white;
}

/* Slider Alt Bilgi Kutusu */
.slider-info-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--secondary-bg);
    border-radius: 0 0 16px 16px;
    border: 1px solid var(--border-color);
    border-top: none;
    margin-top: -8px;
    height: 90px; /* Sabit yükseklik */
    box-sizing: border-box;
}

.slider-info-content h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text-white);
}

.slider-info-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.btn-slider-action {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--accent-orange);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-slider-action:hover {
    background: var(--accent-orange-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Sağ Taraf - Küçük Banner Wrapper */
.side-banner-wrapper {
    display: flex;
    flex-direction: column;
}

.side-banner {
    position: relative;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    height: 380px; /* Sabit yükseklik - slider ile aynı */
}

.side-banner a {
    display: block;
    height: 100%;
}

.side-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.side-banner:hover img {
    transform: scale(1.05);
}

/* Banner Alt Bilgi Kutusu */
.banner-info-box {
    padding: 18px 20px;
    background: var(--secondary-bg);
    border-radius: 0 0 16px 16px;
    border: 1px solid var(--border-color);
    border-top: none;
    margin-top: -8px;
    text-align: center;
    height: 90px; /* Sabit yükseklik - slider info ile aynı */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-tagline {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0 0 10px 0;
}

.banner-buttons {
    display: flex;
    gap: 10px;
}

.btn-banner-outline,
.btn-banner-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

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

.btn-banner-outline:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-banner-primary {
    background: #e53935;
    border: 2px solid #e53935;
    color: white;
}

.btn-banner-primary:hover {
    background: #c62828;
    border-color: #c62828;
    color: white;
    transform: translateY(-2px);
}

/* Hero Banner Responsive */
@media (max-width: 1200px) {
    .hero-banner-layout {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 992px) {
    .hero-banner-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-slider {
        height: 300px;
    }
    
    .side-banner {
        height: 300px;
    }
    
    .slider-info-box,
    .banner-info-box {
        height: 80px;
        border-radius: 12px;
        margin-top: 10px;
        border: 1px solid var(--border-color);
    }
}

@media (max-width: 576px) {
    .hero-banner-section {
        padding: 15px 0;
    }
    
    .main-slider {
        height: 220px;
        border-radius: 12px 12px 0 0;
    }
    
    .side-banner {
        height: 220px;
        border-radius: 12px 12px 0 0;
    }
    
    .slider-info-box {
        height: auto;
        min-height: 100px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px;
    }
    
    .banner-info-box {
        height: auto;
        min-height: 100px;
        padding: 15px;
    }
    
    .btn-slider-action {
        width: 100%;
        justify-content: center;
    }
    
    .banner-buttons {
        flex-direction: column;
    }
}

/* ============================================
   CATEGORIES SECTION - Kategoriler
   ============================================ */
.categories-section {
    padding: 60px 0;
    background: var(--primary-bg);
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: var(--accent-orange);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #1a8cff 0%, #0066cc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.category-icon.pubg { background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%); }
.category-icon.valorant { background: linear-gradient(135deg, #ff4655 0%, #bd3944 100%); }
.category-icon.metin2 { background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%); }
.category-icon.lol { background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%); }
.category-icon.knight { background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%); }

.category-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-white);
}

.category-count {
    font-size: 13px;
    color: var(--text-gray);
}

/* ============================================
   LISTINGS SECTION - İlanlar
   ============================================ */
.latest-listings {
    padding: 60px 0;
    background: var(--header-bg);
}

.listings-tabs {
    display: inline-flex;
    background: var(--secondary-bg);
    border-radius: 999px;
    padding: 4px;
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
    gap: 4px;
}

.listings-tab {
    border: none;
    padding: 8px 16px;
    border-radius: 999px;
    background: transparent;
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.2s ease;
}

.listings-tab.active {
    background: var(--gradient-orange);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.listings-tab-content {
    display: none !important;
}

.listings-tab-content.active {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

@media (max-width: 1600px) {
    .listings-tab-content.active {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1400px) {
    .listings-tab-content.active {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .listings-tab-content.active {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .listings-tab-content.active {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .listings-tab-content.active {
        grid-template-columns: 1fr;
    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 14px;
}

.view-all:hover {
    color: var(--accent-orange-hover);
}

/* Grid tanımları .listings-tab-content.active içinde */

/* Listing Card - Yeni Tasarım */
.listing-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Exo 2', sans-serif;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-orange);
}

/* Üst Etiket - Tam Genişlik */
.listing-header {
    width: 100%;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
    border: none;
}

.listing-header.vitrin {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
}

.listing-header.popular {
    background: linear-gradient(135deg, #00c853 0%, #00a843 100%);
    color: white;
}

.listing-header.new {
    background: linear-gradient(135deg, #00c853 0%, #00a843 100%);
    color: white;
}

/* Badge - Eski stil için gizli */
.listing-badge {
    display: none;
}

/* Görsel Wrapper */
.listing-image-wrapper {
    position: relative;
    width: 100%;
}

.listing-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--search-bg);
    display: block;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Mağaza Bilgisi - Görsel Üzerinde */
.listing-store-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.listing-store-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.listing-store-info img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    object-fit: cover;
}

.listing-store-info span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    font-family: 'Exo 2', sans-serif;
}

.listing-platform-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

.listing-platform-icon.twitter { background: #000; }
.listing-platform-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.listing-platform-icon.youtube { background: #ff0000; }
.listing-platform-icon.tiktok { background: #000; }
.listing-platform-icon.spotify { background: #1db954; }
.listing-platform-icon.steam { background: #1b2838; }
.listing-platform-icon.pubg { background: #f2a900; }
.listing-platform-icon.valorant { background: #ff4655; }
.listing-platform-icon.default { background: var(--accent-orange); }

/* İçerik Alanı */
.listing-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Kategori Gizle */
.listing-category {
    display: none;
}

/* Ürün Başlığı */
.listing-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-white);
    line-height: 1.4;
    font-family: 'Rajdhani', sans-serif;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-content h4 a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.listing-content h4 a:hover {
    color: var(--accent-orange);
}

/* Eski Satıcı Alanı Gizle */
.listing-seller {
    display: none;
}

/* Footer - Fiyat ve Kazanç */
.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: none;
    margin-top: auto;
}

.listing-price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
}

.listing-price del {
    font-size: 13px;
    color: var(--text-gray);
    margin-right: 6px;
    font-weight: 500;
}

/* Kazanç Badge */
.listing-earn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(0, 200, 83, 0.15);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-green);
    font-family: 'Exo 2', sans-serif;
}

.listing-earn i {
    font-size: 10px;
}

.blog-section {
    padding: 60px 0;
    background: var(--primary-bg);
}

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

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.blog-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 190px;
    background: var(--search-bg);
    overflow: hidden;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.05);
}

.blog-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 30px;
}

.blog-content {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--text-gray);
}

.blog-meta i {
    margin-right: 4px;
}

.blog-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin: 4px 0;
}

.blog-excerpt {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.blog-read-more {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more i {
    font-size: 11px;
}

/* Sepet Butonu Gizle */
.btn-add-cart {
    display: none;
}

/* ============================================
   FEATURES SECTION - Özellikler
   ============================================ */
.features-section {
    padding: 60px 0;
    background: var(--primary-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 140, 66, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent-orange);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-white);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   FOOTER - Alt Bilgi
   ============================================ */
.main-footer {
    background: linear-gradient(180deg, #151c28 0%, #0f141c 100%);
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand .footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand .logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--secondary-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.footer-contact li i {
    color: var(--accent-orange);
    font-size: 16px;
    width: 20px;
}

.footer-contact a {
    color: var(--text-gray);
}

.footer-contact a:hover {
    color: var(--accent-orange);
}

.payment-methods {
    margin-top: 20px;
}

.payment-methods span {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 28px;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--text-white);
}

.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-gray);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-gray);
}

.footer-bottom-links a:hover {
    color: var(--accent-orange);
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
