.bel-product-gallery {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image img {
    width: 100%;
    max-width: 300px; /* Maximale Breite des Hauptbildes */
    height: auto; /* Beibehaltung des Seitenverhältnisses */
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    object-fit: contain; /* Kein Zuschneiden, Original-Seitenverhältnis bleibt */
}

.thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.thumbnails img {
    width: 70px;  /* Einheitliche Größe für Thumbnails */
    height: 70px; /* Einheitliche Höhe */
    object-fit: cover; /* Behält das Seitenverhältnis bei, schneidet aber ggf. überstehende Teile ab */
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}

.thumbnails img:hover {
    transform: scale(1.1);
    border-color: #333;
}

/* Responsives Design für kleinere Bildschirme */
@media (max-width: 480px) {
    .thumbnails img {
        width: 50px; /* Kleinere Thumbnails auf Smartphones */
        height: 50px;
    }
}
