    /* assets/css/checkout.css */
    .checkout-section {
        padding: 5rem 0;
        margin-top: 5rem;
        position: relative;

        &::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 425px;
            background-image: url(../../images/bg-checkout.webp);
            background-size: cover;
            background-position: center;
            z-index: -1;
        }

    }

    /* Contenedor Principal */
    .custom-checkout-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 20px;
    }

    /* Steps */
    .checkout-steps {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 1rem;

        border-radius: 8px;
        position: relative;


        .step {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #6c757d;
            position: relative;
            z-index: 2;

            padding: 0 1rem;

            &.active {
                color: #FB7214;

                .step-number {
                    background: #FB7214;
                    border-color: #FB7214;
                }

                &::after {
                    background: #FB7214;
                }
            }

            &.completed {
                color: var(--4, #FB7214);

                .step-number {
                    background: #FB7214;
                    border-color: #FB7214;

                    &::after {
                        content: '✓';
                        font-size: 14px;
                    }
                }

                &::after {
                    background: #28a745;
                }
            }

            .step-number {
                width: 24px;
                height: 24px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #fff;
                color: white;
                border: 2px solid #6c757d;
                transition: all 0.3s ease;
            }

            .step-text {
                font-weight: 500;
            }
        }
    }

    /* Layout Principal */
    .checkout-layout {
        display: flex;
        gap: 30px;
    }

    /* Sección de Items del Carrito */
    .cart-items-section {
        display: flex;
        flex-direction: column;
        flex: 1;
        border-radius: 10px;
        background: var(--Color8, #F3F4FD);
        padding: 20px;
        gap: 1rem;


        h3 {
            color: #0C2D80;

            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px;

            b {
                font-weight: 700;
            }
        }

        .cart-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 8px;
            margin-bottom: 1rem;

            .box-image-curso {
                max-width: 150px;
            }

            .item-details {
                flex: 1;
                display: flex;
                flex-direction: column;

                .category-tag {

                    padding: 5px 9px;
                    width: fit-content;
                    color: var(--2, #0C2D80);
                    font-size: 13px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: 13px;
                    border-radius: 10px;
                    background: var(--3, #E7E7E7);
                }

                h4 {
                    color: var(--1, #0C2D80);
                    font-family: Poppins;
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 25px;
                }

                .prices {
                    display: flex;
                    gap: 1rem;
                    flex-direction: row-reverse;
                    justify-content: start;

                    .price {
                        .woocommerce-Price-amount.amount {
                            bdi {
                                color: #fb7214;
                                font-size: 20px;
                                font-style: normal;
                                font-weight: 700;
                                line-height: 25px;
                            }
                        }
                    }

                    .price-regular {
                        .woocommerce-Price-amount.amount {
                            bdi {
                                color: var(--1, #0C2D80);
                                font-size: 13px;
                                font-style: normal;
                                font-weight: 400;
                                line-height: 13px;
                                text-decoration: line-through;
                            }
                        }
                    }

                    .price-sale {
                        .woocommerce-Price-amount.amount {
                            bdi {
                                color: var(--4, #FB7214);

                                font-size: 20px;
                                font-style: normal;
                                font-weight: 700;
                                line-height: 25px;
                            }
                        }
                    }
                }
            }

            .remove-item {
                background: none;
                border: none;
                cursor: pointer;
                padding: 8px;

                svg {
                    path {
                        fill: #FB7214;
                    }
                }

                &:hover svg path {
                    fill: #FB7214;
                }
            }
        }
    }

    /* Resumen de la Orden */
    .order-summary {
        width: 450px;
        background: white;
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;

        h3 {
            color: var(--1, #0C2D80);

            font-size: 25px;
            font-style: normal;
            font-weight: 700;
            line-height: 25px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            /*border-bottom: 1px solid #0B72F2;*/
            color: var(--6, #2A2A2A);
            font-family: 'Lato', sans-serif;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px;

            &.total {
                color: var(--1, #0C2D80);
                font-family: Poppins;
                font-size: 25px;
                font-style: normal;
                font-weight: 700;
                line-height: 25px;
            }

            &.discount-amount {
                color: #28a745;
            }
        }
    }

    /* Cupones */
    .coupon-container {
        margin: 15px 0;

        .coupon-input {
            display: none;
            margin-bottom: 10px;
            gap: 8px;
            width: 100%;

            &.active {
                display: flex;
            }

            input {
                flex: 1;
                padding: 12px;
                border: 1px solid #ddd;
                border-radius: 6px;
                font-size: 14px;
            }

            button {
                padding: 12px 24px;
                background: #007bff;
                color: white;
                border: none;
                border-radius: 6px;
                cursor: pointer;

                &:hover {
                    background: #0056b3;
                }
            }
        }

        .coupon-btn {
            width: fit-content;
            padding: 12px;
            border-radius: 10px;
            border: 2px solid var(--Color8, #F3F4FD);

            background: var(--2, #82C633);
            color: white;

            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: auto;
            gap: 8px;


        }
    }

    /* Botón Siguiente */
    .next-step {
        margin: auto;
        width: fit-content;
        padding: 15px 25px;
        border-radius: 10px;
        background: var(--4, #FB7214);
        transition: background 0.3s ease;
        color: var(--5, #FFF);
        text-align: right;

        font-size: 25px;
        font-style: normal;
        font-weight: 700;
        line-height: 25px;
        transition: background 0.3s ease-in-out;

        &:hover {
            background-color: #C2550A;

        }
    }

    /* Contenido de los Steps */
    .step-content {
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;

        &.active {
            display: block;
            opacity: 1;
        }
    }

    /* Formulario en Step 2 */
    .form-group {
        display: flex;
        flex-direction: column;
        gap: 15px;



        input,
        select {
            padding: 12px;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            font-size: 14px;

            &:focus {
                outline: none;
                border-color: #007bff;
                box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
            }
        }
    }




    #step2 {
        .checkout-layout {
            display: flex;
            gap: 30px;
            padding: 20px;
        }

        form.checkout {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .form-details {
            flex: 1;
            background: #FFFFFF;
            padding: 20px;
            border-radius: 8px;

            h2 {
                text-align: start;
            }

            h3 {
                color: var(--1, #0C2D80);

                font-size: 25px;
                font-style: normal;
                font-weight: 700;
                line-height: 25px;
                display: none;

            }

            h4 {
                color: #333;
                font-size: 18px;
                margin-bottom: 15px;
            }

            .woocommerce-billing-fields {
                border-radius: 10px;
                border: 2px solid rgba(11, 114, 242, 0.20);
                padding: 1rem;
                background: #FFF;

                .woocommerce-billing-fields__field-wrapper {
                    display: flex;
                    flex-direction: column;
                    gap: .7rem;
                }
            }
        }

        .form-group {

            input,
            select {
                width: 100%;
                padding: 12px;
                border-radius: 10px;

                background-color: var(--Color6, #F5F6FE);
            }
        }

        .additional-info {
            display: none;
        }

        .payment-section {
            border-radius: 10px;
            border: 2px solid rgba(55, 139, 209, 0.20);
            padding: 1rem;
            background: #FFF;
            display: flex;
            flex-direction: column;



            h3 {
                color: var(--1, #0B72F2);

                font-size: 25px;
                font-style: normal;
                font-weight: 800;
                line-height: 25px;
            }

            .button-finalizar {

                color: white;
                border: none;
                border-radius: 5px;
                background: var(--4, #FB7214);
                padding: 12px 30px;
                font-size: 16px;
                cursor: pointer;
                width: fit-content;
                display: inline-block;
                transition: background 0.3s ease-in-out;
                color: var(--5, #FFF);
                text-align: right;

                font-size: 25px;
                font-style: normal;
                font-weight: 700;
                line-height: 25px;
                margin: auto;
                text-align: center;


            }
        }



        .order-summary {
            width: 550px;
            background: white;
            padding: 20px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            background: var(--Color8, #F3F4FD);

            h3 {
                color: #4D4D4D;

                font-family: Poppins;
                font-size: 20px;
                font-style: normal;
                font-weight: 400;
                line-height: 20px;

                b {
                    font-weight: 700;
                }
            }

            .cart-item-summary {
                display: flex;
                gap: 15px;
                margin-bottom: 20px;
                padding: 15px;
                background: #F9FAFB;
                border-radius: 10px;
                background-color: white;

            }

            .product-image {
                max-width: 150px;
                display: flex;
                align-items: center;


            }

            .product-details {
                flex: 1;

                .category-tag {
                    display: inline-block;
                    padding: 5px 9px;
                    background: var(--3, #E7E7E7);
                    color: var(--2, #0C2D80);
                    border-radius: 10px;
                    font-size: 13px;

                    font-weight: 500;
                    line-height: 13px;
                }

                h4 {
                    color: var(--1, #0C2D80);
                    font-family: Poppins;
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 25px;
                }


                .prices {
                    display: flex;
                    gap: 1rem;
                    flex-direction: row-reverse;
                    justify-content: start;

                    .price-regular {
                        .woocommerce-Price-amount.amount {
                            bdi {
                                color: var(--1, #0C2D80);

                                font-size: 13px;
                                font-style: normal;
                                font-weight: 400;
                                line-height: 13px;
                                text-decoration: line-through;
                            }
                        }
                    }

                    .price-sale {
                        .woocommerce-Price-amount.amount {
                            bdi {
                                color: var(--4, #FB7214);

                                font-size: 20px;
                                font-style: normal;
                                font-weight: 700;
                                line-height: 25px;
                            }
                        }
                    }
                }

            }

            .remove-item {

                background: none;
                border: none;
                cursor: pointer;
                padding: 8px;

                &:hover svg path {
                    fill: #dc3545;
                }
            }

            .summary-totals {
                margin-top: 20px;
                border-radius: 10px;
                border: 2px solid rgba(11, 114, 242, 0.20);
                background: #FFF;
                padding: 15px;
            }

            .summary-row {
                display: flex;
                justify-content: space-between;
                margin-bottom: 10px;
                color: var(--6, #2A2A2A);


                font-size: 20px;
                font-weight: 400;
                line-height: 20px;

                &.total {
                    color: var(--2, #02569B);

                    font-size: 25px;
                    font-weight: 700;
                    line-height: 25px;

                    padding-top: 10px;
                }
            }
        }

        @media (max-width: 768px) {
            .checkout-layout {
                flex-direction: column;
            }

            .order-summary {
                width: 100%;
            }
        }
    }


    .wc_payment_methods {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 16px;

    }


    .wc_payment_methods .wc_payment_method {
        grid-row: 1 / 2;
        width: 100%;
        place-items: center;
        text-align: center !important;
    }

    div.payment_box {
        position: relative;
        box-sizing: border-box;
        width: 100%;
        padding: 1em;
        margin: 1em 0;
        font-size: .92em;
        border-radius: 2px;
        line-height: 1.5;
        background-color: #dcd7e3;
        color: #515151;
    }

    .wc_payment_methods>div {
        grid-column: span 4;
        width: 100%;
        background: none !important;
        padding: 0 !important;

        &::before {
            display: none !important;
        }
    }

    .wc_payment_methods .wc_payment_method .payment_method_box {
        width: 100%;
        height: 80px;
        border-radius: 7px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
        border: 1px solid #FB7214;
        padding: 6px;
    }

    .payment_box.payment_method_wocommerce_yape_peru {
        img {
            width: unset;
        }
    }

    .wc_payment_method {

        label {

            color: var(--1, #FB7214);
            text-align: center;
            font-size: 10px;
            font-style: normal;
            line-height: 10px;
            height: fit-content;
            display: inline-flex;
            font-weight: 700;
        }
    }

    .wc_payment_methods .wc_payment_method .payment_method_box input {
        position: absolute;
        opacity: 0;
        inset: 0;
        transition: all 0.3s ease;
        z-index: 3;
        cursor: pointer;
        width: 100%;
        height: 100%;
    }

    .wc_payment_methods .wc_payment_method .payment_method_box svg {
        width: 100%;
        height: 100%;
        max-height: 42px;
        max-width: 48px;
        display: block;
        margin: 0 auto;
        transition: all 0.3s ease;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center;
        object-position: center;

        path {
            fill: rgba(251, 114, 20, .2);
        }
    }


    .wc_payment_methods .wc_payment_method.checked .payment_method_box {
        svg {
            path {

                fill: #FB7214;
            }
        }
    }

    .wc_payment_methods .bank_list {
        margin-block: 10px 28px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 8px 26px;

        .cambiarVistaBanco {
            width: 100%;
            padding: 1rem;
            border: 1px solid #0C2D80;
            display: flex;
            align-items: center;
            border-radius: 10px;
        }
    }

    .enrollment_process {
        display: flex;
        flex-direction: column;
        gap: 1rem;

        h5 {
            color: var(--1, #0C2D80);

            font-size: 25px;
            font-style: normal;
            font-weight: 800;

        }
    }

    .enrollment_process-tr {
        display: flex;
        gap: 1rem;

        .step,
        .content-step {
            color: var(--6, #2A2A2A);

            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 23px;
            text-wrap: nowrap;
        }

        .content-step {
            font-weight: 400;
            text-wrap: wrap;

        }
    }

    .w-100 {
        width: 100%;
    }


    #step3 {
        .thank-you-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;

            a {
                margin: 0 auto;
                text-align: center;
                width: fit-content;
                border-radius: 10px;
                background: var(--4, #FB7214);
                border: 2px solid #FB7214;
                padding: 15px 29px;

                transition: all 0.3s ease-in-out;
                color: var(--5, #FFF);
                font-family: 'Lato', sans-serif;
                font-size: 20px;
                font-style: normal;
                font-weight: 700;
                line-height: 20px;
                transition: all 0.3s ease-in-out;

                &:hover {
                    background-color: white;
                    color: #FB7214;
                }
            }

            .thank-you-header {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 1rem;

                h1 {
                    color: var(--1, #0C2D80);
                    text-align: center;

                    font-size: 25px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 25px;

                    &.bacs {
                        font-weight: 700;
                    }
                }

                .notification-box {
                    width: fit-content;
                    padding: 15px 25px;
                    border-radius: 10px;
                    border: 2px solid var(--Color8, #F3F4FD);

                    background-color: rgba(130, 198, 51, 0.05);
                    color: var(--3, #FFC102);
                    text-align: center;

                    font-size: 25px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 30px;

                    &.warning {
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;

                        >h2 {
                            color: var(--1, #0C2D80);
                            text-align: center;

                            font-size: 25px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 25px;
                        }

                        >span {
                            color: var(--3, #727376);
                            text-align: center;
                            font-family: Poppins;
                            font-size: 20px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 25px;
                        }

                        >p {
                            color: var(--1, #0C2D80);
                            text-align: center;

                            font-size: 20px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 20px;
                        }

                        .pasos {
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: center;
                            row-gap: 2rem;
                            position: relative;


                            .paso {
                                width: 25rem;
                                display: flex;
                                flex-direction: column;
                                justify-content: center;
                                align-items: center;


                                h3 {
                                    color: var(--2, #82C633);

                                    font-size: 15px;
                                    font-style: normal;
                                    font-weight: 700;
                                    line-height: 15px;
                                }

                                p {
                                    display: flex;

                                    gap: .5rem;
                                    color: var(--3, #727376);
                                    font-size: 15px;
                                    font-style: normal;
                                    font-weight: 400;
                                    line-height: 20px;
                                }
                            }
                        }
                    }
                }
            }

            .order-summary-bar {
                padding: 30px 70px;
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                border-radius: 10px;
                background-color: white;
                border: 2px solid var(--Color8, #F3F4FD);
                place-items: center;
                gap: 1rem;

                .summary-item {
                    display: flex;
                    flex-direction: column;
                    width: 100%;
                height: 100%;

                    .label,
                    .value {
                        color: var(--1, #0C2D80);


                        font-size: 15px;
                        font-style: normal;
                        font-weight: 700;
                        line-height: 20px;
                    }

                    .value {
                        color: #595959;

                        font-size: 15px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 20px;
                    }
                }
            }

            .order-details-section {


                h2 {
                    color: var(--4, #FB7214);
                    text-align: start;
                    font-family: Poppins;
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 20px;
                }

                table td,
                table th {
                    padding: 15px;
                    line-height: 1.5;
                    vertical-align: top;
                    border: none;
                }

                .order-details-table {
                    width: 100%;

                    th {
                        border: none;
                        color: var(--1, #0C2D80);
                        font-family: Poppins;
                        font-size: 20px;
                        font-style: normal;
                        font-weight: 700;
                        line-height: 20px;

                    }

                    thead {

                        border-radius: 5px 5px 0px 0px;
                        background: var(--Color8, #F3F4FD);

                        tr {
                            text-align: left;
                            color: var(--2, #02569B);

                            font-size: 20px;
                            font-style: normal;
                            font-weight: 700;
                            line-height: 20px;
                        }
                    }

                    tbody {
                        background: var(--4, #F5F5F5);

                        tr {
                            .pr oduct-name {
                                display: flex;
                                flex-direction: column;
                                grid-area: .3rem;
                                color: var(--2, #02569B);

                                font-size: 20px;
                                font-style: normal;
                                font-weight: 400;
                                line-height: 20px;

                                .discount-badge {

                                    display: flex;
                                    width: fit-content;
                                    padding: 5px 10px;
                                    border-radius: 5px;
                                    background: var(--2, #02569B);
                                    color: var(--5, #FFF);
                                    font-family: 'Lato', sans-serif;
                                    font-size: 15px;
                                    font-style: normal;
                                    font-weight: 700;
                                    line-height: 15px;

                                }
                            }

                            .product-total {
                                .woocommerce-Price-amount.amount {
                                    color: var(--2, #02569B);
                                    text-align: right;

                                    font-size: 20px;
                                    font-style: normal;
                                    font-weight: 400;
                                    line-height: 20px;
                                    /* 100% */
                                    text-decoration-line: strikethrough;
                                }
                            }

                        }
                    }

                    tfoot {


                        tr {

                            border: 2px solid var(--Color8, #F3F4FD);
                            background: var(--Color6, #F5F6FE);
                        }

                        tr:last-child {
                            color: var(--1, #0C2D80);

                            font-size: 20px;
                            font-style: normal;
                            font-weight: 700;
                            line-height: 20px;
                            text-align: left;

                            td {
                                .woocommerce-Price-amount.amount {
                                    bdi {
                                        font-weight: 700;
                                    }
                                }
                            }
                        }

                        .cart-discount,
                        .cart-subtotal {
                            th {
                                text-align: left;
                                display: flex;
                                flex-direction: column;
                                color: var(--1, #0C2D80);
                                font-size: 20px;
                                font-style: normal;
                                font-weight: 400;
                                line-height: 20px;
                            }

                            td {
                                color: var(--1, #0C2D80);
                                font-size: 20px;
                                font-style: normal;
                                font-weight: 400;
                                line-height: 20px;

                            }
                        }

                    }
                }
            }

            .bank-transfer-instructions {
                h3 {
                    color: var(--4, #FB7214);
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 20px;
                }

                .bank-accounts {
                    width: 100%;

                    .accounts-grid {
                        width: 100%;
                        display: grid;
                        grid-template-columns: repeat(2, 1fr);

                        .bank-account-details {

                            .bank-name,
                            .account-number,
                            .account-holder {
                                color: var(--1, #0C2D80);
                                font-family: Poppins;
                                font-size: 18px;
                                font-style: normal;
                                font-weight: 700;
                                line-height: 20px;

                                strong {
                                    color: var(--1, #0C2D80);
                                    font-family: Poppins;
                                    font-size: 18px;
                                    font-style: normal;
                                    font-weight: 400;
                                    line-height: 20px;
                                }
                            }
                        }

                        .account-number {
                            display: flex;
                            align-items: center;
                            gap: 1rem;
                        }
                    }
                }
            }

            .copyable-text {
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }

            .copy-button {
                padding: 0.25rem;
                background: none;
                border: none;
                color: #3b82f6;
                cursor: pointer;
                transition: color 0.2s;
            }

            .copy-button:hover {
                color: #1d4ed8;
            }

            .payment-notice {
                margin-top: 2rem;
                padding: 1rem;
                background-color: #fff7ed;
                border-left: 4px solid #f97316;
                border-radius: 4px;
            }

            .payment-notice p {
                color: #9a3412;
                margin: 0;
                font-size: 0.95rem;
                line-height: 1.5;
            }

            .action-buttons {
                margin: auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 1rem;

                a {
                    text-align: center;
                    width: fit-content;
                    border-radius: 10px;
                    background: var(--4, #FB7214);
                    border: 2px solid #FB7214;
                    padding: 15px 29px;

                    transition: all 0.3s ease-in-out;
                    color: var(--5, #FFF);
                    font-family: 'Lato', sans-serif;
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 20px;
                    transition: all 0.3s ease-in-out;

                    &:hover {
                        background-color: white;
                        color: #FB7214;
                    }

                }

                a.button-whatsapp {
                    background-color: #25d366;
                    border: 1px solid #25d366;
                    display: flex;
                    align-items: center;
                    gap: 1rem;

                    &:hover {
                        background-color: white;
                        color: #25d366;

                        svg {
                            path {
                                fill: #25d366;
                            }
                        }
                    }
                }
            }


        }
    }


    @media (max-width: 1000px) {

        #step1 {
            .checkout-layout {
                flex-direction: column;
            }
        }

        #step3 {
            .thank-you-container {
                display: flex;
                flex-direction: column;

                .order-summary-bar {
                    grid-template-columns: 1fr;
                    place-items: start;
                    row-gap: 1rem;

                    .summary-item {
                        justify-content: start;
                        align-items: start;
                    }
                }
            }
        }

    }