:where(.single-product) {
    .wc-block-components-product-price:has(del), .wc-block-components-product-price .price:has(del){
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        column-gap: 10px;
        row-gap: 10px;
        align-items: center;
    }

    /* Sale price (top row, full width) */
    .wc-block-components-product-price ins {
        grid-column: 1 / -1;
        grid-row: 1;
        font-size: 32px;
        font-weight: 700;
        text-decoration: none;
    }

    /* Discount badge (bottom-left) */
    .wc-block-components-product-price .discount-inline {
        grid-column: 1;
        grid-row: 2;
        padding: 5px;
        color: var(--wp--preset--color--electric-purple);
        background-color: var(--wp--preset--color--lavender-mist);
        font-size: 14px;
        font-weight: 400;
        line-height: 150%;
        white-space: nowrap;
        border-radius: 4px;
    }

    /* Regular price (bottom-right) */
    .wc-block-components-product-price del {
        grid-column: 2;
        grid-row: 2;
        color: var(--wp--preset--color--gray-text);
        font-size: 14px;
        font-weight: 400;
        line-height: 150%;
    }

    /* Clean up default Woo styles */
    .wc-block-components-product-price del,
    .wc-block-components-product-price ins {
        margin: 0;
    }
}