/* ==========================================
   AVCI PAZARI - Ana CSS Dosyası
   Avcılık, Silah ve Outdoor E-Ticaret Platformu
   ========================================== */

/* ===== GENEL TANIMLAR ===== */
:root {
    --primary-color: #1e293b;
    --secondary-color: #334155;
    --accent-color: #f59e0b;
    --accent-hover: #d97706;
    --dark-color: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== TOP BAR - Modern ===== */
.top-bar-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-contact {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.top-contact:hover {
    color: #f59e0b;
}

.top-contact i {
    font-size: 0.9rem;
    color: #f59e0b;
}

.social-icons-top {
    display: flex;
    gap: 8px;
}

.social-top {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    transition: all 0.3s;
    background: rgba(255,255,255,0.1);
}

.social-top:hover {
    transform: translateY(-2px);
}

.social-top.facebook:hover { background: #1877f2; color: #fff; }
.social-top.instagram:hover { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); color: #fff; }
.social-top.twitter:hover { background: #1da1f2; color: #fff; }
.social-top.youtube:hover { background: #ff0000; color: #fff; }

/* Eski top-bar (geriye uyumluluk) */
.top-bar {
    background: var(--dark-color);
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .social-link {
    color: rgba(255,255,255,0.7);
    margin-left: 12px;
    transition: color 0.3s;
}

.top-bar .social-link:hover {
    color: var(--accent-color);
}

/* ===== NAVIGATION - Modern ===== */
.main-navbar-modern {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1030;
    border-bottom: 3px solid #f59e0b;
}

/* Dropdown menülerin z-index düzeltmesi */
.main-navbar-modern .dropdown-menu,
.main-navbar .dropdown-menu,
.navbar .dropdown-menu {
    z-index: 1050 !important;
}

.dropdown-menu {
    z-index: 1050 !important;
}

/* Modern Brand */
.navbar-brand-modern {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    transition: all 0.3s;
}

.navbar-brand-modern:hover .brand-icon {
    transform: rotate(15deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 3px;
    color: #fff;
    line-height: 1;
}

.brand-slogan {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Modern Nav Links */
.main-navbar-modern .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 10px 18px !important;
    transition: all 0.3s;
    border-radius: 8px;
    margin: 0 2px;
}

.main-navbar-modern .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
}

/* Modern Search */
.search-form-modern {
    position: relative;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    transition: all 0.3s;
}

.search-wrapper:focus-within {
    background: rgba(255,255,255,0.15);
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.search-input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 16px;
    width: 180px;
    font-size: 0.9rem;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.search-btn {
    background: #f59e0b;
    border: none;
    color: #fff;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #d97706;
}

/* İlan Ver Button - Animated */
.ilan-ver-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.ilan-ver-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.ilan-ver-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
    color: #fff;
}

.ilan-ver-btn:hover::before {
    left: 100%;
}

.ilan-ver-btn i {
    font-size: 0.85rem;
}

/* User Menu Modern */
.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px !important;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #fff;
}

.user-name {
    color: #fff;
    font-size: 0.9rem;
}

/* Auth Links */
.auth-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
}

.register-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    color: #fff;
}

/* Eski navbar (geriye uyumluluk) */
.main-navbar {
    background: var(--primary-color);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1030;
}

.navbar-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #fff !important;
}

.navbar-brand .brand-text {
    color: #fff;
}

.main-navbar .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s;
}

.main-navbar .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Responsive Header */
@media (max-width: 991px) {
    .top-bar-modern {
        display: none;
    }
    
    .brand-slogan {
        display: none;
    }
    
    .search-input {
        width: 140px;
    }
    
    .ilan-ver-btn span {
        display: none;
    }
    
    .ilan-ver-btn {
        padding: 10px 14px;
        border-radius: 50%;
    }
}

@media (max-width: 575px) {
    .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .search-form-modern {
        display: none;
    }
}

/* Mega Menu */
.mega-menu {
    width: 100%;
    min-width: 700px;
    padding: 24px;
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    background: #fff;
}

.mega-menu .dropdown-header {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    margin-bottom: 10px;
}

.mega-menu .dropdown-item {
    padding: 8px 12px;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.mega-menu .dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 16px;
}

/* Alt Kategori Stili */
.mega-menu .sub-category {
    padding-left: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mega-menu .sub-category:hover {
    color: var(--accent-color);
}

/* Search Form */
.search-form .form-control {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    border: none;
    padding: 10px 16px;
}

.search-form .btn {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 10px 20px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.hero-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-search {
    max-width: 700px;
    margin: 0 auto;
}

.hero-search .form-control {
    height: 56px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    border: none;
    padding-left: 24px;
}

.hero-search .btn {
    height: 56px;
    padding: 0 32px;
    font-size: 1.1rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* Hero Stat Badges - Tıklanabilir */
.hero-stat-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.95);
    color: #1f2937;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.hero-stat-badge:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: #1f2937;
    border-color: #f59e0b;
}

.hero-stat-badge i {
    color: #f59e0b;
    margin-right: 6px;
}

/* ===== KATEGORI KARTLARI ===== */
.category-section {
    padding: 60px 0;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.category-card {
    display: block;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: block;
}

.category-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== İLAN KARTLARI ===== */
.ilan-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

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

.ilan-card.sold {
    opacity: 0.7;
}

.ilan-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.ilan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

/* Rozetler */
.badge-status {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: var(--success-color);
    color: #fff;
}

.badge-used {
    background: var(--secondary-color);
    color: #fff;
}

.badge-featured {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-doping {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: var(--accent-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
}

/* Satıldı Overlay */
.sold-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sold-overlay span {
    background: var(--danger-color);
    color: #fff;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: 700;
    transform: rotate(-15deg);
    border-radius: var(--radius-sm);
}

.ilan-info {
    padding: 16px;
}

.ilan-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ilan-info .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.ilan-info .location {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.ilan-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.ilan-specs span {
    background: var(--light-bg);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== GÜNÜN İLANLARI ===== */
.featured-section {
    background: var(--primary-color);
    padding: 60px 0;
}

.featured-section .section-title {
    color: #fff;
}

.featured-section .section-title::after {
    background: var(--accent-color);
}

/* ===== HABERLER ===== */
.news-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.news-card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    flex-shrink: 0;
}

.news-card-img-wrapper img,
.news-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card .news-info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card .il-badge {
    background: var(--accent-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.news-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.news-card-summary {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== SİLAH USTASI KARTLARI ===== */
.usta-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.usta-card:hover {
    box-shadow: var(--shadow-lg);
}

.usta-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid var(--accent-color);
}

.usta-card h5 {
    font-weight: 600;
    margin-bottom: 4px;
}

.usta-card .location {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.usta-card .rating {
    color: var(--accent-color);
    margin-bottom: 12px;
}

/* ===== FORM STILLERI ===== */
.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30,41,59,0.1);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

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

.btn-warning {
    background: var(--accent-color);
    border: none;
    color: #fff;
    font-weight: 600;
}

.btn-warning:hover {
    background: var(--accent-hover);
    color: #fff;
}

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

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

/* ===== PAGINATION ===== */
.pagination {
    gap: 8px;
}

.page-link {
    border: none;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-weight: 500;
}

.page-link:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: #fff;
}

/* ===== FOOTER (Profesyonel - Netsilah Tarzı) ===== */
.footer-pro {
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

/* Üst Footer - Link Alanı */
.footer-main {
    padding: 50px 0 30px;
    background: #fafafa;
    border-bottom: 1px solid #e5e7eb;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-menu a:hover {
    color: #2563eb;
}

.footer-menu-brands {
    column-count: 2;
    column-gap: 20px;
}

/* Alt Footer - İletişim Barı */
.footer-contact {
    padding: 25px 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.contact-info-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}

.contact-title {
    font-weight: 700;
    color: #1f2937;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.contact-item:hover {
    color: #2563eb;
}

.contact-item i {
    font-size: 1rem;
}

.contact-item.whatsapp {
    color: #25d366;
}

.contact-item.whatsapp:hover {
    color: #128c7e;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.youtube {
    background: #ff0000;
}

/* Copyright */
.footer-copyright {
    padding: 18px 0;
    background: #f9fafb;
    font-size: 0.85rem;
    color: #6b7280;
}

.footer-copyright a {
    color: #2563eb;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info-bar {
        gap: 15px;
    }
    
    .contact-title {
        width: 100%;
        margin-bottom: 5px;
    }
}

@media (max-width: 575px) {
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-menu-brands {
        column-count: 1;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-copyright .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Eski footer stilleri (geriye uyumluluk) */
.footer {
    background: var(--dark-color);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.footer h5, .footer h6 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s;
}

.footer .social-links a:hover {
    background: var(--accent-color);
    color: #fff;
}

.footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 30px 0;
}

/* ===== UTILS ===== */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

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

.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.card-header {
    background: #fff;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
}

/* ===== SIDEBAR FİLTRE ALT KATEGORİ ===== */
.filter-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-category-item {
    border-bottom: 1px solid var(--border-color);
}

.filter-category-item:last-child {
    border-bottom: none;
}

.filter-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.2s;
}

.filter-category-header:hover {
    color: var(--accent-color);
}

.filter-category-header i.toggle-icon {
    transition: transform 0.3s;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.filter-category-header.active i.toggle-icon {
    transform: rotate(180deg);
}

.filter-subcategory-list {
    list-style: none;
    padding: 0 0 12px 16px;
    margin: 0;
    display: none;
}

.filter-subcategory-list.show {
    display: block;
}

.filter-subcategory-item {
    padding: 8px 0;
}

.filter-subcategory-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.filter-subcategory-item a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.filter-subcategory-item a::before {
    content: '└';
    margin-right: 8px;
    color: var(--border-color);
}

.filter-subcategory-item a.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .mega-menu {
        min-width: auto;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .search-form {
        margin-top: 16px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
    
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .ilan-image {
        height: 160px;
    }
}

/* ===== ADMIN PANEL ===== */
.admin-sidebar {
    background: var(--dark-color);
    min-height: 100vh;
    padding: 20px 0;
}

.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.7);
    padding: 12px 24px;
    transition: all 0.3s;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(255,255,255,0.1);
    color: var(--accent-color);
}

.admin-sidebar .nav-link i {
    width: 24px;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.stat-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 16px 0 4px;
}

.stat-card p {
    color: var(--text-muted);
    margin: 0;
}

/* ===== QUICK ADD BUTTON ===== */
.quick-add-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

.quick-add-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
    color: #fff;
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== FAB BUTTON ===== */
.fab-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 1050;
    transition: all 0.3s;
    text-decoration: none;
}

.fab-button:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.5);
}

.fab-button:active {
    transform: scale(0.95);
}

/* ===== RUHSATLI ROZETI ===== */
@keyframes ruhsatli-blink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 2px 6px rgba(220, 38, 38, 0.5);
    }
    50% {
        opacity: 0.75;
        box-shadow: 0 2px 10px rgba(220, 38, 38, 0.8);
    }
}

/* İlan kartları için küçük rozet */
.ruhsatli-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: #dc2626;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 4px;
    animation: ruhsatli-blink 1.2s ease-in-out infinite;
    z-index: 5;
}

.ruhsatli-badge i {
    font-size: 0.6rem;
}

/* Detay sayfası için rozet */
.ruhsatli-badge-lg {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #dc2626;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 4px;
    animation: ruhsatli-blink 1.2s ease-in-out infinite;
    z-index: 5;
}

.ruhsatli-badge-lg i {
    font-size: 0.75rem;
    margin-right: 4px;
}

/* ===== PROFESYONEL İLAN KARTI (Netsilah Tarzı) ===== */
/* ===== İLAN LİSTE KARTI - PROFESYONEL ===== */
.ilan-card-pro {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.25s ease;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.ilan-card-pro:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}

.ilan-card-pro.featured {
    /* Sadece hafif gölge - kenarlık yok */
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.15);
}

