/* ==========================================================================
   2026.css — Custom overrides, safe from SCSS build process
   ========================================================================== */

/* Sale price: centered strikethrough and spacing */
.summary .price del {
    vertical-align: middle;
    margin-right: 0.5rem;
    text-decoration: none;
    position: relative;
    font-weight: 300;
}
.summary .price del::after {
    content: '';
    position: absolute;
    left: -2px;
    right: 2px;
    top: 30%;
    border-top: 3px solid currentColor;
}
.summary .price ins {
    vertical-align: middle;
}

/* Order customer note - normal weight */
.order-customer-note p {
    font-weight: 400;
    margin-right: 1rem;
}

/* Sticky footer - WooCommerce pages only */
body.woocommerce-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body.woocommerce-page > .woocommerce {
    flex: 1;
}
