
<!-- Produktseite -->
.dpp-product-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.product-title {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.dpp-product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dpp-product-gallery .gallery-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.dpp-product-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

.dpp-product-details p {
    font-size: 1.1em;
    margin: 5px 0;
}

.swiper-wrapper {
    min-height: 482px;
}

.toggle-heading {
    font-size: 1.2em;
    margin-top: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.toggle-content {
    display: none;
    margin-top: 10px;
}

.toggle-content ul {
    list-style-type: none;
    padding-left: 20px;
}

.toggle-icon {
    font-size: 1.5em;
    font-weight: bold;
}

@media (max-width: 768px) {
    .dpp-product-gallery {
        justify-content: center;
    }

    .dpp-product-gallery .gallery-item img {
        max-width: 100%;
    }

    .product-title {
        font-size: 1.5em;
    }
    .swiper-wrapper {
        min-height: 292px;
    }
}

.swiper-slide.swiper-slide-active .fusion-carousel-item-wrapper {
    text-align: center!important;
}

/* Container für die Bilder */
.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* Stil für jedes Bild */
.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Stil für den Image-Viewer */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

/* Produktbilder */
.product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
