/* Produktseite: Preis-Suffix 40% */
body.woocommerce.single-product .woocommerce-price-suffix {
    font-size: 40%;
}

/* Produktübersicht / Shopseite: Preis-Suffix 75% */
body.woocommerce.archive .woocommerce-price-suffix,
body.woocommerce.post-type-archive-product .woocommerce-price-suffix {
    font-size: 75%;
}
/* Hinweis unter dem Preis */
.product-shipping-note {
    font-size: 90% !important;  /* erzwingt die Größe */
    color: #555;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .product-shipping-note {
        font-size: 70% !important; /* Mobile */
    }
}

.product-shipping-note a {
    color: #007cba;
    text-decoration: underline;
}

