/* ========================================
   İlanlar Listesi Sayfası Özel Stilleri
   ======================================== */

/* İlan Kartı */
.ilan-kart { 
    transition: transform 0.2s, box-shadow 0.2s; 
    border: none; 
    border-radius: 12px; 
    overflow: hidden; 
}

.ilan-kart:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}

.ilan-gorsel { 
    aspect-ratio: 16/9; 
    object-fit: cover; 
    width: 100%; 
}

/* Badge'ler */
.badge-satildi { 
    position: absolute; 
    top: 10px; 
    right: 10px; 
    font-size: 0.9rem; 
    padding: 8px 12px; 
    z-index: 10; 
}

.badge-tip { 
    position: absolute; 
    top: 10px; 
    left: 10px; 
    font-size: 0.8rem; 
    padding: 5px 10px; 
    z-index: 10; 
}

/* ========================================
   Placeholder Görseller - İlan Tipine Göre
   ======================================== */
.ilan-gorsel-placeholder {
    aspect-ratio: 16/9;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 0;
}

.placeholder-urun {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.placeholder-hizmet {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
}

.placeholder-isyeri {
    background: linear-gradient(135deg, #0dcaf0 0%, #0aa2c0 100%);
}

.placeholder-genel {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.ilan-gorsel-placeholder .icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: currentColor;
}

.icon-sm { width: 0.875em; height: 0.875em; }
.icon-lg { width: 1.25em; height: 1.25em; }
.icon-xl { width: 1.5em; height: 1.5em; }
.icon-2x { width: 2em; height: 2em; }
.icon-3x { width: 3em; height: 3em; }

.ilan-gorsel-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.95;
}
