/* =====================================================
   Aurora-Garten – Plants Seite
===================================================== */

.shop-content h1 {
    margin-bottom: 60px;
    text-align: center;
}


/* ================================
   Kategorie Grid (3 feste Spalten)
================================ */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.category-card {
    background: #FAFBF8;
    padding: 35px 25px;
    border-radius: 14px;
    text-decoration: none;
    color: #1e293b;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.category-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-count {
    font-size: 14px;
    color: #64748b;
}

.back-to-categories {
    display: inline-block;
    margin-bottom: 30px;
    text-decoration: none;
    color: #1F4FBF;
    font-weight: 500;
    transition: 0.2s ease;
}

.back-to-categories:hover {
    opacity: 0.8;
}


/* ================================
   Produktliste
================================ */

.product-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 900px;
}


/* ================================
   Plant Card
================================ */

.plant-card {
    position: relative;
    background: #FAFBF8;
    padding: 25px 30px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plant-card:hover {
    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: 10px;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plant-image-placeholder {
    font-size: 40px;
}


/* ================================
   Inhalt
================================ */

.plant-card h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
}

.plant-price {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.plant-location-hint {
    font-size: 14px;
    color: #64748b;
    margin-top: 8px;
    margin-bottom: 16px;
}


/* ================================
   Responsive
================================ */

@media (max-width: 1100px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .category-grid {
        grid-template-columns: 1fr;
    }

    .plant-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .plant-image {
        width: 100%;
        height: 200px;
    }

}

.plant-card .button_1,
.plant-card .button_1:hover {
    text-decoration: none;
}