/* =====================================================
   Aurora-Garten – Plant Card
===================================================== */

/* ================================
   Plant-Kachel
================================ */

.plant-card {
    position: relative;
    background: #FAFBF8;
    padding: 30px 40px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 190px;
}

/* Hover jetzt über Link */
.plant-card-link:hover .plant-card {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.07);
}

/* ================================
   Bildbereich
================================ */

.plant-image {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #E8ECE4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================
   Inhalt
================================ */

.plant-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
}

.plant-info h2 {
    margin-bottom: 12px;
    font-size: 21px;
    font-weight: 600;
}

.plant-description {
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.plant-price {
    font-weight: 600;
    font-size: 17px;
}

.plant-stock {
    font-weight: 500;
    font-size: 14px;
    color: #2B2B2B;
}