/* Gitterlayout für Produkte */
.manufacturer-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Einzelne Produktkarte */
.manufacturer-product-card {
    border: 2px solid #009999;
    border-radius: 8px;
    padding: 15px;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.manufacturer-product-card:hover {
    box-shadow: 0 0 10px rgba(0, 153, 153, 0.3);
}

/* Bildbereich */
.product-image {
    text-align: center;
    margin-bottom: 10px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Produktname */
.product-name {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

/* Kurzbeschreibung */
.product-short-desc {
    font-size: 0.95rem;
    color: #555;
}

/* Falls kein Bild vorhanden ist */
.no-image {
    width: 100%;
    height: 160px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.9rem;
    border-radius: 4px;
}
/* Responsive Anpassung */
@media (max-width: 768px) {
    .manufacturer-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .manufacturer-product-card {
        padding: 10px;
    }

    .product-name {
        font-size: 1rem;
    }

    .product-short-desc {
        font-size: 0.85rem;
    }
}

/* "Neu"-Badge */
.product-badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #009999;
    color: #fff;
    padding: 5px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10;
}

/* Container mit Positionierung */
.manufacturer-product-card {
    position: relative;
}
