/**
 * Manufacturer Logo Styles
 */

.product-manufacturer-logo {
    margin-bottom: 10px;
    text-align: right;
}

.manufacturer-logo-img {
    max-width: 80px;
    max-height: 40px;
    height: auto;
    width: auto;
    display: inline-block;
}

/* Larger logo on product detail page */
.catalog-product-view .product-manufacturer-logo {
    margin-bottom: 15px;
}

.catalog-product-view .manufacturer-logo-img {
    max-width: 150px;
    max-height: 60px;
}

/* Optional: Hover-Effekt */
.product-item:hover .manufacturer-logo-img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .manufacturer-logo-img {
        max-width: 60px;
        max-height: 30px;
    }
    
    .catalog-product-view .manufacturer-logo-img {
        max-width: 100px;
        max-height: 45px;
    }
}
