/* Fix: Bootstrap .col-1 (8.33%) overriding WooCommerce .col2-set .col-1 (48%) */
.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
    float: left;
    width: 48%;
    max-width: 48%;
    flex: 0 0 48%;
    padding-left: 0;
    padding-right: 0;
}

.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
    float: right;
    width: 48%;
    max-width: 48%;
    flex: 0 0 48%;
    padding-left: 0;
    padding-right: 0;
}

.woocommerce-order-details__title,
.woocommerce-column__title {
    padding-bottom: 15px;
}

/* ---- Empty cart (block-based) ---- */

/* Hide "Nowe w sklepie" section and separator */
.wp-block-woocommerce-empty-cart-block .wp-block-separator,
.wp-block-woocommerce-empty-cart-block .wp-block-heading:not(.wc-block-cart__empty-cart__title),
.wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new {
    display: none;
}

/* Replace sad face icon with cart icon */
.wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
    content: "";
    display: block;
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    background-color: var(--color-primary-400, #00b1eb);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-image: none;
    font-size: 0;
}

/* Style the empty cart title */
.wc-block-cart__empty-cart__title {
    font-size: 3.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-primary-400, #00b1eb);
    padding: 6rem 0 4rem;
}

/* ---- Checkout: przycisk "Kupuję i płacę" tymczasowo wyłączony ---- */
.wc-block-checkout .wc-block-components-checkout-place-order-button {
    opacity: 0.45;
    pointer-events: none;
    cursor: not-allowed;
}

/* Style the "Return to shop" button */
.wp-block-woocommerce-empty-cart-block .wp-block-button .wp-block-button__link,
.wp-block-woocommerce-empty-cart-block a.wp-block-button__link {
    display: inline-block;
    padding: 1.5rem 4rem 1.1rem;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--color-primary-400, #00b1eb);
    border: 3px solid var(--color-primary-400, #00b1eb);
    border-radius: 6rem;
    transition: 0.25s ease-in-out;
}

.wp-block-woocommerce-empty-cart-block .wp-block-button .wp-block-button__link:hover,
.wp-block-woocommerce-empty-cart-block a.wp-block-button__link:hover {
    color: var(--color-primary-400, #00b1eb);
    background-color: transparent;
}
