/* --- ÜRÜN KARTLARI HOVER GÖLGESİ VE NİZAM --- */
.urun {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    transition: box-shadow 0.3s ease !important;
    overflow: hidden !important;
}
/* Sadece hover gölgesini kırmızıya çevirdik */
.urun:hover {
    box-shadow: 0 10px 30px rgba(201, 46, 39, 0.15) !important; /* Hafif kırmızı soft gölge */
    border-color: #c92e27 !important; /* Kenarlık da marka kırmızısı olsun */
}
.urun .card-body { padding: 12px !important; display: flex !important; flex-direction: column !important; flex-grow: 1 !important; }
.urun_ismi { height: 44px !important; overflow: hidden !important; font-size: 14px !important; line-height: 22px !important; display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; }
.urun_fiyatlar { margin-top: auto !important; color: #c92e27 !important; font-weight: 800 !important; font-size: 17px !important; }