.elementor-198 .elementor-element.elementor-element-05122d7{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-198 .elementor-element.elementor-element-87c5ac5{width:var( --container-widget-width, 7.87% );max-width:7.87%;--container-widget-width:7.87%;--container-widget-flex-grow:0;}.elementor-198 .elementor-element.elementor-element-87c5ac5.elementor-element{--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for shortcode, class: .elementor-element-aa20d70 */.container {
    max-width: 900px;
    margin: auto;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.bg-light {
    background-color: #f8f9fa !important;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    color: #333;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

p strong {
    color: #0073aa;
}/* End custom CSS */
/* Start custom CSS *//* 🔹 Produkt-Detail Container */
.produkt-detail {
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 40px auto;
    background-color: #333; /* Dunkler Hintergrund */
    color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
    align-items: center;
    gap: 20px;
}

/* 🔹 Linke Seite (Produktbild) */
.produkt-detail-left {
    flex: 1;
    max-width: 400px;
}

.produkt-detail-left img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* 🔹 Hover-Effekt für das Bild */
.produkt-detail-left img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* 🔹 Rechte Seite (Produktinformationen) */
.produkt-detail-right {
    flex: 1;
    min-width: 250px;
}

/* 🔹 Produktname */
.produkt-detail-right h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 🔹 Preis */
.produkt-preis {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f8c23a; /* Goldene Farbe für Preis */
    margin-bottom: 15px;
}

/* 🔹 Technische Daten */
.produkt-techdata {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #ddd;
}

/* 🔹 Responsive Anpassungen */
@media (max-width: 768px) {
    .produkt-detail {
        flex-direction: column;
        text-align: center;
    }

    .produkt-detail-left img {
        max-width: 300px;
    }

    .produkt-detail-right h1 {
        font-size: 1.8rem;
    }

    .produkt-preis {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .produkt-detail {
        padding: 20px;
    }

    .produkt-detail-left img {
        max-width: 250px;
    }

    .produkt-detail-right h1 {
        font-size: 1.6rem;
    }

    .produkt-preis {
        font-size: 1.3rem;
    }
}
#toggleTechInfo {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
}

#toggleTechInfo:hover {
    background-color: #005a8e;
}/* End custom CSS */