/*======================================
Theme Name: WordPress Child Theme Atomion
Theme URI: https://marketpress.de
Description: Das Atomion Child Theme
Version: 1.0
Author: MarketPress
Author URI: https://marketpress.de
Template: wordpress-theme-atomion
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
======================================*/

/* You can start adding your own styles here. Use !important to overwrite styles if needed. */

/* -------------------------------
   Kategorie-Text unter den Produkten (Atomio)
---------------------------------*/
.category-bottom-text {
    margin-top: 40px;               /* Abstand über dem Text */
    padding-top: 20px;              /* etwas Innenabstand */
    border-top: 1px solid #e5e5e5;  /* dezente Trennungslinie */
    font-size: 1em;                  /* Schriftgröße */
    color: #444;                     /* dunkles Grau für Lesbarkeit */
    line-height: 1.6;                /* angenehmer Zeilenabstand */
}

/* Optional: Links im Text an Atomio-Stil anpassen */
.category-bottom-text a {
    color: #007cba;                  /* Linkfarbe ähnlich Atomio-Buttons */
    text-decoration: underline;      /* Standard Link-Stil */
}

.category-bottom-text a:hover {
    color: #005f8d;                  /* dunkler beim Hover */
}


/* ================================
   WooCommerce Blockpreise anpassen
   ================================ */

/* Wort "entspricht" kleiner machen */
.wp-block-woocommerce-product-best-sellers.mein-bestseller-stil ul.products li.product span.unit-prefix,
.wp-block-woocommerce-handpicked-products.mein-handpicked-stil ul.products li.product span.unit-prefix {
    font-size: 0.8rem !important; /* gleiche Größe wie Grundpreis */
    color: #555; /* optional: dezente Farbe */
}

/* Hauptpreis */
.wp-block-woocommerce-product-best-sellers.mein-bestseller-stil ul.products li.product span.price,
.wp-block-woocommerce-handpicked-products.mein-handpicked-stil ul.products li.product span.price {
    font-size: 0.9rem !important;
}

/* Grundpreis */
.wp-block-woocommerce-product-best-sellers.mein-bestseller-stil ul.products li.product span.woocommerce-Price-amount.amount,
.wp-block-woocommerce-handpicked-products.mein-handpicked-stil ul.products li.product span.woocommerce-Price-amount.amount {
    font-size: 0.8rem !important;
    color: #555;
}

/* Einheit / kg */
.wp-block-woocommerce-product-best-sellers.mein-bestseller-stil ul.products li.product span.unit,
.wp-block-woocommerce-handpicked-products.mein-handpicked-stil ul.products li.product span.unit {
    font-size: 0.8rem !important;
    color: #555;
}
/* "entspricht" kleiner darstellen */
p.price.price-unit.smaller.wc-gzd-additional-info.wc-gzd-additional-info-loop {
    font-size: 0.8rem !important; /* gewünschte Größe */
    color: #555; /* optional: dezente Farbe */
    margin: 0; /* optional, falls Abstand angepasst werden soll */
}


/* "inkl. Mwst." ausblenden weil oft doppelt angezeigt*/
p.wc-gzd-additional-info.tax-info {
    display: none !important;
}

/* "inkl. Mwst." auf der Produktseite ausblenden */
.single-product span.wc-gzd-additional-info.tax-info {
    display: none !important;
}