.ilan-card-pro.sold {
    opacity: 0.6;
}

/* Görsel - Liste */
.ilan-card-pro .ilan-image-container {
    position: relative;
    height: 100%;
    min-height: 140px;
    background: #f3f4f6;
    overflow: hidden;
}

.ilan-card-pro .ilan-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.ilan-card-pro:hover .ilan-image-container img {
    transform: scale(1.05);
}

/* Featured Badge */
.ilan-card-pro .featured-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 28px;
    height: 28px;
    background: #f59e0b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 5;
}

.ilan-card-pro .featured-badge.alt {
    background: #8b5cf6;
}

/* Ruhsatlı */
.ilan-card-pro .ruhsatli-mini {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: #dc2626;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    z-index: 5;
}

/* Mağaza Badge */
.ilan-card-pro .magaza-badge {
    position: absolute;
    bottom: 28px;
    left: 8px;
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    z-index: 5;
}

.ilan-card-pro .magaza-badge i {
    margin-right: 2px;
}

/* Fotoğraf Sayısı */
.ilan-card-pro .photo-count {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 5;
}

/* Satıldı */
.ilan-card-pro .sold-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: #dc2626;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 4px;
    z-index: 10;
}

/* İçerik */
.ilan-card-pro .ilan-content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Başlık ve Fiyat */
.ilan-card-pro .ilan-header {
    margin-bottom: 10px;
}

