/* ---Kart tasarımı--- */
body {
    background-color: white;
}

.card {
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Kenarlardan taşmayı önler */
}

.card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card-img-top {
    /* 'contain' sayesinde resmin tamamı (logo ve çay dahil) kırpılmadan görünür */
    object-fit: contain; 
    background-color: #ffffff; 
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    /* Resimlerin dikeyde hizalı durması için yüksekliği koruduk */
    height: 250px; 
    width: 100%;
    padding: 10px; /* Resim kenarlara çok yapışmasın istersen padding ekleyebilirsin */
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding: 1.25rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

/* --- MOBİL AYARLAR --- */
@media (max-width: 576px) {
    .card-img-top {
        /* Mobilde resmin daha iyi seçilmesi için yüksekliği biraz artırdık */
        height: 200px; 
        object-fit: contain;
    }

    .card-title {
        font-size: 1rem;
    }

    .urun-fiyat {
        font-size: 1.1rem !important;
    }
}