/* ===== ANASAYFA VİTRİN KARTLARI - SIFIRDAN TASARIM ===== */

/* Ana container - her zaman 2 kolon */
.homepage-vitrin-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
    margin: 0;
}

/* Tablet ve üzeri için biraz daha fazla gap */
@media (min-width: 768px) {
    .homepage-vitrin-grid {
        gap: 16px;
    }
}

/* Desktop için daha fazla gap */
@media (min-width: 1024px) {
    .homepage-vitrin-grid {
        gap: 20px;
    }
}

/* Ana kart container */
.vitrin-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    position: relative;
}

.vitrin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

/* Resim alanı - 2'li grup için optimize */
.vitrin-card-image {
    width: 100%;
    height: 140px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Tablet ve üzeri için daha yüksek resim */
@media (min-width: 768px) {
    .vitrin-card-image {
        height: 160px;
    }
}

/* Desktop için en yüksek resim */
@media (min-width: 1024px) {
    .vitrin-card-image {
        height: 180px;
    }
}

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

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

/* Üst badge'ler */
.vitrin-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

/* VİTRİN Etiketi - Sol Üst Sarkan */
.vitrin-badge.featured {
    position: absolute;
    top: -5px;
    left: -15px;

    /* Tipografi */
    font-size: 9px;             /* 8px biraz zayıf kalıyor */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1.1;

    /* Görünüm */
    color: #fff;
    background: linear-gradient(180deg, #ff7a1a 0%, #e85a00 100%);
    text-shadow: 0 1px 1px rgba(0,0,0,.18);

    /* İç boşluk – dengeli ve kompakt */
    padding: 7px 14px 9px 12px;

    /* Sağ kenarı eğik, altı hizalı temiz bitiş */
    /* Öncekine göre daha düzgün açı ve oran */
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 88%);

    /* Derinlik – yumuşak, profesyonel gölge */
    box-shadow:
        0 4px 10px rgba(0,0,0,.18),
        0 1px 3px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.18);

    /* Gereksiz titreşimleri önlemek için origin kaldırıldı */
    z-index: 3;
    transition: transform .2s ease, box-shadow .2s ease;
}

.vitrin-badge.featured::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 6px;
    height: 6px;
    background: inherit;
    filter: brightness(0.7);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* ACİL/FIRSAT/YENİ Etiketleri - Karttan Sarkan Etiket */
.vitrin-badge.tag {
    position: absolute;
    top: -13px;
    right: 0;
    padding: 6px 6px 20px 6px;
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 3;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    transform-origin: top right;
    /* Karttan sarkan etiket şekli - üst kısım kart dışında */
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 90%, 0 75%);
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    min-width: 28px;
    text-align: center;
    border-radius: 3px 3px 0 0;
}

.vitrin-badge.tag::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    /* İp deliği efekti */
}

.vitrin-badge.tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 3px solid;
    border-top-color: inherit;
    filter: brightness(0.8);
}

