/*
Theme Name: Storefront Child Theme
Description: Child theme dla Storefront
Template: storefront
Version: 1.0.0
*/




/* Fix: Checkout validation errors — display vertically, not truncated in one line */
.woocommerce-NoticeGroup-checkout ul.woocommerce-error,
ul.woocommerce-error {
    display: block !important;
    flex-wrap: wrap !important;
    padding: 1em 1.5em !important;
}

.woocommerce-NoticeGroup-checkout ul.woocommerce-error li,
ul.woocommerce-error li {
    display: list-item !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    max-width: 100% !important;
    margin-bottom: 0.3em;
    list-style: disc inside;
}

.woocommerce-NoticeGroup-checkout ul.woocommerce-error li:last-child,
ul.woocommerce-error li:last-child {
    margin-bottom: 0;
}

.woocommerce-NoticeGroup-checkout ul.woocommerce-error li a,
ul.woocommerce-error li a {
    white-space: normal !important;
    word-wrap: break-word;
}