.ilan-card-pro .ilan-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.ilan-card-pro .ilan-no-badge-mini {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ilan-card-pro .ilan-title {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ilan-card-pro:hover .ilan-title {
    color: #2563eb;
}

.ilan-card-pro .ilan-price {
    font-size: 18px;
    font-weight: 700;
    color: #059669;
}

/* Konum */
.ilan-card-pro .ilan-location {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ilan-card-pro .ilan-location i {
    color: #ef4444;
    font-size: 12px;
}

.ilan-card-pro .ilan-location a {
    color: #2563eb;
    text-decoration: none;
}

/* Özellikler */
.ilan-card-pro .ilan-specs-table {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 12px;
}

.ilan-card-pro .spec-row {
    display: flex;
    gap: 4px;
}

.ilan-card-pro .spec-label {
    color: #9ca3af;
}

.ilan-card-pro .spec-value {
    color: #374151;
    font-weight: 500;
}

.ilan-card-pro .spec-value.text-danger {
    color: #dc3545 !important;
    font-weight: 700;
    font-size: 13px;
    background: #fef2f2;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Footer */
.ilan-card-pro .ilan-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f3f4f6;
}

.ilan-card-pro .ilan-footer .badge {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
}

/* Üye Ol Butonu - Liste */
.ilan-card-pro .ilan-price-hidden {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #f59e0b;
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.ilan-card-pro .ilan-price-hidden:hover {
    background: #d97706;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .ilan-card-pro .ilan-image-container {
        min-height: 120px;
    }
    
    .ilan-card-pro .ilan-content {
        padding: 10px;
    }
    
    .ilan-card-pro .ilan-title {
        font-size: 14px;
        -webkit-line-clamp: 4; /* İlan isimleri tam görünsün */
        line-height: 1.35;
    }
    
    .ilan-card-pro .ilan-price {
        font-size: 16px;
    }
    
    /* İl/ilçe mobilde çok minimal - başlığa alan aç */
    .ilan-card-pro .ilan-location {
        font-size: 9px !important;
        margin-bottom: 4px !important;
        gap: 2px !important;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .ilan-card-pro .ilan-location i {
        font-size: 8px !important;
        flex-shrink: 0;
    }
}

/* ===== İLAN GRID KARTI (Netsilah Tarzı) ===== */
.ilan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

@media (min-width: 992px) {
    .ilan-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .ilan-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== İLAN GRİD KARTI - PROFESYONEL ===== */
.ilan-grid-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.ilan-grid-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #3b82f6;
    color: inherit;
    text-decoration: none;
}

.ilan-grid-card.featured {
    /* Sadece hafif gölge - kenarlık yok */
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.15);
}

.ilan-grid-card.sold {
    opacity: 0.6;
}

/* Grid Görsel */
.grid-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f3f4f6;
}

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

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

/* Fiyat Rozeti */
.price-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.price-tag {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.discount-badge {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Sol Üst Rozetler */
.top-left-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.star-badge {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.star-badge.alt {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Fiyat Düşüş Rozeti - Sağ Alt Köşe */
.discount-badge-corner {
    position: absolute !important;
    bottom: 12px !important;
    right: 12px !important;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: #fff !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.7) !important;
    z-index: 100 !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    animation: discount-glow 1.5s ease-in-out infinite !important;
}

.discount-badge-corner i {
    font-size: 0.75rem !important;
    animation: arrow-bounce 0.8s ease-in-out infinite !important;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

@keyframes discount-glow {
    0%, 100% { box-shadow: 0 4px 12px rgba(239, 68, 68, 0.7); }
    50% { box-shadow: 0 4px 20px rgba(239, 68, 68, 1); }
}

/* Ruhsatlı Rozet - Tam Yazı */
.ruhsatli-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    animation: ruhsatli-blink 1.5s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
    animation: ruhsatli-blink 1.5s ease-in-out infinite;
}

/* Mağaza Rozeti */
.magaza-badge {
    position: absolute;
    bottom: 38px;
    left: 10px;
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.4);
    z-index: 5;
}

.magaza-badge i {
    margin-right: 3px;
    font-size: 0.6rem;
}

/* Fotoğraf Sayısı */
.photo-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Satıldı Overlay */
.sold-overlay-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: #dc2626;
    color: #fff;
    font-weight: 800;
    padding: 8px 24px;
    font-size: 0.9rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Grid Kart Bilgi Alanı */
.grid-card-info {
    padding: 14px;
}

.grid-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.ilan-grid-card:hover .grid-card-title {
    color: #2563eb;
}

.grid-card-location {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.grid-card-location i {
    font-size: 12px;
    color: #ef4444;
}

/* Fiyat Alanı */
.grid-card-price {
    margin: 10px 0;
    padding: 10px 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.price-discount-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.old-price {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
}

.discount-percent {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    animation: pulse-discount 1.5s ease-in-out infinite;
}

@keyframes pulse-discount {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #059669;
}

.current-price.discounted {
    color: #dc2626;
}

/* ===== FİYAT GİZLEME ===== */
.ilan-price-hidden {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f59e0b;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.ilan-price-hidden:hover {
    background: #d97706;
    color: #fff;
}

.ilan-price-hidden i {
    font-size: 11px;
}

.price-login-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fef3c7;
    color: #92400e;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    border: 1px solid #fcd34d;
}

.price-login-link:hover {
    background: #fde68a;
    color: #78350f;
}

.price-login-link i {
    font-size: 0.85rem;
}

/* Grid Card Header */
.grid-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    min-width: 0;
}

.grid-card-header .grid-card-title {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    word-break: break-word;
}

.ilan-no-mini {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Meta Bilgiler */
.grid-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 12px;
}

.meta-item {
    display: flex;
    gap: 4px;
}

.meta-label {
    color: #9ca3af;
}

.meta-value {
    color: #374151;
    font-weight: 500;
}

/* İlan No özel stil */
.meta-value.text-danger {
    color: #dc3545 !important;
    font-weight: 700;
    font-size: 13px;
    background: #fef2f2;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Grid Kart Footer */
.grid-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f3f4f6;
}

.badges-row {
    display: flex;
    gap: 6px;
}

.status-badge {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 4px;
}

.status-badge.new {
    background: #dcfce7;
    color: #15803d;
}

.status-badge.used {
    background: #f3f4f6;
    color: #6b7280;
}

.origin-badge {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 4px;
}

.origin-badge.yerli {
    background: #dbeafe;
    color: #1d4ed8;
}

.origin-badge.ithal {
    background: #fef3c7;
    color: #b45309;
}

.date-info {
    font-size: 11px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== HIZLI FİLTRELER ===== */
.quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.quick-filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    text-decoration: none;
    color: #374151;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.quick-filter-item:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.quick-filter-item.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.quick-filter-item.active i {
    color: #fff !important;
}

.quick-filter-item i {
    font-size: 0.9rem;
}

.text-purple {
    color: #8b5cf6 !important;
}

/* Zaman Filtreleri */
.time-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.time-filter-label {
    color: #6b7280;
    font-weight: 500;
}

.time-filter-link {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.time-filter-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.time-filter-link.active {
    color: #1d4ed8;
    font-weight: 600;
}

/* İlan Ver Butonu Küçük */
.ilan-ver-btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.ilan-ver-btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    color: #fff;
}

/* Sıralama Select */
.siralama-select {
    border-radius: 20px;
    padding: 6px 30px 6px 14px;
    font-size: 0.85rem;
    border: 1px solid #e5e7eb;
    background-color: #fff;
}

.siralama-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Responsive Grid */
@media (max-width: 767px) {
    .ilan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .grid-card-info {
        padding: 10px;
    }
    
    .grid-card-header {
        gap: 6px;
    }
    
    .grid-card-title {
        font-size: 0.85rem;
        min-height: auto;
        -webkit-line-clamp: 4; /* İlan isimleri tam görünsün */
        line-height: 1.35;
        flex: 1;
        min-width: 0; /* Taşmayı önle, satır kaydırma çalışsın */
    }
    
    /* İl/ilçe mobilde çok minimal - başlığa alan aç */
    .grid-card-location {
        font-size: 9px !important;
        margin-bottom: 4px !important;
        gap: 2px !important;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .grid-card-location i {
        font-size: 8px !important;
        flex-shrink: 0;
    }
    
    .grid-card-meta {
        display: none;
    }
    
    .quick-filters {
        padding: 12px;
        gap: 8px;
    }
    
    .quick-filter-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .quick-filter-item span {
        display: none;
    }
}

/* ===== İLGİLİ HABERLER ===== */
.ilgili-haberler-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.ilgili-haberler-card .card-header {
    font-weight: 600;
    border-bottom: none;
}

.ilgili-haber-item {
    display: flex;
    align-items: stretch;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s;
    gap: 14px;
}

.ilgili-haber-item:hover {
    background: #f8fafc;
    padding-left: 20px;
}

.ilgili-haber-item:last-child {
    border-bottom: none;
}

.ilgili-haber-image {
    flex-shrink: 0;
    width: 100px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    background: #e5e7eb;
}

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

.ilgili-haber-item:hover .ilgili-haber-image img {
    transform: scale(1.05);
}

.ilgili-haber-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.5rem;
}

.ilgili-haber-content {
    flex: 1;
    min-width: 0;
}

.ilgili-haber-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ilgili-haber-item:hover .ilgili-haber-title {
    color: #2563eb;
}

.ilgili-haber-meta {
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.ilgili-haber-ozet {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.ilgili-haber-arrow {
    display: flex;
    align-items: center;
    color: #d1d5db;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.ilgili-haber-item:hover .ilgili-haber-arrow {
    color: #2563eb;
    transform: translateX(4px);
}

.ilgili-haberler-card .card-footer {
    background: #f8fafc;
    border-top: 1px solid #f3f4f6;
}

/* ===== PROFİL SAYFASI GRID ===== */
.profile-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

@media (min-width: 768px) {
    .profile-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .profile-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.profile-grid .grid-card-image {
    min-height: 180px;
}

/* ===== MODERN SLEEK NAVBAR ===== */
.navbar-sleek {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    overflow: visible;
}

.navbar-sleek-inner {
    display: flex;
    align-items: center;
    height: 65px;
    gap: 20px;
    position: relative;
}

/* Logo */
.navbar-brand-sleek {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 10;
}

.navbar-brand-sleek .brand-logo {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.navbar-brand-sleek .brand-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: 1px;
}

.brand-logo-img {
    height: 52px;
    max-height: 52px;
    width: auto;
    max-width: min(280px, 42vw);
    object-fit: contain;
    object-position: left center;
    display: block;
}

@media (min-width: 992px) {
    .navbar-brand-sleek {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .brand-logo-img {
        height: 170px;
        max-height: 170px;
        max-width: 220px;
    }

    .navbar-sleek-inner {
        padding-left: 230px;
    }
}

/* Main Menu */
.navbar-menu-sleek {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link-sleek {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link-sleek:hover {
    background: rgba(255,255,255,0.1);
    color: #f59e0b;
}

.nav-link-sleek i {
    font-size: 0.85rem;
}

/* Search */
.navbar-search-sleek {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 200px;
    max-width: 350px;
    margin: 0 10px;
}

.search-input-sleek {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px 0 0 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s;
}

.search-input-sleek::placeholder {
    color: rgba(255,255,255,0.5);
}

.search-input-sleek:focus {
    background: rgba(255,255,255,0.15);
    border-color: #f59e0b;
}

.search-btn-sleek {
    background: #f59e0b;
    border: none;
    padding: 10px 16px;
    border-radius: 0 8px 8px 0;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.search-btn-sleek:hover {
    background: #d97706;
}

/* Action Buttons */
.navbar-actions-sleek {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-ilan-ver-sleek {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-ilan-ver-sleek:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #fff;
    transform: translateY(-1px);
}

.btn-admin-sleek {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-admin-sleek:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
}

.btn-login-sleek,
.btn-register-sleek {
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-login-sleek {
    color: rgba(255,255,255,0.9);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-login-sleek:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.btn-register-sleek {
    background: #f59e0b;
    color: #fff;
}

.btn-register-sleek:hover {
    background: #d97706;
    color: #fff;
}

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

.user-btn-sleek {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.user-btn-sleek:hover {
    background: rgba(255,255,255,0.15);
}

.user-btn-sleek i:first-child {
    font-size: 1.1rem;
    color: #f59e0b;
}

.user-btn-sleek i:last-child {
    font-size: 0.7rem;
    opacity: 0.7;
}

.user-menu-sleek {
    min-width: 220px;
    padding: 8px 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin-top: 8px;
}

.user-menu-sleek .dropdown-item {
    padding: 10px 16px;
    font-size: 0.9rem;
}

.user-menu-sleek .dropdown-item:hover {
    background: #f3f4f6;
}

/* Mobile Toggle */
.navbar-toggle-sleek {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Mobile Menu */
.navbar-mobile-sleek {
    padding: 15px 0;
    padding-bottom: 80px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-height: calc(100vh - 70px);
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

/* Mobil Butonlar Container */
.mobile-buttons-container {
    display: flex !important;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Mobil Arama Toggle Butonu */
.mobile-search-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: none;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: #fff !important;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
    z-index: 1100;
    position: relative;
}

.mobile-search-toggle:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    transform: scale(1.05);
}

/* Mobil Arama Bar (inline) */
.mobile-search-bar {
    background: #1e3a5f;
    padding: 12px 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-search-form-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-search-input-inline {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    border-radius: 8px;
    outline: none;
}

.mobile-search-input-inline::placeholder {
    color: rgba(255,255,255,0.5);
}

.mobile-search-btn-inline {
    padding: 12px 20px;
    border: none;
    background: #f59e0b;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.mobile-search-btn-inline:hover {
    background: #d97706;
}

.mobile-search-close {
    padding: 12px 14px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-search-close:hover {
    background: rgba(239, 68, 68, 0.5);
}

/* Mobil Menü İçi Arama */
.mobile-search-form {
    padding: 0;
    margin-bottom: 10px;
}

.mobile-search-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.mobile-search-input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.mobile-search-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.mobile-search-btn {
    padding: 14px 18px;
    border: none;
    background: #f59e0b;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.mobile-search-btn:hover {
    background: #d97706;
}

.mobile-link-sleek {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all 0.2s;
}

.mobile-link-sleek:hover {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.mobile-link-sleek i {
    width: 24px;
    text-align: center;
}

/* Mobil İlan Ver Butonu - Belirgin */
.mobile-link-sleek.btn-mobile-ilan-ver {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff !important;
    font-weight: 600;
    border: none;
    margin: 10px 0;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.mobile-link-sleek.btn-mobile-ilan-ver:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #fff !important;
}

/* Mobil Admin/Editör Panel Butonları */
.mobile-link-sleek.btn-mobile-admin {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff !important;
    font-weight: 600;
    border: none;
    margin: 5px 0;
    justify-content: center;
}

.mobile-link-sleek.btn-mobile-editor {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #fff !important;
    font-weight: 600;
    border: none;
    margin: 5px 0;
    justify-content: center;
}

.mobile-link-sleek.btn-mobile-magaza {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff !important;
    font-weight: 600;
    border: none;
    margin: 5px 0;
    justify-content: center;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-menu-sleek,
    .navbar-search-sleek,
    .btn-login-sleek,
    .btn-register-sleek,
    .user-dropdown-sleek,
    .btn-admin-sleek {
        display: none !important;
    }
    
    .navbar-brand-sleek {
        margin-left: 0;
        margin-right: 4px;
    }

    .navbar-sleek-inner {
        justify-content: space-between;
        padding: 0;
        min-height: 95px !important;
        height: 95px !important;
    }
    
    .navbar-actions-sleek {
        gap: 8px;
    }
    
    /* Mobilde ilan ver butonunu gizle - mobil menüde var */
    .btn-ilan-ver-sleek {
        display: none !important;
    }
    
    /* Toggle butonunu göster */
    .navbar-toggle-sleek {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .brand-logo-img {
        height: 90px;
        max-height: 90px;
        max-width: min(280px, 60vw);
    }
}

@media (max-width: 576px) {
    .navbar-sleek-inner {
        min-height: 90px !important;
        height: 90px !important;
        padding: 0 !important;
    }
    
    .mobile-search-toggle,
    .navbar-toggle-sleek {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        padding: 8px !important;
        font-size: 1.1rem !important;
    }
    
    .brand-logo-img {
        height: 85px;
        max-height: 85px;
        max-width: min(260px, 62vw);
    }
}

@media (min-width: 992px) {
    .navbar-toggle-sleek,
    .navbar-mobile-sleek,
    .mobile-buttons-container,
    .mobile-search-toggle,
    .mobile-search-bar {
        display: none !important;
    }
}

/* Dar masaüstü: menü linkleri biraz sıkı */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .nav-link-sleek {
        padding: 7px 7px;
        font-size: 0.78rem;
    }
}

/* ===== ANA SAYFA GRID ===== */
.home-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

@media (min-width: 768px) {
    .home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .home-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .home-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.home-grid .grid-card-image {
    min-height: 220px;
}

.home-grid .ilan-grid-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-grid .ilan-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* ===== VİTRİN SEKSİYONU - SAHİBİNDEN.COM TARZI ===== */
.vitrin-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 50px 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.vitrin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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.02'%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");
}

.vitrin-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.vitrin-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #1a1a2e;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
}

.vitrin-title i {
    font-size: 1.5rem;
}

.vitrin-subtitle {
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
    font-size: 0.95rem;
}

/* Vitrin Carousel */
.vitrin-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.vitrin-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 15px 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.vitrin-carousel::-webkit-scrollbar {
    display: none;
}

.vitrin-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none;
    color: #1a1a2e;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.vitrin-nav:hover {
    background: #f59e0b;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.vitrin-prev { left: 0; }
.vitrin-next { right: 0; }

/* Vitrin Card */
.vitrin-card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.vitrin-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.3);
}

.vitrin-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #1a1a2e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.vitrin-card-badge i {
    animation: pulse-icon 1.5s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.vitrin-card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.vitrin-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.vitrin-card:hover .vitrin-card-image img {
    transform: scale(1.1);
}

.vitrin-gunun-ilani {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(239, 68, 68, 0.4);
    animation: star-rotate 3s linear infinite;
}

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

.vitrin-card-info {
    padding: 20px;
}

.vitrin-card-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
}

.vitrin-card-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 8px;
}

.vitrin-card-location {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vitrin-card-location i {
    color: #f59e0b;
}

/* Vitrin CTA */
.vitrin-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.btn-vitrin-all {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #1a1a2e;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
}

.btn-vitrin-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
    color: #1a1a2e;
}

.btn-vitrin-info {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-vitrin-info:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

/* Vitrin Badge for Listing Cards */
.vitrin-badge-card {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #1a1a2e;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.vitrin-badge-card i {
    font-size: 0.65rem;
}

/* İlan listesinde vitrin kartı vurgulama */
.ilan-grid-card.vitrin-active {
    border: 2px solid #f59e0b;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.ilan-card-pro.vitrin-active {
    border-left: 4px solid #f59e0b;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.05) 0%, #fff 50%);
}

/* Renkli Çerçeve Doping - Sahibinden tarzı: tüm kart hafif yeşil, diğerlerinden net ayrılsın */
.ilan-grid-card.renkli-cerceve,
.ilan-card-pro.renkli-cerceve,
.listing-card-pro.renkli-cerceve,
.vitrin-item-pro.renkli-cerceve {
    background: #bbf7d0 !important; /* Daha koyu yeşil - çok daha belirgin */
    border-radius: 10px;
    border-left: 4px solid #059669;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.ilan-grid-card.renkli-cerceve .grid-card-image,
.ilan-card-pro.renkli-cerceve .ilan-image-container,
.listing-card-pro.renkli-cerceve .listing-image-pro,
.vitrin-item-pro.renkli-cerceve .vitrin-item-image {
    background: transparent !important;
}
.ilan-grid-card.renkli-cerceve .grid-card-info,
.ilan-grid-card.renkli-cerceve .listing-info-pro,
.ilan-card-pro.renkli-cerceve .ilan-content,
.listing-card-pro.renkli-cerceve .listing-info-pro,
.vitrin-item-pro.renkli-cerceve .vitrin-item-info {
    background: transparent !important;
}
.ilan-grid-card.renkli-cerceve:hover,
.ilan-card-pro.renkli-cerceve:hover,
.listing-card-pro.renkli-cerceve:hover,
.vitrin-item-pro.renkli-cerceve:hover {
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.15);
}
/* View’dan gelen border-color sadece sol çizgiyi değiştirsin (opsiyonel) */
.ilan-grid-card.renkli-cerceve[style*="border-color"],
.ilan-card-pro.renkli-cerceve[style*="border-color"],
.listing-card-pro.renkli-cerceve[style*="border-color"],
.vitrin-item-pro.renkli-cerceve[style*="border-color"] {
    border-left-width: 4px;
}

/* Öne Çıkarma Badge Stili */
.featured-badge.one-cikarma,
.star-badge.one-cikarma {
    background: linear-gradient(135deg, #EF4444, #DC2626) !important;
    animation: atesParlama 1.5s ease-in-out infinite;
}

@keyframes atesParlama {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Vitrin */
@media (max-width: 768px) {
    .vitrin-section {
        padding: 35px 0;
    }
    
    .vitrin-title {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .vitrin-carousel-wrapper {
        padding: 0 15px;
    }
    
    .vitrin-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .vitrin-prev { left: -5px; }
    .vitrin-next { right: -5px; }
    
    .vitrin-card {
        flex: 0 0 240px;
    }
    
    .vitrin-card-image {
        height: 160px;
    }
    
    .vitrin-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn-vitrin-all,
    .btn-vitrin-info {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* ===== DOPİNG HERO SAYFASI ===== */
.doping-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.doping-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.doping-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.doping-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #1a1a2e;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
}

.doping-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.doping-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

.doping-hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
    .doping-hero {
        padding: 50px 0;
    }
    
    .doping-hero h1 {
        font-size: 2rem;
    }
    
    .doping-hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* =====================================================
   SAHİBİNDEN.COM TARZI PROFESYONEL ANA SAYFA
   ===================================================== */

.sahibinden-homepage {
    background: #fff;
    min-height: 100vh;
    padding: 20px 0;
}

/* Sol Menü Sidebar */
.sidebar-menu {
    position: sticky;
    top: 80px;
    padding-right: 10px;
    padding-bottom: 20px;
    max-height: calc(100vh - 100px);
    overflow-y: scroll !important;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db #f9fafb;
}

.sidebar-menu::-webkit-scrollbar {
    width: 8px;
}

.sidebar-menu::-webkit-scrollbar-track {
    background: #f9fafb;
    border-radius: 4px;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
    border: 2px solid #f9fafb;
}

.sidebar-menu::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Hızlı Filtreler */
.quick-filters {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.quick-filter-item.acil {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d00;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 10px;
}

.quick-filter-item.acil:hover {
    color: #a00;
}

.quick-filter-item.acil i {
    color: #d00;
}

.time-filters {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
}

.time-link {
    color: #0066ff;
    text-decoration: none;
}

.time-link:hover,
.time-link.active {
    text-decoration: underline;
    color: #0044cc;
}

.separator {
    color: #999;
}

/* Vitrin Banner */
.vitrin-banner-link {
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
}

.vitrin-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.vitrin-banner:hover {
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
    transform: translateX(3px);
}

.vitrin-banner i {
    font-size: 1.5rem;
    color: #d97706;
}

.vitrin-banner span {
    font-weight: 600;
    color: #92400e;
    font-size: 0.95rem;
}

.vitrin-banner small {
    display: block;
    color: #b45309;
    font-size: 0.75rem;
}

.vitrin-banner.active {
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
    border-color: #d97706;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Filtre Kartı */
.filter-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px;
}

.filter-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f3f4f6;
}

.price-filter-form .form-control {
    border: 1px solid #d1d5db;
}

.price-filter-form .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

/* Kategori Menü */
.category-menu {
    margin-bottom: 25px;
}

.category-item {
    border-bottom: 1px solid #f0f0f0;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

.category-link:hover {
    color: #0066ff;
}

.category-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
}

.category-name {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
}

.category-count {
    color: #999;
    font-size: 0.85rem;
}

.subcategory-list {
    padding: 0 0 10px 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 15px;
}

.subcategory-link {
    color: #0066ff;
    text-decoration: none;
    font-size: 0.85rem;
}

.subcategory-link:hover {
    text-decoration: underline;
}

.subcategory-more {
    color: #666;
    font-size: 0.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3px;
}

.subcategory-more:hover {
    color: #0066ff;
}

/* Sidebar Feature Links */
.sidebar-feature-link {
    display: block;
    text-decoration: none;
    margin-bottom: 10px;
}

.sidebar-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s;
}

.sidebar-feature:hover {
    background: #e9ecef;
}

.sidebar-feature i {
    font-size: 1.3rem;
    color: #0066ff;
}

.sidebar-feature strong {
    display: block;
    color: #333;
    font-size: 0.9rem;
}

.sidebar-feature small {
    color: #666;
    font-size: 0.75rem;
}

/* ===== ANASAYFA VİTRİNİ (SAHİBİNDEN TARZI) ===== */
.homepage-vitrin {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 25px;
}

.vitrin-header-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.vitrin-header-pro h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.vitrin-all-link {
    color: #0066ff;
    text-decoration: none;
    font-size: 0.85rem;
}

.vitrin-all-link:hover {
    text-decoration: underline;
}

/* Vitrin Grid - Normal ilanlarla AYNI boyut (4'lü grid) */
.vitrin-grid-pro {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 1400px) {
    .vitrin-grid-pro {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 576px) {
    .vitrin-grid-pro {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .vitrin-item-image {
        height: 110px;
        min-height: 110px;
        max-height: 110px;
    }
    .vitrin-item-info {
        padding: 6px;
    }
    .vitrin-item-title {
        font-size: 0.7rem;
        height: 2.2em;
        line-height: 1.2;
    }
    .vitrin-item-location {
        font-size: 0.65rem;
        margin-top: 4px;
    }
    .vitrin-item-price {
        font-size: 0.8rem;
        margin-top: 4px;
    }
    .vitrin-item-date {
        font-size: 0.6rem;
    }
    .vitrin-badge-mini {
        padding: 2px 5px;
        font-size: 0.55rem;
        top: 4px;
        left: 4px;
    }
    .card-share-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
        top: 4px;
        right: 4px;
    }
}

/* Vitrin ilan kartı - Normal ilan kartıyla AYNI stil */
.vitrin-item-pro {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border: 2px solid #f59e0b;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s;
    height: 100%;
}

.vitrin-item-pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.vitrin-item-image {
    position: relative;
    width: 100%;
    height: 160px;
    min-height: 160px;
    max-height: 160px;
    background: #f8f8f8;
    overflow: hidden;
}

.vitrin-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vitrin-badge-mini {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #f59e0b;
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vitrin-badge-mini.gunun {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
}

.vitrin-item-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vitrin-item-title {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
}

.vitrin-item-location {
    font-size: 0.8rem;
    color: #666;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vitrin-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: #0066ff;
    margin-top: 8px;
}

.vitrin-item-date {
    font-size: 0.75rem;
    color: #999;
    margin-top: auto;
    padding-top: 4px;
}

/* Dopingli kart: anasayfa vitrin ve günün ilanı - tüm kart yeşil (vitrin stillerinden sonra override) */
.vitrin-card-wrapper.dopingli-kart .vitrin-item-pro,
.vitrin-item-pro.renkli-cerceve {
    background: #bbf7d0 !important;
    border: 2px solid #059669 !important;
    border-left: 4px solid #059669 !important;
    border-radius: 10px !important;
}
.vitrin-card-wrapper.dopingli-kart .vitrin-item-image,
.vitrin-item-pro.renkli-cerceve .vitrin-item-image {
    background: transparent !important;
}
.vitrin-card-wrapper.dopingli-kart .vitrin-item-info,
.vitrin-item-pro.renkli-cerceve .vitrin-item-info {
    background: transparent !important;
}
.vitrin-card-wrapper.dopingli-kart .vitrin-item-pro:hover,
.vitrin-item-pro.renkli-cerceve:hover {
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2) !important;
}

/* Vitrin boş mesajı */
.vitrin-empty-message {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.vitrin-empty-message i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 15px;
}

.vitrin-empty-message p {
    margin: 0;
    font-size: 0.9rem;
}

/* ===== SON EKLENEN İLANLAR ===== */
.latest-listings-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 25px;
}

.section-header-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.section-header-pro h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header-pro h2 i {
    color: #0066ff;
}

.see-all-link {
    color: #0066ff;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.see-all-link:hover {
    text-decoration: underline;
}

/* İlan Kartları Grid */
.listings-grid-pro {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 1400px) {
    .listings-grid-pro {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 576px) {
    .listings-grid-pro {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .listing-image-pro {
        height: 110px;
        min-height: 110px;
        max-height: 110px;
    }
    .listing-info-pro {
        padding: 6px;
    }
    .listing-title-pro {
        font-size: 0.6rem !important;
        font-weight: 600 !important;
        color: #1f2937 !important;
        min-height: 2.4em !important;
        padding: 3px 5px !important;
        -webkit-line-clamp: 2 !important;
        line-height: 1.25 !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-transform: capitalize !important;
    }
    .listing-location-pro {
        font-size: 0.5rem !important;
        margin-top: 3px;
    }
    .listing-location-pro i {
        font-size: 0.45rem !important;
    }
    .listing-price-pro {
        font-size: 0.8rem;
    }
    .listing-price-hidden {
        font-size: 0.65rem;
    }
    .listing-date-pro {
        font-size: 0.6rem;
    }
    .listing-badge {
        padding: 2px 5px;
        font-size: 0.55rem;
        top: 4px;
        left: 4px;
    }
    .photo-count-badge {
        padding: 2px 5px;
        font-size: 0.55rem;
    }
}

/* İlan Kart */
.listing-card-pro {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s;
    height: 100%;
}

.listing-card-pro:hover {
    border-color: #0066ff;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
}

.listing-image-pro {
    position: relative;
    width: 100%;
    height: 160px;
    min-height: 160px;
    max-height: 160px;
    background: #f8f8f8;
    overflow: hidden;
}

.listing-image-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.listing-badge.vitrin {
    background: #f59e0b;
    color: #fff;
}

.listing-badge.gunun {
    background: #dc2626;
    color: #fff;
    padding: 3px 6px;
}

.photo-count-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.listing-info-pro {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.listing-header-pro {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.listing-ilan-no {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.listing-title-pro {
    font-size: 0.65rem;
    font-weight: 600;
    color: #1f2937 !important;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-transform: capitalize;
}

.listing-location-pro {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.listing-location-pro i {
    color: #999;
}

.listing-price-pro {
    font-size: 1.1rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 5px;
}

.listing-price-hidden {
    font-size: 0.85rem;
    color: #92400e;
    background: #fef3c7;
    padding: 6px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    border: 1px solid #fcd34d;
}

.listing-date-pro {
    font-size: 0.75rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

/* ===== MOBİL KATEGORİLER ===== */
.mobile-categories {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 25px;
}

.mobile-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

@media (max-width: 576px) {
    .mobile-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mobile-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-category-item:hover {
    background: #e9ecef;
}

.mobile-category-item i {
    font-size: 1.5rem;
    color: #0066ff;
}

.mobile-category-item span {
    font-size: 0.8rem;
    color: #333;
    text-align: center;
    font-weight: 500;
}

/* ===== HABERLER ===== */
.news-section-pro {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 25px;
}

.news-grid-pro {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

@media (max-width: 576px) {
    .news-grid-pro {
        grid-template-columns: 1fr;
    }
}

.news-card-pro {
    display: block;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s;
}

.news-card-pro:hover {
    border-color: #0066ff;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
}

.news-image-pro {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-image-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-info-pro {
    padding: 12px;
}

.news-info-pro h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 8px;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
}

.news-date {
    font-size: 0.75rem;
    color: #999;
}

/* ===== GÜVEN BANNER ===== */
.trust-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    font-size: 1.8rem;
    color: #0066ff;
}

.trust-item strong {
    display: block;
    color: #333;
    font-size: 0.9rem;
}

.trust-item span {
    color: #666;
    font-size: 0.8rem;
}

.cta-button {
    background: #f59e0b;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.cta-button:hover {
    background: #d97706;
    color: #fff;
}

@media (max-width: 768px) {
    .trust-banner {
        justify-content: center;
        text-align: center;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
}

/* ===== İSTATİSTİK BAR ===== */
.stats-bar {
    background: #1e3a5f;
    padding: 15px 0;
}

.stats-content {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat-item-inline {
    color: #fff;
    font-size: 0.95rem;
}

.stat-item-inline strong {
    color: #f59e0b;
    margin-right: 5px;
}

/* ===== NAVBAR KOYU VERSİYONU (SAHİBİNDEN TARZI) ===== */
.navbar-sleek {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%) !important;
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.navbar-brand-sleek {
    color: #fff !important;
}

.brand-title {
    color: #fff !important;
    font-weight: 700;
}

.nav-link-sleek {
    color: rgba(255,255,255,0.9) !important;
}

.nav-link-sleek:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

/* Arama Kutusu - Sahibinden Tarzı */
.navbar-search-sleek {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border-radius: 6px !important;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2) !important;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.search-input-sleek {
    background: transparent !important;
    border: none !important;
    color: #1e293b !important;
    padding: 12px 16px !important;
    font-size: 0.95rem;
}

.search-input-sleek::placeholder {
    color: #64748b;
}

.search-input-sleek:focus {
    outline: none;
}

.search-btn-sleek {
    background: #2d4a6f !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 20px !important;
    transition: all 0.2s;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 50px;
}

.search-btn-sleek:hover {
    background: #1e3a5f !important;
}

.search-btn-sleek i {
    font-size: 1rem;
}

/* İlan Ver Butonu - Yeşil */
.btn-ilan-ver-sleek {
    background: #10b981 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 600;
}

.btn-ilan-ver-sleek:hover {
    background: #059669 !important;
}

/* Giriş Yap Butonu - Koyu Gri */
.btn-login-sleek {
    background: #4b5563 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 500;
}

.btn-login-sleek:hover {
    background: #374151 !important;
    color: #fff !important;
}

/* Üye Ol Butonu - Yarı Saydam (Koyu navbar için) */
.btn-register-sleek {
    background: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.4) !important;
    color: #fff !important;
    font-weight: 500;
}

.btn-register-sleek:hover {
    background: rgba(255,255,255,0.25) !important;
    border-color: rgba(255,255,255,0.6) !important;
    color: #fff !important;
}

/* Kullanıcı Dropdown */
.user-btn-sleek {
    color: #fff !important;
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

.user-btn-sleek:hover {
    background: rgba(255,255,255,0.2) !important;
}

/* İlan Ver Sidebar Butonu - Koyu Gri */
.btn-ilan-sidebar {
    background: #4b5563;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-ilan-sidebar:hover {
    background: #374151;
    color: #fff;
}

/* ===== CÜZDAN BUTONU (NAVBAR) ===== */
.btn-wallet-sleek {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-wallet-sleek:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.btn-wallet-sleek i {
    font-size: 14px;
    color: #10b981;
}

.wallet-balance {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

/* Mobil cüzdan linki */
.mobile-wallet-link {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%) !important;
    border-radius: 10px !important;
    margin: 8px 0 !important;
    padding: 14px 16px !important;
    color: #fff !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
}

.mobile-wallet-link:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%) !important;
    color: #fff !important;
}

.mobile-wallet-link i {
    color: #10b981 !important;
}

.mobile-wallet-badge {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%) !important;
    color: #fff !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4) !important;
}

/* Mobilde cüzdan butonunu gizle */
@media (max-width: 991px) {
    .btn-wallet-sleek {
        display: none !important;
    }
}

/* ===== İLAN KARTI BAŞLIK GÖLGELİ KUTU TASARIMI ===== */
/* Müşteri isteği: Başlıklar gölgeli kutu içinde, taşmayacak şekilde */

/* Grid Kart Başlık - Gölgeli Kutu */
.grid-card-info {
    padding: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.grid-card-title {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4em;
    /* Gölgeli kutu efekti */
    background: #ffffff;
    padding: 8px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    word-break: break-word;
}

/* Liste Kart Başlık - Gölgeli Kutu */
.ilan-card-pro .ilan-title {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8em;
    /* Gölgeli kutu efekti */
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

/* Vitrin Kart Başlık */
.vitrin-card-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.8em;
    max-height: 2.8em;
    /* Gölgeli kutu efekti */
    background: #ffffff;
    padding: 8px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

/* Pro Listing Kart Başlık - 3 satır göster */
.listing-title-pro {
    font-size: 0.65rem;
    font-weight: 600;
    color: #1f2937 !important;
    margin: 0 0 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.5em;
    /* Gölgeli kutu efekti */
    background: #ffffff;
    padding: 8px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    word-break: break-word;
    text-transform: capitalize;
}

/* Vitrin Item Başlık - 3 satır göster */
.vitrin-item-title {
    margin-top: 8px;
    font-size: 0.75rem;
    color: #333;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3em;
    /* Gölgeli kutu efekti */
    background: #ffffff;
    padding: 8px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    word-break: break-word;
}

/* Hover durumunda başlık rengi */
.ilan-grid-card:hover .grid-card-title,
.ilan-card-pro:hover .ilan-title,
.vitrin-card:hover .vitrin-card-info h4,
.listing-card-pro:hover .listing-title-pro {
    color: #1e40af !important;
    border-color: #dbeafe;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

/* Mobil için başlık kutusu düzenlemeleri */
@media (max-width: 768px) {
    .grid-card-title,
    .ilan-card-pro .ilan-title {
        font-size: 12px;
        padding: 6px 8px;
        min-height: auto;
        max-height: 2.6em;
        -webkit-line-clamp: 2;
    }
    
    .vitrin-item-title {
        font-size: 0.75rem;
        padding: 4px 6px;
    }
}

/* ===== MOBİL İLAN DETAY BAŞLIK DÜZENİ ===== */
/* İlan detay sayfasında başlık ve aksiyonların mobilde düzgün görünmesi */
@media (max-width: 768px) {
    .detail-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    
    .detail-title {
        font-size: 18px !important;
        width: 100% !important;
        word-wrap: break-word !important;
        flex: none !important;
        line-height: 1.4 !important;
    }
    
    .header-actions {
        margin-left: 0 !important;
        width: 100% !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        padding-top: 10px !important;
        border-top: 1px solid #eee !important;
        justify-content: flex-start !important;
    }
    
    .social-share {
        margin-left: 0 !important;
        padding-left: 0 !important;
        border-left: none !important;
    }
}

@media (max-width: 480px) {
    .detail-title {
        font-size: 16px !important;
    }
    
    .detail-breadcrumb {
        font-size: 11px !important;
    }
}

/* ===== ADMİN KART HIZLI İŞLEMLER ===== */
.ilan-card-wrapper,
.listing-card-wrapper,
.vitrin-card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ilan-card-wrapper.has-admin-actions,
.listing-card-wrapper.has-admin-actions,
.vitrin-card-wrapper.has-admin-actions {
    padding-bottom: 36px; /* Admin butonları için alan */
}

/* Vitrin kartları için daha küçük padding */
.vitrin-card-wrapper.has-admin-actions {
    padding-bottom: 32px;
}

.admin-card-actions.vitrin-admin {
    bottom: 2px;
}

.admin-card-actions {
    position: absolute;
    bottom: 4px;
    right: 8px;
    display: flex;
    gap: 4px;
    z-index: 10;
}

.admin-action-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    text-decoration: none;
    color: #fff;
}

.admin-action-btn.edit {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.admin-action-btn.edit:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: scale(1.1);
}

.admin-action-btn.sold {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.admin-action-btn.sold:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: scale(1.1);
}

.admin-action-btn.delete {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.admin-action-btn.delete:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: scale(1.1);
}

.admin-action-btn.doping-add {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.admin-action-btn.doping-add:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: scale(1.1);
}

.admin-action-btn.doping-remove {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    position: relative;
    overflow: visible;
}

.admin-action-btn.doping-remove:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: scale(1.1);
}

/* Doping kaldır - şimşek üstünde çarpı */
.admin-action-btn.doping-remove::after {
    content: '×';
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    background: #ef4444;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Grid kart wrapper için de aynı stiller */
.ilan-card-wrapper .ilan-grid-card {
    display: block;
}

/* Mobil için admin butonları */
@media (max-width: 768px) {
    .admin-card-actions {
        bottom: 4px;
        right: 4px;
        gap: 3px;
    }
    
    .admin-action-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
}

/* ===== MOBİL İYİLEŞTİRMELER ===== */

/* Mobil Dokunma Hedefleri - Minimum 44px */
@media (max-width: 768px) {
    /* Tüm butonlar ve linkler için minimum dokunma alanı */
    .btn, .nav-link-sleek, .mobile-link-sleek, 
    .category-link, .subcategory-link, .quick-filter-item {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    /* Form elementleri için daha büyük boyut */
    .form-control, .form-select {
        min-height: 48px;
        font-size: 16px !important; /* iOS zoom'u engeller */
    }
    
    /* Checkbox ve radio daha büyük */
    .form-check-input {
        width: 22px;
        height: 22px;
        margin-top: 0;
    }
    
    .form-check-label {
        padding-left: 8px;
        line-height: 22px;
    }
}

/* Tablo Yatay Scroll Göstergesi */
.table-responsive, .admin-card-body {
    position: relative;
}

.table-responsive::after, 
.admin-card-body:has(table)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(to left, rgba(255,255,255,0.9), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

@media (max-width: 768px) {
    .table-responsive::after,
    .admin-card-body:has(table)::after {
        opacity: 1;
    }
    
    /* Scroll olduğunu gösteren subtle animasyon */
    .table-responsive::-webkit-scrollbar,
    .admin-card-body::-webkit-scrollbar {
        height: 4px;
    }
    
    .table-responsive::-webkit-scrollbar-thumb,
    .admin-card-body::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 4px;
    }
}

/* Vitrin Carousel Mobil İyileştirme */
@media (max-width: 768px) {
    .vitrin-carousel-wrapper {
        padding: 0 10px;
    }
    
    .vitrin-nav {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .vitrin-prev { left: -8px; }
    .vitrin-next { right: -8px; }
    
    /* Dokunarak kaydırma göstergesi */
    .vitrin-carousel {
        scroll-snap-type: x mandatory;
    }
    
    .vitrin-card {
        scroll-snap-align: start;
    }
}

/* Mobil Footer İyileştirme */
@media (max-width: 576px) {
    .footer-main {
        padding: 25px 0 15px;
    }
    
    .footer-title {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .footer-menu a {
        font-size: 0.85rem;
        padding: 4px 0;
        display: block;
    }
    
    .footer-contact {
        padding: 15px 0;
    }
    
    .contact-info-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
}

/* Mobil Alert ve Card İyileştirmeleri */
@media (max-width: 576px) {
    .alert {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .card-header {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

/* Mobil Hero Section İyileştirme */
@media (max-width: 480px) {
    .hero-section {
        padding: 35px 0;
    }
    
    .hero-section h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-section p {
        font-size: 0.95rem;
    }
    
    .hero-stat-badge {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

/* Mobil İlan Kartı İyileştirmeleri */
@media (max-width: 480px) {
    .ilan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .grid-card-info {
        padding: 8px;
    }
    
    .grid-card-title {
        font-size: 11px;
        padding: 6px;
        min-height: 3.2em;
        -webkit-line-clamp: 2;
    }
    
    .current-price {
        font-size: 14px;
    }
    
    .grid-card-footer {
        padding-top: 6px;
    }
    
    .status-badge {
        font-size: 9px;
        padding: 2px 5px;
    }
}
