/*
 * Checkout Blocks - Columna derecha avanzada v2.0
 * Columnas independientes: evita espacios verticales grandes en la izquierda.
 */

@media (min-width: 782px) {
    .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.oc-checkout-v2-layout,
    .wc-block-components-sidebar-layout.wc-block-checkout.oc-checkout-v2-layout {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) !important;
        grid-template-areas:
            "main sidebar"
            "main rightstack" !important;
        column-gap: 48px !important;
        align-items: start !important;
    }

    .oc-checkout-v2-layout > .wc-block-components-main.wc-block-checkout__main,
    .wp-block-woocommerce-checkout .wc-block-components-main.wc-block-checkout__main {
        grid-area: main !important;
        width: 100% !important;
        max-width: none !important;
        float: none !important;
    }

    .oc-checkout-v2-layout > .wc-block-components-sidebar.wc-block-checkout__sidebar,
    .wp-block-woocommerce-checkout .wc-block-components-sidebar.wc-block-checkout__sidebar {
        grid-area: sidebar !important;
        width: 100% !important;
        max-width: none !important;
        float: none !important;
        position: sticky;
        top: 24px;
        align-self: start !important;
    }

    .oc-checkout-right-stack {
        grid-area: rightstack !important;
        width: 100% !important;
        max-width: none !important;
        margin-top: 24px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    .oc-checkout-right-stack > * {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .oc-checkout-right-stack #shipping-option,
    .oc-checkout-right-stack #payment-method,
    .oc-checkout-right-stack .wp-block-woocommerce-checkout-actions-block,
    .oc-checkout-right-stack .wc-block-checkout__actions {
        width: 100% !important;
        max-width: none !important;
    }

    .oc-checkout-right-stack .wc-block-components-checkout-place-order-button,
    .oc-checkout-right-stack button[type="submit"] {
        width: 100% !important;
    }

    /* Compacta la columna izquierda, ya sin filas compartidas con la derecha. */
    .wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-checkout-step {
        margin-bottom: 24px !important;
    }

    .wp-block-woocommerce-checkout .wc-block-checkout__main .wc-block-components-checkout-step:last-child {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 781px) {
    .oc-checkout-right-stack {
        margin-top: 24px;
    }

    .oc-checkout-right-stack > * {
        margin-top: 24px;
    }
}
