.elementor-179 .elementor-element.elementor-element-69b6c24{--display:flex;}.elementor-179 .elementor-element.elementor-element-69b6c24.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-179 .elementor-element.elementor-element-074f8f3.elementor-element{--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-179 .elementor-element.elementor-element-69b6c24{--width:262.784px;}.elementor-179 .elementor-element.elementor-element-074f8f3{width:var( --container-widget-width, 241.784px );max-width:241.784px;--container-widget-width:241.784px;--container-widget-flex-grow:0;}}/* Start custom CSS for shortcode, class: .elementor-element-074f8f3 *//* Galerie-Container */
.produkt-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

/* Einzelnes Produkt */
.produkt-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background-color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Linke Spalte (Bild) */
.produkt-left img {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Rechte Spalte (Name und Link) */
.produkt-right {
    flex: 1;
}
.produkt-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}
.produkt-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 5px;
    transition: background-color 0.2s;
}
.produkt-link:hover {
    background-color: #005177;
}

/* Paginierung */
.pagination {
    margin-top: 20px;
    text-align: center;
}
.pagination a {
    margin: 0 5px;
    padding: 8px 12px;
    text-decoration: none;
    color: #0073aa;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.pagination a:hover {
    background-color: #0073aa;
    color: #fff;
}
.pagination .current-page {
    margin: 0 5px;
    padding: 8px 12px;
    background-color: #0073aa;
    color: #fff;
    border-radius: 4px;
}/* End custom CSS */
/* Start custom CSS *//* 🔹 Mobile View Adjustments (max-width: 768px) */
@media (max-width: 768px) {
    .produkt-gallery {
        gap: 15px;
        margin: 20px 0;
        justify-content: center; /* Center items on mobile */
    }
    
    .produkt-item {
        flex: 1 1 100% !important; /* Full width on mobile */
        max-width: 350px; /* Limit maximum width */
        flex-direction: column; /* Stack image and content */
        padding: 12px;
        margin: 0 auto 15px; /* Center items and add bottom margin */
    }
    
    .produkt-left {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .produkt-left img {
        max-width: 100% !important; /* Allow image to fill container */
        height: auto;
    }
    
    .produkt-right {
        text-align: center; /* Center content on mobile */
    }
    
    .produkt-name {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .produkt-artikelname {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .produkt-link {
        width: 100%; /* Full width button */
        padding: 10px;
        font-size: 0.9rem;
        align-self: center; /* Center button */
    }
    
    /* Pagination adjustments */
    .pagination {
        flex-wrap: wrap;
        gap: 3px;
        margin-top: 20px;
    }
    
    .pagination a, 
    .pagination span {
        padding: 5px 8px;
        font-size: 0.9rem;
    }
}

/* 🔹 Extra Small Screens (max-width: 480px) */
@media (max-width: 480px) {
    .produkt-item {
        max-width: 100%; /* Full width on very small screens */
        padding: 10px;
    }
    
    .produkt-name {
        font-size: 0.95rem;
    }
    
    .produkt-artikelname {
        font-size: 0.8rem;
    }
    
    .produkt-link {
        padding: 8px;
        font-size: 0.85rem;
    }
}/* End custom CSS */