.elementor-6798 .elementor-element.elementor-element-5aed7ada{--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 );}/* Start custom CSS for text-editor, class: .elementor-element-14681a98 *//* --- 1. ÜBERSCHRIFTEN ÜBERSETZEN & VERKLEINERN --- */

/* "Product name" -> "Produktname" */
.wishlist_table thead th.product-name {
    font-size: 0 !important; /* Original verstecken */
}
.wishlist_table thead th.product-name::before {
    content: "Produktname";       /* Neuer Text */
    font-size: 13px !important;   /* <-- Schrift jetzt kleiner */
    font-weight: bold !important;
    color: #333333 !important;
    display: block !important;
}

/* "Unit price" -> "Preis" */
.wishlist_table thead th.product-price {
    font-size: 0 !important;
}
.wishlist_table thead th.product-price::before {
    content: "Preis";
    font-size: 13px !important;   /* <-- Schrift jetzt kleiner */
    font-weight: bold !important;
    color: #333333 !important;
    display: block !important;
}

/* "Stock status" -> "Verfügbarkeit" */
.wishlist_table thead th.product-stock-status {
    font-size: 0 !important;
}
.wishlist_table thead th.product-stock-status::before {
    content: "Verfügbarkeit";
    font-size: 13px !important;   /* <-- Schrift jetzt kleiner */
    font-weight: bold !important;
    color: #333333 !important;
    display: block !important;
}

/* --- 2. MELDUNG "LEERE LISTE" ÜBERSETZEN --- */

/* "No products added to the wishlist" -> Deutsch */
td.wishlist-empty, 
.wishlist-empty {
    font-size: 0 !important;      /* Original verstecken */
    padding: 30px !important;     /* Etwas Platz schaffen */
}

td.wishlist-empty::before,
.wishlist-empty::before {
    content: "Keine Produkte auf der Wunschliste"; /* Ihr Wunschtext */
    font-size: 16px !important;   /* Größe der Meldung */
    color: #555555 !important;
    display: block !important;
    text-align: center !important; /* Text zentrieren */
}/* End custom CSS */