/* Placeholder Image Styles */
.image-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    text-align: center;
    min-height: 200px;
}

.image-placeholder::before {
    content: "📷 Görsel Yükleniyor...";
    opacity: 0.7;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Specific placeholder styles for different sections */
.car-placeholder {
    background-color: #e3f2fd;
}

.car-placeholder::before {
    content: "🚗 Araç Görseli Yükleniyor...";
}

.business-placeholder {
    background-color: #f3e5f5;
}

.business-placeholder::before {
    content: "🏪 İşletme Görseli Yükleniyor...";
}

.estate-placeholder {
    background-color: #e8f5e8;
}

.estate-placeholder::before {
    content: "🏠 Emlak Görseli Yükleniyor...";
}

/* Error state for missing images */
.image-error {
    background: #ffebee;
    color: #c62828;
    border: 2px dashed #ef5350;
}

.image-error::before {
    content: "❌ Görsel bulunamadı";
} 