/* VİTRİN Etiketi - Turuncu */
.vitrin-badge.featured {
    background: linear-gradient(135deg, #ff8c42 0%, #ff7315 50%, #ff6b00 100%);
    border-left: 3px solid #ff5722;
}

/* YENİ Etiketi - Yeşil */
.vitrin-badge.tag[data-tag="YENİ"],
.vitrin-badge.tag[data-tag="YENI"] {
    background: linear-gradient(135deg, #00e676 0%, #00c853 50%, #00b248 100%);
    border-left: 3px solid #00a040;
}

/* ACİL Etiketi - Kırmızı */
.vitrin-badge.tag[data-tag="ACİL"],
.vitrin-badge.tag[data-tag="ACIL"] {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 50%, #c62828 100%);
    border-left: 3px solid #b71c1c;
}

/* FIRSAT Etiketi - Sarımsı/Altın */
.vitrin-badge.tag[data-tag="FIRSAT"] {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 50%, #ff8f00 100%);
    border-left: 3px solid #ff6f00;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Default tag rengi - Gri */
.vitrin-badge.tag {
    background: linear-gradient(135deg, #607d8b 0%, #546e7a 50%, #455a64 100%);
    border-left: 3px solid #37474f;
}

/* Gradient animasyonu */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hover efektleri - Farklı etiket türleri için */
.vitrin-badge.featured:hover {
    transform: scale(1.05) translateY(-1px);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 2px 5px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.vitrin-badge.tag:hover {
    transform: scale(1.08) translateY(1px);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 2px 5px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Responsive boyutlar - VİTRİN etiketi için */
@media (min-width: 768px) {
    .vitrin-badge.featured {
        font-size: 9px;
        padding: 7px 14px 9px 14px;
        letter-spacing: 0.9px;
    }
    
    .vitrin-badge.tag {
        font-size: 8px;
        padding: 5px 7px 9px 7px;
        letter-spacing: 0.4px;
        min-width: 32px;
    }
}

@media (min-width: 1024px) {
    .vitrin-badge.featured {
        font-size: 10px;
        padding: 8px 16px 10px 16px;
        letter-spacing: 1px;
    }
    
    .vitrin-badge.tag {
        font-size: 9px;
        padding: 6px 8px 10px 8px;
        letter-spacing: 0.5px;
        min-width: 36px;
    }
}

/* ========================================
   ÖNE ÇIKANLAR (POPULAR LISTINGS) SECTION
   ======================================== */

/* Popular Section Container */
.popular-section {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
    margin-top: 0;
}

/* Popular Grid - Kompakt 3'lü tasarım */
.popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 24px;
}

/* Tablet için biraz daha büyük gap */
@media (min-width: 768px) {
    .popular-grid {
        gap: 12px;
    }
}

/* Desktop için daha büyük gap */
@media (min-width: 1024px) {
    .popular-grid {
        gap: 16px;
    }
}

/* Popular Card - VİTRİN kartından daha küçük */
.popular-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    position: relative;
}

/* VİTRİN kartları için AÇIK YEŞİL arka plan (sahibinden.com tarzı) */
.popular-card.featured-card {
    background: #e8f5e8 !important; /* Açık yeşil */
    border: 1px solid #c8e6c9;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15);
}

.popular-card.featured-card:hover {
    background: #dcedc8 !important; /* Hover'da biraz daha yeşil */
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.25);
    border-color: #a5d6a7;
    transform: translateY(-2px);
}

/* VİTRİN kartlarının içerik alanını da yeşil yap */
.popular-card.featured-card .popular-card-content {
    background: #e8f5e8 !important; /* İçerik alanı da yeşil */
}

.popular-card.featured-card:hover .popular-card-content {
    background: #dcedc8 !important; /* Hover'da içerik alanı da yeşil */
}

.popular-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

/* Popular Card Image - Kompakt 3'lü için küçük */
.popular-card-image {
    width: 100%;
    height: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

@media (min-width: 768px) {
    .popular-card-image {
        height: 90px;
    }
}

@media (min-width: 1024px) {
    .popular-card-image {
        height: 100px;
    }
}

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

.popular-card:hover .popular-card-image img {
    transform: scale(1.03);
}

/* Popular Card Badges - Daha küçük */
.popular-card-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 2;
}

.popular-badge {
    position: absolute;
    font-size: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: all 0.3s ease;
}

/* VİTRİN badge - sol üst (kompakt) */
.popular-badge.featured {
    top: 0;
    left: 0;
    padding: 2px 4px 3px 4px;
    background: linear-gradient(135deg, #ff8c42 0%, #ff7315 50%, #ff6b00 100%);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 85%);
    border-radius: 1px 1px 0 0;
}

/* Tag badges - sağ üst (kompakt) */
.popular-badge.tag {
    top: 0;
    right: 0;
    padding: 2px 3px 4px 3px;
    min-width: 12px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 90%, 0 75%);
    border-radius: 1px 1px 0 0;
}

/* Popular Badge Renkleri */
.popular-badge.tag[data-tag="YENİ"],
.popular-badge.tag[data-tag="YENI"] {
    background: linear-gradient(135deg, #00e676 0%, #00c853 50%, #00b248 100%);
}

.popular-badge.tag[data-tag="ACİL"],
.popular-badge.tag[data-tag="ACIL"] {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 50%, #c62828 100%);
}

.popular-badge.tag[data-tag="FIRSAT"] {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 50%, #ff8f00 100%);
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.popular-badge.tag {
    background: linear-gradient(135deg, #607d8b 0%, #546e7a 50%, #455a64 100%);
}

/* Popular Card Content - Süper kompakt */
.popular-card-content {
    padding: 6px;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Popular Card Title - Kompakt 3'lü için */
.popular-card-title {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 24px;
}

/* Popular Card Specs - Süper minimal */
.popular-card-specs {
    font-size: 7px;
    color: #7f8c8d;
    margin-bottom: 3px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.popular-card-specs .separator {
    width: 2px;
    height: 2px;
    background: #bdc3c7;
    border-radius: 50%;
    margin: auto 0;
}

/* Popular Card Location - Süper minimal */
.popular-card-location {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #95a5a6;
    font-size: 7px;
    margin-bottom: 4px;
}

.popular-card-location i {
    color: #ff5722;
    font-size: 7px;
    flex-shrink: 0;
}

.popular-card-location span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

/* Popular Card Price - Süper kompakt */
.popular-card-price-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4px;
    border-top: 1px solid #f0f0f0;
}

.popular-card-price {
    font-size: 9px;
    font-weight: 700;
    color: #1976d2;
    padding: 3px 6px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05), rgba(0, 150, 136, 0.03));
    border-radius: 4px;
    border: 1px solid rgba(0, 188, 212, 0.15);
    position: relative;
}

.popular-card-price::before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 6px;
    right: 6px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #00bcd4 15%, #4dd0e1 50%, #00bcd4 85%, transparent 100%);
    border-radius: 1px;
    opacity: 0.5;
}

/* Popular Card Sold Overlay */
.popular-card-sold {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.popular-card-sold-badge {
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

/* Popular Loading State */
.popular-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #7f8c8d;
}

.popular-loading .loading-icon {
    font-size: 24px;
    color: #3498db;
    margin-bottom: 12px;
    animation: pulse 2s infinite;
}

.popular-loading span {
    font-size: 14px;
    font-weight: 500;
}

/* Popular No Listings */
.popular-no-listings {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #95a5a6;
    text-align: center;
}

.popular-no-listings i {
    font-size: 32px;
    color: #bdc3c7;
    margin-bottom: 16px;
}

.popular-no-listings h3 {
    font-size: 16px;
    font-weight: 600;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.popular-no-listings p {
    font-size: 14px;
    color: #95a5a6;
    margin: 0;
}

/* Responsive - Kompakt boyutlar korunur */
@media (min-width: 768px) {
    .popular-card-title {
        font-size: 11px;
        max-height: 26px;
    }
    
    .popular-card-specs {
        font-size: 8px;
    }
    
    .popular-card-price {
        font-size: 10px;
    }
}

/* Responsive Desktop - Biraz daha büyük ama kompakt */
@media (min-width: 1024px) {
    .popular-card-title {
        font-size: 12px;
        max-height: 29px;
    }
    
    .popular-card-specs {
        font-size: 9px;
    }
    
    .popular-card-price {
        font-size: 11px;
    }
}

/* ========================================
   VİTRİN SECTION STYLES (Existing)
   ======================================== */

/* SATILDI kartları için özel stiller */
.vitrin-card.sold {
    opacity: 0.6;
    filter: grayscale(50%);
    pointer-events: none;
    cursor: not-allowed;
    background: #f8f9fa !important;
}

.vitrin-card.sold .vitrin-card-content {
    background: #f1f3f4 !important;
    color: #6c757d;
}

.vitrin-card.sold .vitrin-card-title {
    color: #6c757d !important;
}

.vitrin-card.sold .vitrin-card-price {
    color: #9ca3af !important;
    background: rgba(156, 163, 175, 0.1) !important;
    border-color: rgba(156, 163, 175, 0.2) !important;
}

/* İçerik alanı - 2'li grup için optimize */
.vitrin-card-content {
    padding: 12px;
    background: white;
}

/* Tablet ve üzeri için daha fazla padding */
@media (min-width: 768px) {
    .vitrin-card-content {
        padding: 16px;
    }
}

/* Desktop için en fazla padding */
@media (min-width: 1024px) {
    .vitrin-card-content {
        padding: 18px;
    }
}

/* Başlık - 2'li grup için optimize */
.vitrin-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

/* Tablet ve üzeri için daha büyük başlık */
@media (min-width: 768px) {
    .vitrin-card-title {
        font-size: 15px;
        margin: 0 0 8px 0;
        min-height: 40px;
    }
}

/* Desktop için en büyük başlık */
@media (min-width: 1024px) {
    .vitrin-card-title {
        font-size: 16px;
        min-height: 44px;
    }
}

/* Araç özellikleri - 2'li grup için optimize */
.vitrin-card-specs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 11px;
    color: #666;
    flex-wrap: wrap;
}

/* Tablet ve üzeri için daha büyük özellikler */
@media (min-width: 768px) {
    .vitrin-card-specs {
        gap: 7px;
        margin-bottom: 10px;
        font-size: 12px;
    }
}

/* Desktop için en büyük özellikler */
@media (min-width: 1024px) {
    .vitrin-card-specs {
        gap: 8px;
        margin-bottom: 12px;
        font-size: 13px;
    }
}

.vitrin-card-specs span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.vitrin-card-specs .separator {
    width: 3px;
    height: 3px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 2px;
}

/* Yıl ve lokasyon bölümü - yan yana */
.vitrin-card-year-location {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

/* Yıl bölümü */
.vitrin-card-year {
    color: #666;
    font-size: 10px;
    font-weight: 600;
    flex-shrink: 0;
}

/* Lokasyon bölümü */
.vitrin-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #888;
    font-size: 10px;
    flex: 1;
    min-width: 0;
}

.vitrin-card-location i {
    color: #ff5722;
    font-size: 9px;
    flex-shrink: 0;
}

.vitrin-card-location span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Fiyat bölümü - altta tek başına */
.vitrin-card-price-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.vitrin-card-price {
    font-size: 14px;
    font-weight: 800;
    color: #1976d2;
    position: relative;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.08), rgba(0, 150, 136, 0.06));
    border-radius: 8px;
    border: 1px solid rgba(0, 188, 212, 0.2);
    box-shadow: 0 2px 4px rgba(0, 188, 212, 0.1);
}

/* Profesyonel turkuaz highlight efekti */
.vitrin-card-price::before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #00bcd4 15%, 
        #4dd0e1 50%, 
        #00bcd4 85%, 
        transparent 100%
    );
    border-radius: 1px;
    opacity: 0.7;
}

/* Ek parlama efekti */
.vitrin-card-price::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        transparent 50%, 
        rgba(0, 188, 212, 0.1) 100%
    );
    border-radius: 8px;
    pointer-events: none;
}

