/**
 * Wellbabe Grundpreis Styles
 * Dezentes Design für die Grundpreis-Anzeige
 */

/* Grundpreis auf Shop-Seiten/Startseite - Format: (€53,52/kg) */
.wellbabe-unit-price.wellbabe-shop {
    display: inline-block;
    font-size: 0.75em;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
    margin-left: 4px;
}

/* Grundpreis auf Produktseite - Format: €43,94/kg, inkl. MwSt. zzgl. Versand. */
.wellbabe-unit-price.wellbabe-single {
    display: block;
    font-size: 0.70em;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 6px;
}

/* Grundpreis im Warenkorb - Format: 54,96 €/kg */
.wellbabe-unit-price.wellbabe-cart,
.wellbabe-unit-price.wellbabe-minicart {
    display: block;
    font-size: 0.78em;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 4px;
}

/* Grundpreis auf Checkout-Seite - Format: €43,94/kg */
.wellbabe-unit-price.wellbabe-checkout {
    display: block;
    font-size: 0.75em;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 4px;
}

/* Sicherstellen dass die Schriftart konsistent ist */
.wellbabe-unit-price {
    font-family: inherit;
}

/* Responsive Anpassungen für kleinere Bildschirme */
@media screen and (max-width: 768px) {
    .wellbabe-unit-price.wellbabe-shop {
        font-size: 0.72em;
        display: block;
        margin-left: 0;
        margin-top: 3px;
    }
    
    .wellbabe-unit-price.wellbabe-single {
        font-size: 0.68em;
        margin-top: 3px;
    }
    
    .wellbabe-unit-price.wellbabe-cart,
    .wellbabe-unit-price.wellbabe-minicart,
    .wellbabe-unit-price.wellbabe-checkout {
        font-size: 0.75em;
        margin-top: 3px;
    }
}

/* Extra kleine Bildschirme */
@media screen and (max-width: 480px) {
    .wellbabe-unit-price.wellbabe-shop {
        font-size: 0.7em;
    }
    
    .wellbabe-unit-price.wellbabe-single {
        font-size: 0.65em;
    }
    
    .wellbabe-unit-price.wellbabe-cart,
    .wellbabe-unit-price.wellbabe-minicart,
    .wellbabe-unit-price.wellbabe-checkout {
        font-size: 0.7em;
    }
}

/* Integration mit WooCommerce Preisstrukturen */
.price .wellbabe-unit-price.wellbabe-shop {
    vertical-align: baseline;
}

.woocommerce-Price-amount + .wellbabe-unit-price {
    margin-left: 4px;
}

/* Warenkorb-Tabelle */
.woocommerce-cart-form .wellbabe-unit-price.wellbabe-cart {
    margin-top: 3px;
}

/* Mini-Warenkorb */
.widget_shopping_cart .wellbabe-unit-price.wellbabe-minicart {
    font-size: 0.75em;
    margin-top: 2px;
}

/* Produktlisten-Anpassung */
.products .product .wellbabe-unit-price.wellbabe-shop {
    display: block;
    text-align: center;
    margin-top: 3px;
    margin-left: 0;
}

/* Variable Produkte */
.woocommerce-variation-price .wellbabe-unit-price {
    margin-top: 5px;
}

/* Hover-Effekt (optional, sehr dezent) */
.product:hover .wellbabe-unit-price.wellbabe-shop {
    color: #555;
    transition: color 0.2s ease;
}

/* Sicherstellen, dass der Text nicht umbricht */
.wellbabe-unit-price {
    white-space: nowrap;
}

/* Kassenseite */
.woocommerce-checkout .wellbabe-unit-price.wellbabe-cart {
    font-size: 0.75em;
}

/* Bestellübersicht */
.woocommerce-order-overview .wellbabe-unit-price,
.order-total .wellbabe-unit-price {
    font-size: 0.75em;
    color: #666;
}