/* Tablet ve üzeri için daha büyük boyutlar */
@media (min-width: 768px) {
    .vitrin-card-year-location {
        margin-bottom: 10px;
        gap: 10px;
    }
    
    .vitrin-card-year {
        font-size: 11px;
    }
    
    .vitrin-card-location {
        font-size: 11px;
        gap: 5px;
    }
    
    .vitrin-card-location i {
        font-size: 10px;
    }
    
    .vitrin-card-price {
        font-size: 16px;
        padding: 7px 14px;
    }
    
    .vitrin-card-price::before {
        height: 3px;
        left: 10px;
        right: 10px;
    }
}

/* Desktop için en büyük boyutlar */
@media (min-width: 1024px) {
    .vitrin-card-year-location {
        margin-bottom: 12px;
        gap: 12px;
    }
    
    .vitrin-card-year {
        font-size: 12px;
    }
    
    .vitrin-card-location {
        font-size: 12px;
        gap: 6px;
    }
    
    .vitrin-card-location i {
        font-size: 11px;
    }
    
    .vitrin-card-price {
        font-size: 18px;
        padding: 8px 16px;
    }
    
    .vitrin-card-price::before {
        height: 3px;
        left: 12px;
        right: 12px;
    }
}

/* Satıldı overlay */
.vitrin-card-sold {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(108, 117, 125, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    backdrop-filter: blur(2px);
}

.vitrin-card-sold span {
    background: rgba(52, 58, 64, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Loading state */
.vitrin-loading {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.vitrin-loading i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #ddd;
    animation: spin 1s linear infinite;
}

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

/* No listings state */
.vitrin-no-listings {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.vitrin-no-listings i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #ddd;
}

.vitrin-no-listings h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.vitrin-no-listings p {
    font-size: 16px;
    color: #666;
}

.card-image-container {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

/* Responsive Image Heights */
.mobile-view .card-image-container {
    height: 180px;
}

.tablet-view .card-image-container {
    height: 200px;
}

.desktop-view .card-image-container {
    height: 200px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-overlay {
    position: absolute;
    top: 8px;
    right: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.modern-car-card:hover .card-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: rgba(61, 249, 251, 0.9);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

/* Card content and text styles */
.card-content {
    padding: 12px;
    display: block !important;
    background-color: white;
    z-index: 5;
}

.card-header {
    margin-bottom: 8px;
}

.card-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-wrap: break-word !important;
    max-height: 2.6em !important;
}

.card-details {
    font-size: 14px !important;
    color: #7f8c8d !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.detail-item {
    display: block !important;
    margin-bottom: 4px !important;
    color: #7f8c8d !important;
    font-size: 14px !important;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.card-location-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #7f8c8d;
}

.card-price {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1e3a8a !important;
    display: block !important;
}

.sold-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
}

/* Featured badge */
.featured-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    z-index: 5;
}

/* Tag badge */
.tag-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    color: white;
    padding: 3px 6px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    z-index: 5;
}

.quick-view-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* Featured Badge - Sol üst (fotoğraf üzerinde) */
.featured-badge {
    position: absolute;
    top: clamp(6px, 1.5vw, 12px);
    left: clamp(6px, 1.5vw, 12px);
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: clamp(2px, 0.5vw, 6px) clamp(4px, 1vw, 8px);
    border-radius: var(--border-radius);
    font-size: clamp(8px, 2vw, 11px);
    font-weight: 600;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: clamp(2px, 0.5vw, 4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* TAG Badge'ler - Card info alanının sağ üstünde */
.tag-badge {
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    padding: clamp(2px, 0.5vw, 6px) clamp(4px, 1vw, 8px);
    border-radius: var(--border-radius);
    font-size: clamp(8px, 2vw, 11px);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: clamp(2px, 0.5vw, 4px);
    z-index: 5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.tag-badge.acil { background: #e74c3c !important; }
.tag-badge.firsat { background: #f39c12 !important; }
.tag-badge.yeni { background: #27ae60 !important; }

/* SATILDI Overlay */
.modern-car-card.sold {
    opacity: 0.6;
    background: #f5f5f5;
    pointer-events: none;
}

.modern-car-card.sold .card-image {
    filter: grayscale(100%);
}

.sold-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: clamp(6px, 1.5vw, 12px) clamp(8px, 2vw, 16px);
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: clamp(12px, 3vw, 16px);
    z-index: 10;
}

/* TAG'li kartlar - Hafif yeşil arka plan (SATILDI hariç) */
.modern-car-card.has-tag:not(.sold) {
    background: #f0f8f0;
}

/* Simple responsive cards - back to basics */
@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }

    .modern-car-card {
        margin-bottom: 16px;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .card-content {
        padding: 12px;
    }

    .card-image-container {
        height: 180px;
    }

    .card-title {
        font-size: 16px;
        margin-bottom: 8px;
        font-weight: 600;
        -webkit-line-clamp: 2;
    }

    .card-details {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .card-price {
        font-size: 16px;
        font-weight: 700;
    }

    .card-location {
        font-size: 12px;
    }
}

@media (min-width: 769px) {
    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 20px;
        padding: 0 20px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .modern-car-card {
        margin-bottom: 20px;
        border-radius: 14px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .modern-car-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .card-content {
        padding: 16px;
    }

    .card-image-container {
        height: 200px;
    }

    .card-title {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .card-details {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .card-price {
        font-size: 18px;
        font-weight: 700;
    }

    .card-location {
        font-size: 14px;
    }
}

.detail-item:last-child {
    margin-bottom: 0;
}

/* Responsive Detail Items */
.detail-item {
    color: var(--text-secondary);
    font-size: clamp(11px, 2.75vw, 14px);
    line-height: 1.3;
    display: block;
    margin-bottom: var(--spacing-xs);
    word-wrap: break-word;
    hyphens: auto;
}

.detail-item:last-child {
    margin-bottom: 0;
}

/* Card Details Container */
.card-details {
    margin-bottom: clamp(4px, 1vw, 8px);
    display: flex;
    flex-direction: column;
    gap: clamp(4px, 1vw, 8px);
}

/* Card Location Price - Mobile Listings Style */
.card-location-price {
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    padding-right: 0;
}

.card-location {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-right: var(--spacing-sm);
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1 auto;
    min-width: 0;
    font-weight: 400;
}

.card-location i {
    color: var(--primary);
    flex-shrink: 0;
}

.location-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

/* ===== PERFECT VISIBILITY GUARANTEE ===== */
.modern-car-card {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.card-content {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.card-info {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

.card-title {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.card-specs {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

.card-price {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.card-location {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

.card-location span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-price {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: #1e3a8a;
    white-space: nowrap;
    margin-left: auto;
    flex: 0 0 auto;
}

/* Professional Homepage Styles */

/* Header Professional Styles - Responsive */
.header-professional {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(61, 249, 251, 0.12) 0%, 
        rgba(61, 249, 251, 0.08) 25%, 
        rgba(255, 255, 255, 0.95) 60%, 
        white 100%);
    border-bottom: 1px solid rgba(61, 249, 251, 0.12);
    box-shadow: 0 2px 8px rgba(61, 249, 251, 0.06);
    z-index: 1000;
    height: var(--header-height);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.header-content {
    height: var(--header-height);
    display: flex;
    align-items: center;
}

/* Mobile Header - Responsive */
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Bu CSS'i devre dışı bırak - style.css'teki tanım kullanılsın */
/*
.mobile-hamburger {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    background: none;
    border: none;
    padding: var(--spacing-sm);
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    width: clamp(40px, 10vw, 48px);
    height: clamp(40px, 10vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
}
*/

/* Bu hover ve span tanımlarını da devre dışı bırak */
/*
.mobile-hamburger:hover {
    background: var(--background);
}

.mobile-hamburger span {
    width: clamp(16px, 4vw, 20px);
    height: clamp(1.5px, 0.4vw, 2px);
    background: var(--text-primary);
    border-radius: clamp(0.5px, 0.2vw, 1px);
    transition: all 0.3s ease;
}
*/

.mobile-logo .logo-img {
    height: clamp(32px, 8vh, 40px);
    width: auto;
    max-width: clamp(80px, 20vw, 120px);
}

.mobile-cta {
    background: linear-gradient(135deg, #3df9fb, #2a5298);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    box-shadow: 0 2px 8px rgba(61, 249, 251, 0.3);
}

.mobile-cta:hover {
    background: linear-gradient(135deg, #2a5298, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(61, 249, 251, 0.4);
}

/* Desktop Header */
.desktop-header {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo-container .logo-img {
    height: 48px;
    width: auto;
}

.location-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    border-radius: 12px;
    color: #475569;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.header-center {
    flex: 1;
    max-width: 480px;
}

.search-container {
    display: flex;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-container:focus-within {
    border-color: #3df9fb;
    box-shadow: 0 0 0 3px rgba(61, 249, 251, 0.1);
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #1e293b;
    outline: none;
}

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

.search-btn {
    background: linear-gradient(135deg, #3df9fb, #2a5298);
    color: white;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #2a5298, #1e40af);
}

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

/* User Area Styles */
.user-area {
    position: relative;
}

.logged-out {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.login-btn {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.login-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.register-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.register-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.logged-in {
    position: relative;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-profile:hover {
    background: #f8fafc;
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3df9fb, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.user-status {
    font-size: 12px;
    color: #64748b;
}

/* ESKİ USER DROPDOWN TAMAMEN KALDIRILDI - DESKTOP-PRO.CSS KULLANILIYOR */

.cta-button-pro {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3df9fb, #2a5298);
    color: white;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-button-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 249, 251, 0.4);
}

/* Hero Slider Professional - Fixed Position */
.hero-slider-pro {
    position: relative;
    height: 240px;
    margin-top: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 0 0 24px 24px;
}

.slider-container-pro {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

/* Homepage-pro.css'deki slide stilleri daha spesifik yapıldı */
.homepage-slide {
    flex: 0 0 100%;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3df9fb, #2a5298);
}

.slide-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), transparent);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.slide-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.4;
}

.slide-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.slide-btn.primary {
    background: white;
    color: #2a5298;
}

.slide-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.slide-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.slide-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Slider Navigation */
.slider-nav-pro {
    position: absolute;
    top: 50%;
    left: 24px;
    right: 24px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.nav-btn-pro {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #2a5298;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(8px);
}

.nav-btn-pro:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.slider-indicators-pro {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Support Section Professional - Improved */
.support-section-pro {
    padding: 20px 0;
    background: transparent;
}

.support-cta-pro {
    position: relative;
    background: linear-gradient(135deg, #3df9fb, #2a5298);
    border-radius: 16px;
    padding: 16px 20px;
    color: white;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(61, 249, 251, 0.2);
    cursor: pointer;
    max-width: 100%;
}

.support-cta-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.support-cta-pro::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(0deg);
    transition: all 0.5s ease;
    pointer-events: none;
    opacity: 0;
}

.support-cta-pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(61, 249, 251, 0.35);
}

.support-cta-pro:hover::after {
    transform: rotate(360deg);
    opacity: 1;
}

.support-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

.support-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.support-text {
    flex: 1;
    min-width: 0;
}

.support-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}

.support-subtitle {
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
    font-weight: 500;
}

.support-action {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.support-number {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.support-action svg {
    transition: transform 0.3s ease;
}

.support-cta-pro:hover .support-action svg {
    transform: translate(2px, -2px);
}

.support-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

/* Mobile User Info */
.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 16px;
}

.mobile-user-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3df9fb, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.mobile-user-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-user-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 16px;
}

.mobile-user-email {
    font-size: 14px;
    color: #64748b;
}

/* Responsive Design */
@media (min-width: 768px) {
    .mobile-header {
        display: none;
    }
    
    .desktop-header {
        display: flex;
    }
    
    .hero-slider-pro {
        height: 280px;
        border-radius: 0 0 32px 32px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-subtitle {
        font-size: 18px;
    }
    
    .support-content {
        gap: 20px;
    }
    
    .support-icon {
        width: 48px;
        height: 48px;
    }
    
    .support-title {
        font-size: 18px;
    }
    
    .support-subtitle {
        font-size: 14px;
    }
    
    .support-number {
        font-size: 16px;
    }
    
    .slider-nav-pro {
        left: 32px;
        right: 32px;
    }
    
    .nav-btn-pro {
        width: 48px;
        height: 48px;
    }
}

@media (min-width: 1024px) {
    .hero-slider-pro {
        height: 400px;
    }
    
    .slide-title {
        font-size: 48px;
    }
    
    .slide-subtitle {
        font-size: 22px;
    }
}

/* Animation for logged-in state */
.user-logged-in-animation {
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Main Content Spacing */
.main-content {
    padding-top: 0;
    margin-top: 72px;
}

.hero-slider-pro + .support-section-pro {
    margin-top: 16px;
}

/* Default Avatar System */
.default-avatar {
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

/* ===== İLANLAR (RECENT LISTINGS) SECTION ===== */

.recent-section {
    padding: 25px 0;
    background: #f8fafc;
}

/* Recent Grid - 3 column layout (farklı olarak) */
.recent-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0;
    margin: 0;
}

@media (min-width: 768px) {
    .recent-grid-container {
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .recent-grid-container {
        gap: 20px;
    }
}

/* Recent Card Styling */
.recent-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid #e2e8f0;
}

.recent-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

/* Recent Card Image */
.recent-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
    background: #f1f5f9;
}

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

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

/* Recent Card Content */
.recent-card-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recent-card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.recent-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.recent-category {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

/* Recent Specs */
.recent-specs {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.specs-item {
    display: block;
}

/* Recent Location-Year */
.recent-location-year {
    font-size: 11px;
    font-weight: 500;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Recent Price */
.recent-price {
    font-size: 15px;
    font-weight: 700;
    color: #059669;
    text-align: center;
    padding: 12px 0 6px 0;
    position: relative;
    margin-top: auto; /* Price'i alta yapıştır */
}

.recent-price::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3dd5f3, transparent);
    border-radius: 2px;
}

/* Recent Tags/Badges - Kompakt stil (ÖNE ÇIKANLAR gibi) */
.recent-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 2;
}

.recent-badge {
    position: absolute;
    font-size: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: all 0.3s ease;
}

/* VİTRİN badge - ÖNE ÇIKANLAR gibi küçük kompakt */
.recent-badge.tag[data-tag="VİTRİN"],
.recent-badge.featured {
    top: 0;
    left: 0;
    padding: 2px 4px 3px 4px;
    background: linear-gradient(135deg, #ff8c42 0%, #ff7315 50%, #ff6b00 100%);
    font-size: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    z-index: 3;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 85%);
    border-radius: 1px 1px 0 0;
    transition: all 0.3s ease;
}

/* Sağ taraf etiketleri - genel stil (ÖNE ÇIKANLAR gibi) */
.recent-badge.tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 3px 4px 3px;
    min-width: 12px;
    text-align: center;
    font-size: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    z-index: 3;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 90%, 0 75%);
    border-radius: 1px 1px 0 0;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #607d8b 0%, #546e7a 50%, #455a64 100%);
}

/* YENİ badge - yeşil */
.recent-badge.tag[data-tag="YENİ"],
.recent-badge.tag[data-tag="YENI"] {
    background: linear-gradient(135deg, #00e676 0%, #00c853 50%, #00b248 100%);
}

/* ACİL badge - kırmızı */
.recent-badge.tag[data-tag="ACİL"],
.recent-badge.tag[data-tag="ACIL"] {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 50%, #c62828 100%);
}

/* FIRSAT badge - sarı */
.recent-badge.tag[data-tag="FIRSAT"] {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 50%, #ff8f00 100%);
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* SATILDI badge - gizle (kartın kendi overlay'i var) */
.recent-badge.tag[data-tag="SATILDI"] {
    display: none;
}

/* VİTRİN kartları için AÇIK YEŞİL arka plan (ÖNE ÇIKANLAR gibi) */
.recent-card.featured-card {
    background: #e8f5e8 !important; /* Açık yeşil */
    border: 1px solid #c8e6c9;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15);
}

.recent-card.featured-card:hover {
    background: #dcedc8 !important; /* Hover'da biraz daha yeşil */
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.25);
    border-color: #a5d6a7;
    transform: translateY(-2px);
}

/* VİTRİN kartlarının içerik alanını da yeşil yap */
.recent-card.featured-card .recent-card-content {
    background: #e8f5e8 !important; /* İçerik alanı da yeşil */
}

.recent-card.featured-card:hover .recent-card-content {
    background: #dcedc8 !important; /* Hover'da içerik alanı da yeşil */
}

/* Sold Card Overlay */
.recent-card.sold {
    opacity: 0.7;
    filter: grayscale(0.3);
}

.recent-card-sold {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    backdrop-filter: blur(4px);
}

/* Loading States */
.recent-loading, .recent-error, .recent-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: #64748b;
    grid-column: 1 / -1;
}

.recent-loading .loading-icon,
.recent-error .error-icon,
.recent-empty .empty-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: #94a3b8;
}

.recent-loading .loading-icon {
    animation: pulse 2s infinite;
}

.retry-btn {
    margin-top: 12px;
    padding: 8px 16px;
    background: #3dd5f3;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.retry-btn:hover {
    background: #22c1e0;
}

/* Tablet adjustments */
@media (min-width: 768px) {
    .recent-card-content {
        padding: 14px;
        gap: 10px;
    }
    
    .recent-title {
        font-size: 14px;
    }
    
    .recent-category {
        font-size: 12px;
    }
    
    .recent-specs {
        font-size: 12px;
    }
    
    .recent-location-year {
        font-size: 12px;
    }
    
    .recent-price {
        font-size: 16px;
    }
    
    .recent-badge.tag[data-tag="VİTRİN"],
    .recent-badge.featured {
        font-size: 6px;
        padding: 3px 5px 4px 5px;
    }
    
    .recent-badge.tag {
        font-size: 6px;
        padding: 3px 4px 5px 4px;
        min-width: 14px;
    }
    
    /* SATILDI badge tablet için de gizli */
}

/* Desktop adjustments */
@media (min-width: 1024px) {
    .recent-card-content {
        padding: 16px;
        gap: 12px;
    }
    
    .recent-title {
        font-size: 15px;
    }
    
    .recent-category {
        font-size: 13px;
    }
    
    .recent-specs {
        font-size: 13px;
    }
    
    .recent-location-year {
        font-size: 13px;
    }
    
    .recent-price {
        font-size: 17px;
    }
    
    .recent-badge.tag[data-tag="VİTRİN"],
    .recent-badge.featured {
        font-size: 7px;
        padding: 4px 6px 5px 6px;
    }
    
    .recent-badge.tag {
        font-size: 7px;
        padding: 4px 5px 6px 5px;
        min-width: 16px;
    }
    
    /* SATILDI badge desktop için de gizli */
}

/* ============================================
   VİTRİN + ACİL PREMİUM TASARIM (ANASAYFA)
   ============================================ */

/* VİTRİN + ACİL → PREMİUM GRADIENT TASARIM */
.vitrin-card.featured.tag-acil:not(.sold),
.vitrin-card.featured[data-tag*="ACİL"]:not(.sold),
.vitrin-card[data-featured="1"].tag-acil:not(.sold),
.vitrin-card[data-featured="1"][data-tag*="ACİL"]:not(.sold) {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 50%, #fff0f0 100%) !important;
    border: none !important;
    box-shadow: 
        0 4px 20px rgba(255, 100, 0, 0.5),
        0 8px 32px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    position: relative !important;
    overflow: visible !important;
}

.vitrin-card.featured.tag-acil:not(.sold)::before,
.vitrin-card.featured[data-tag*="ACİL"]:not(.sold)::before,
.vitrin-card[data-featured="1"].tag-acil:not(.sold)::before,
.vitrin-card[data-featured="1"][data-tag*="ACİL"]:not(.sold)::before {
    content: '' !important;
    position: absolute !important;
    top: -3px !important;
    left: -3px !important;
    right: -3px !important;
    bottom: -3px !important;
    background: linear-gradient(135deg, #ffd700, #ff6b6b, #ffd700) !important;
    background-size: 200% 200% !important;
    border-radius: inherit !important;
    z-index: -1 !important;
    animation: vitrin-premium-glow 3s ease infinite !important;
}

@keyframes vitrin-premium-glow {
    0%, 100% { background-position: 0% 50%; opacity: 0.8; }
    50% { background-position: 100% 50%; opacity: 1; }
}

.vitrin-card.featured.tag-acil:not(.sold):hover,
.vitrin-card.featured[data-tag*="ACİL"]:not(.sold):hover,
.vitrin-card[data-featured="1"].tag-acil:not(.sold):hover,
.vitrin-card[data-featured="1"][data-tag*="ACİL"]:not(.sold):hover {
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow: 
        0 8px 32px rgba(255, 100, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

/* VİTRİN + ACİL içerik alanı */
.vitrin-card.featured.tag-acil:not(.sold) .vitrin-card-content,
.vitrin-card.featured[data-tag*="ACİL"]:not(.sold) .vitrin-card-content,
.vitrin-card[data-featured="1"].tag-acil:not(.sold) .vitrin-card-content,
.vitrin-card[data-featured="1"][data-tag*="ACİL"]:not(.sold) .vitrin-card-content {
    background: transparent !important;
}
