.new-order-products {
    background: #f3f3f3;
    padding: 1rem 0 .5rem;
}

.new-order-products > .new-order-section:last-child {
    margin-bottom: 0;
}

.new-order-section {
    background: #fff;
    padding: 1.25rem 1rem;
    margin-bottom: .75rem;
}

.new-order-addresses,
.new-order-payments {
    background: #f3f3f3;
    padding: .5rem 0;
}

.new-order-addresses .new-order-section,
.new-order-payments .new-order-section {
    margin-bottom: 0;
}

.new-order-addresses {
    margin-bottom: 0;
    padding-bottom: .5rem;
}

.new-order-addresses .new-order-section {
    padding-bottom: 1.25rem;
    margin-bottom: 0;
}

.new-order-payments {
    padding-top: .5rem;
}

.new-order-payments .new-order-section {
    padding-top: 1.25rem;
}

.new-order-section .new-order-address-card {
    margin-top: 0;
}

.new-order-address-card + .new-order-address-card {
    margin-top: .75rem;
}

.new-order-address-card-body {
    padding: .9rem;
}

.new-order-address-recipient {
    display: block;
    color: #111;
    font-size: .8rem;
    font-weight: 600;
}

.new-order-address-text {
    margin: .45rem 0 0;
    color: #6b7280;
    font-size: .78rem;
    line-height: 1.45;
}

.new-order-address-phone {
    display: block;
    margin-top: .75rem;
    color: #111;
    font-size: .78rem;
    font-weight: 600;
}

.new-order-section .new-order-payment-card {
    margin-top: 0;
}

.new-order-payment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .8rem .9rem;
}

.new-order-payment-row + .new-order-payment-row {
    border-top: 1px solid #ededed;
}

.new-order-payment-name {
    color: #111;
    font-size: .8rem;
    font-weight: 600;
}

.new-order-payment-description {
    margin-top: .25rem;
    color: #6b7280;
    font-size: .75rem;
    line-height: 1.4;
}

.new-order-payment-side {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: .35rem;
    flex-shrink: 0;
}

.new-order-payment-amount {
    color: #111;
    font-size: .8rem;
    font-weight: 600;
    white-space: nowrap;
}

.new-order-payment-installment {
    flex-shrink: 0;
    color: #245b85;
    background: #f1f7fc;
    border: 1px solid #cbdfee;
    border-radius: 1rem;
    padding: .25rem .55rem;
    font-size: .72rem;
    font-weight: 600;
    white-space: nowrap;
}

.new-order-payment-summary {
    border-top: 1px solid #e7e7e7;
    padding: .35rem .9rem;
}

.new-order-payment-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .45rem 0;
    color: #6b7280;
    font-size: .78rem;
}

.new-order-payment-summary-value {
    color: #111;
    font-weight: 500;
    white-space: nowrap;
}

.new-order-payment-discount .new-order-payment-summary-value {
    color: #b42318;
}

.new-order-payment-total {
    margin-top: .2rem;
    padding-top: .65rem;
    border-top: 1px solid #e7e7e7;
    color: #111;
    font-size: .82rem;
    font-weight: 600;
}

.new-order-payment-total .new-order-payment-summary-value {
    font-weight: 700;
}

.new-order-section-title {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.new-order-section-count {
    color: #777;
    font-weight: 400;
}

.new-order-return-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    flex-shrink: 0;
    min-height: 2.15rem;
    padding: .4rem .7rem;
    border: 1px solid #cbdfee;
    border-radius: 1.2rem;
    background: #f1f7fc;
    color: #245b85;
    font-size: .72rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, opacity .15s ease;
}

.new-order-return-button:hover {
    border-color: #9fc1da;
    background: #e7f1f8;
}

.new-order-return-button.is-loading {
    pointer-events: none;
    opacity: .65;
}

.new-order-return-toolbar {
    display: flex;
    justify-content: flex-end;
    padding: .6rem 1rem;
    margin-bottom: .75rem;
    background: #fff;
}

.new-order-return-spinner {
    width: .85rem;
    height: .85rem;
    border: 2px solid #b8d0e0;
    border-top-color: #245b85;
    border-radius: 50%;
    animation: new-order-detail-spin .7s linear infinite;
}

.new-order-summary {
    background: #fff;
    padding: 1rem;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}

.new-order-summary-row {
    display: flex;
    gap: .75rem;
    line-height: 1.55;
    font-size: .8rem;
}

.new-order-summary-label {
    width: 5rem;
    min-width: 5rem;
    color: #111;
}

.new-order-summary-value {
    font-weight: 600;
    color: #111;
}

.new-order-summary-detail {
    font-weight: 400;
    line-height: 1.45;
}

.new-order-summary-status {
    display: block;
}

.new-order-summary-status.is-collapsible {
    display: none;
}

.new-order-summary-detail.is-expanded .new-order-summary-status.is-collapsible {
    display: block;
}

.new-order-summary-toggle {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    margin-top: .15rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #245b85;
    font-size: .74rem;
    font-weight: 600;
}

.new-order-line {
    display: flex;
    gap: 0;
    padding: 0 0 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ededed;
}

.new-order-section > .new-order-line:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.new-invoice-line .new-order-line {
    border-bottom: 1px solid #ededed;
    margin-bottom: 0;
    padding: .45rem 0;
}

.new-order-line-image {
    width: 7rem;
    min-width: 7rem;
    height: 8rem;
    margin: 0 .75rem;
    background: #f5f5f5;
    overflow: hidden;
}

.new-order-line-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.new-order-line-content {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.new-order-line-name {
    color: #777;
    line-height: 1.35;
    font-size: .8rem;
}

.new-order-line-meta {
    color: #777;
    margin-top: .5rem;
    font-size: .75rem;
}

.new-order-line-meta strong {
    color: #111;
    font-weight: 400;
}

.new-order-line-variant {
    color: #777;
    margin-top: .3rem;
    font-size: .75rem;
}

.new-order-line-variant strong {
    color: #111;
    font-weight: 400;
}

.new-order-line-variant + .new-order-line-bottom {
    margin-top: .3rem;
    padding-top: 0;
}

.new-order-line-bottom + .new-order-return-info,
.new-order-line-bottom + .new-order-cancellation-info {
    margin-top: .3rem;
}

.new-order-line-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-top: .65rem;
    padding-top: .15rem;
    padding-right: .75rem;
}

.new-order-line-quantity {
    color: #777;
    font-size: .8rem;
}

.new-order-line-price {
    padding-top: .05rem;
    font-size: .8rem;
    font-weight: 600;
    white-space: nowrap;
}

.new-order-cancellation-info {
    display: flex;
    align-items: center;
    gap: .35rem;
    min-width: 0;
    margin-top: .5rem;
}

.new-order-cancellation-reason,
.new-order-return-reason {
    min-width: 0;
    overflow: hidden;
    color: #607086;
    font-size: .72rem;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-order-cancellation-divider,
.new-order-return-divider {
    color: #8c9aae;
}

.new-order-return-status {
    color: #d79a00;
    font-size: .72rem;
    font-weight: 500;
    white-space: nowrap;
}

.new-order-cancellation-payment {
    color: #16a34a;
    font-size: .72rem;
    font-weight: 500;
    white-space: nowrap;
}

.new-order-return-status.is-refunded {
    color: #16a34a;
}

.new-order-return-status.is-rejected {
    color: #dc2626;
}

.new-order-cancellation-pending {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: auto;
    margin-right: .75rem;
    padding: .28rem .55rem;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #eff6ff;
    color: #245b85;
    font-size: .72rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.new-order-cancellation-pending-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: .95rem;
    height: .95rem;
    border-radius: 50%;
    background: #245b85;
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    line-height: 1;
}

.new-order-return-info {
    display: grid;
    gap: .25rem;
    margin-top: .5rem;
}

.new-order-return-summary {
    display: flex;
    align-items: center;
    gap: .35rem;
    min-width: 0;
}

.new-order-cancel {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: auto;
    margin-right: .75rem;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #111;
    font-size: .8rem;
}

.new-order-cancel.is-loading {
    opacity: .65;
    pointer-events: none;
}

.new-order-cancel-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid #d9d9d9;
    border-top-color: #d71920;
    border-radius: 50%;
    animation: new-order-detail-spin .7s linear infinite;
}

body.new-order-cancel-loading {
    cursor: wait;
}

body.new-order-cancel-loading::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(255, 255, 255, .35);
    cursor: wait;
}

@keyframes new-order-detail-spin {
    to {
        transform: rotate(360deg);
    }
}

.new-order-cancel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2rem;
    height: 1.2rem;
    border: 0;
    border-radius: 0;
    color: #d71920;
    background: transparent;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
}

.new-invoice {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: .5rem;
    overflow: hidden;
    margin-top: 1rem;
}

.new-invoice-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .65rem .75rem;
    border-bottom: 1px solid #e7e7e7;
}

.new-return-group {
    margin-top: .75rem;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.new-return-group-head {
    position: relative;
    align-items: flex-start;
    padding-top: .35rem;
    padding-bottom: .45rem;
}

.new-return-group-title {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    min-width: 0;
    padding-right: 7rem;
}

.new-return-group-code {
    color: #111;
    font-size: .84rem;
    font-weight: 600;
    text-decoration: none;
}

.new-return-group-code:hover {
    color: #245b85;
    text-decoration: underline;
}

.new-return-group-status {
    color: #607086;
    font-size: .75rem;
    line-height: 1.3;
}

.new-return-group-expiry {
    color: #607086;
    font-size: .74rem;
    line-height: 1.3;
}

.new-return-group-expiry.is-valid {
    color: #16a34a;
}

.new-return-group-expiry.is-expired {
    color: #dc2626;
}

.new-return-group-company-code {
    color: #111;
    font-size: .74rem;
    line-height: 1.3;
}

.new-return-group-cargo {
    max-width: 7rem;
    color: #607086;
    font-size: .74rem;
    text-align: right;
    white-space: normal;
}

.new-return-group-cargo-logo {
    position: absolute;
    right: -.5rem;
    top: 50%;
    display: block;
    width: 8rem;
    height: 2.5rem;
    max-height: 2.5rem;
    object-fit: contain;
    object-position: right center;
    transform: translateY(-50%) scale(1.8);
    transform-origin: right center;
}

.new-invoice-number {
    font-weight: 600;
}

.new-invoice-product-count {
    color: #777;
    font-weight: 400;
}

.new-invoice-number-link {
    color: inherit;
    text-decoration: none;
}

.new-invoice-number-link:hover,
.new-invoice-view-link:hover {
    text-decoration: underline;
}

.new-invoice-view-link {
    display: block;
    margin-top: .25rem;
    color: #245b85;
    font-size: .72rem;
    text-decoration: none;
}

.new-invoice-date,
.new-invoice-cargo {
    color: #777;
    font-size: .8rem;
    margin-top: .25rem;
}

.new-invoice-date {
    font-size: .78rem;
}

.new-invoice-cargo-logo {
    display: block;
    width: 7.5rem;
    height: 2.25rem;
    max-height: 2.25rem;
    object-fit: contain;
    object-position: right center;
    margin-left: auto;
    margin-right: -.9rem;
    flex-shrink: 0;
    transform: scale(1.8);
    transform-origin: right center;
}

.new-invoice-head > a {
    display: block;
    margin-left: auto;
    flex-shrink: 0;
}

.new-cancelled-invoice,
.new-returned-invoice {
    margin-top: 0;
}

.new-cancelled-count {
    color: #b42318;
    background: #fff4f3;
    border: 1px solid #f3cfca;
    border-radius: 1rem;
    padding: .25rem .55rem;
    font-size: .72rem;
    font-weight: 600;
    white-space: nowrap;
}

.new-returned-count {
    color: #245b85;
    background: #f1f7fc;
    border: 1px solid #cbdfee;
    border-radius: 1rem;
    padding: .25rem .55rem;
    font-size: .72rem;
    font-weight: 600;
    white-space: nowrap;
}

.new-cancelled-invoice .new-invoice-line:last-child .new-order-line,
.new-returned-invoice .new-invoice-line:last-child .new-order-line {
    border-bottom: 0;
}

.new-invoice-line.is-hidden {
    display: none;
}

.new-invoice-line.is-preview {
    position: relative;
    height: 5rem;
    overflow: hidden;
    margin-bottom: 0;
}

.new-invoice-line.is-preview .new-order-line {
    margin-bottom: 0;
}

.new-invoice-line.is-preview.is-expanded {
    height: auto;
    overflow: visible;
    margin-bottom: 1rem;
}

.new-invoice-line.is-preview.is-expanded .new-invoice-more {
    display: none;
}

.new-invoice-more {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 3rem;
    padding: 0 1rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .88) 35%, #fff 100%);
    backdrop-filter: blur(3px);
}

.new-invoice-more-button {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .85rem .4rem .45rem;
    border: 1px solid #d8deea;
    border-radius: 2rem;
    background: rgba(255, 255, 255, .96);
    color: #2f3c55;
    font-size: .74rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.new-invoice-more-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    min-width: 1.7rem;
    height: 1.7rem;
    padding: 0;
    border: 1px solid #34496f;
    border-radius: 50%;
    color: #34496f;
    background: transparent;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1;
}

.new-invoice-more-bottom {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    height: auto;
    padding: .7rem 1rem 1rem;
    background: #fff;
    backdrop-filter: none;
}

.new-invoice-more-bottom {
    display: none;
}

.new-invoice.is-expanded .new-invoice-more-bottom {
    display: flex;
}

.new-status {
    padding: .3rem .75rem .35rem;
}

.new-status-step {
    position: relative;
    display: flex;
    gap: .6rem;
    min-height: 2.45rem;
    color: #aaa;
}

.new-status-step:last-child {
    min-height: 1.15rem;
}

.new-status-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: .55rem;
    top: 1.2rem;
    bottom: -.15rem;
    border-left: 2px dotted #ddd;
}

.new-status-step.is-complete,
.new-status-step.is-current {
    color: #111;
}

.new-status-step.is-error {
    color: #b42318;
}

.new-status-step.is-error .new-status-dot {
    background: #d92d20;
    color: #fff;
}

.new-status-dot {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    min-width: 1.15rem;
    border-radius: 50%;
    background: #d8d8d8;
    color: #fff;
    font-size: .75rem;
}

.is-complete .new-status-dot {
    background: #20b56b;
}

.is-current .new-status-dot {
    background: #fff;
    border: 4px solid #20b56b;
}

.new-status-title {
    padding-top: .05rem;
    font-size: .82rem;
}

.new-status-title-row {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.new-status-info {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    padding: 0;
    border: 1px solid #8c98a8;
    border-radius: 50%;
    background: #fff;
    color: #5f6d7d;
    cursor: pointer;
    font: inherit;
}

.new-status-info-icon {
    font-size: .68rem;
    font-weight: 700;
    line-height: 1;
}

.new-status-info-tooltip {
    position: absolute;
    right: 0;
    bottom: calc(100% + .45rem);
    z-index: 10;
    display: none;
    width: min(18rem, 70vw);
    padding: .65rem .75rem;
    border: 1px solid #dce2e8;
    border-radius: .45rem;
    background: #fff;
    color: #344054;
    box-shadow: 0 .35rem 1rem rgba(16, 24, 40, .14);
    font-size: .74rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    white-space: normal;
}

.new-status-step > div {
    position: relative;
    z-index: 2;
}

.new-status-info:hover .new-status-info-tooltip,
.new-status-info:focus-visible .new-status-info-tooltip,
.new-status-info.is-open .new-status-info-tooltip {
    display: block;
}

@media (max-width: 767px) {
    .new-status-info-tooltip {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: min(18rem, calc(100vw - 2rem));
    }
}

.new-status-note {
    color: #777;
    font-size: .72rem;
    margin-top: .15rem;
}


/* GetOrderDetail modal component styles */
.cancel-popup-modal .is-hidden {
    display: none;
}

.cancel-popup-description.is-hidden,
#confirmCancel.is-hidden {
    display: none;
}

#returnProductMobile .CardOrders-details-image img {
    width: 60% !important;
}

#returnProductMobile .return-popup-description {
    display: none;
}

#returnProductMobile .return-popup-description .textarea-control {
    height: auto !important;
    padding-top: 1rem;
}

body.cancel-popup-open {
        overflow: hidden !important;
    }

    #cancelProductMobile.cancel-popup-modal {
        display: none;
        align-items: center;
        justify-content: center;
        bottom: 0;
        min-height: 100vh;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 1rem;
        background: rgba(15, 23, 42, .62);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    #cancelProductMobile.cancel-popup-modal.is-open {
        display: flex;
    }

    .cancel-popup-backdrop {
        position: absolute;
        inset: 0;
        border: 0;
        background: transparent;
        cursor: default;
    }

    .cancel-popup-dialog {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        width: min(100%, 25rem);
        min-height: 32rem;
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        background: #fff;
        border: 1px solid rgba(15, 23, 42, .08);
        border-radius: 1.25rem;
        box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .25);
        opacity: 0;
        transform: translateY(1rem) scale(.98);
        transition: opacity .2s ease, transform .2s ease;
    }

    #cancelProductMobile.cancel-popup-modal.is-open .cancel-popup-dialog {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .cancel-popup-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 1rem;
        padding: 1.25rem 1.25rem 1rem;
        border-bottom: 1px solid #eef1f4;
    }

    .cancel-popup-eyebrow {
        display: block;
        margin-bottom: .35rem;
        color: #c51f2b;
        font-size: .68rem;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .cancel-popup-title {
        margin: 0;
        color: #111827;
        font-size: 1.15rem;
        font-weight: 700;
        line-height: 1.3;
    }

    .cancel-popup-subtitle {
        margin: .35rem 0 0;
        color: #6b7280;
        font-size: .75rem;
        line-height: 1.45;
    }

    .cancel-popup-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 2rem;
        height: 2rem;
        padding: 0;
        border: 1px solid #e5e7eb;
        border-radius: 50%;
        background: #f8fafc;
        color: #475569;
        font-size: 1.35rem;
        line-height: 1;
        transition: background .15s ease, color .15s ease, transform .15s ease;
    }

    .cancel-popup-close:hover {
        background: #f1f5f9;
        color: #111827;
        transform: rotate(90deg);
    }

    .cancel-popup-body {
        padding: 1rem 1.25rem 1.25rem;
    }

    .cancel-popup-product {
        display: flex;
        align-items: center;
        gap: .85rem;
        padding: .75rem;
        background: #f8fafc;
        border: 1px solid #edf1f5;
        border-radius: .9rem;
    }

    .cancel-popup-product-image {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 5.25rem;
        height: 6.5rem;
        overflow: hidden;
        background: #eef1f4;
        border-radius: .65rem;
    }

    .cancel-popup-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .cancel-popup-product-info {
        min-width: 0;
    }

    .cancel-popup-product-name {
        display: block;
        color: #1f2937;
        font-size: .82rem;
        font-weight: 600;
        line-height: 1.4;
    }

    .cancel-popup-product-variant {
        margin-top: .45rem;
        color: #64748b;
        font-size: .75rem;
    }

    .cancel-popup-product-code {
        margin-top: .4rem;
        color: #64748b;
        font-size: .75rem;
    }

    .cancel-popup-product-code strong {
        color: #1f2937;
        font-weight: 500;
    }

    .cancel-popup-product-variant strong {
        color: #1f2937;
        font-weight: 500;
    }

    .cancel-popup-fields {
        display: grid;
        gap: .75rem;
        margin-top: 1rem;
    }

    .cancel-popup-field-label {
        display: block;
        margin-bottom: .4rem;
        color: #374151;
        font-size: .74rem;
        font-weight: 600;
    }

    .cancel-popup-dropdown {
        position: relative;
    }

    .cancel-popup-modal .cancel-popup-dropdown .dropdown-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 3rem;
        padding: .75rem .85rem;
        border: 1px solid #e2e8f0;
        border-radius: .7rem;
        background: #fff;
        color: #1f2937;
        font-size: .8rem;
        cursor: pointer;
        transition: border-color .15s ease, box-shadow .15s ease;
    }

    .cancel-popup-modal .cancel-popup-dropdown .dropdown-link:hover,
    .cancel-popup-modal .cancel-popup-dropdown .dropdown-link:focus {
        border-color: #94a3b8;
        box-shadow: 0 0 0 3px rgba(148, 163, 184, .14);
        outline: 0;
    }

    .cancel-popup-modal .cancel-popup-dropdown .dropdown-link-arrow {
        display: inline-flex;
        color: #64748b;
    }

    .cancel-popup-modal .cancel-popup-dropdown .dropdown-link-arrow .icon {
        width: .9rem;
        height: .9rem;
    }

    .cancel-popup-modal .cancel-popup-dropdown .dropdown-menu {
        position: absolute;
        top: calc(100% + .35rem);
        right: 0;
        left: 0;
        z-index: 5;
        display: none;
        width: 100%;
        min-width: 0;
        max-height: min(20rem, calc(100vh - 4rem));
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        padding: .35rem;
        margin: 0;
        float: none;
        box-sizing: border-box;
        border: 1px solid #e2e8f0;
        border-radius: .7rem;
        background: #fff;
        box-shadow: 0 .8rem 1.8rem rgba(15, 23, 42, .14);
    }

    .cancel-popup-modal .cancel-popup-dropup .dropdown-menu {
        top: auto;
        bottom: calc(100% + .35rem);
    }

    .cancel-popup-modal .cancel-popup-dropdown .dropdown-menu.show {
        display: block;
    }

@media (max-width: 767px) {
    .cancel-popup-modal .cancel-popup-dropdown .dropdown-menu.is-viewport-menu,
    #returnProductMobile .return-popup-select-wrap .dropdown-menu.is-viewport-menu {
        position: fixed !important;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        z-index: 1000;
        max-height: 18.75rem;
    }

    #cancelProductMobile.has-dropdown-open .cancel-popup-dialog,
    #returnProductMobile.has-dropdown-open .return-popup-dialog,
    #returnProductMobile.has-dropdown-open .return-popup-body {
        overflow: visible;
    }
}

    .cancel-popup-option {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .cancel-popup-modal .cancel-popup-option .form-group.radio,
    .cancel-popup-modal .cancel-popup-option .form-details-radio {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .cancel-popup-modal .cancel-popup-option .radio {
        display: flex;
        align-items: center;
        grid-template-columns: none;
        width: 100%;
        max-width: 100%;
        gap: .6rem;
        min-height: 1.85rem;
        height: 1.85rem;
        padding: .15rem .55rem;
        box-sizing: border-box;
        border-radius: .5rem;
        cursor: pointer;
    }

    .cancel-popup-option .radio:hover {
        background: #f8fafc;
    }

    .cancel-popup-modal .cancel-popup-option .radio__input {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 1rem;
        height: 1rem;
    }

    .cancel-popup-modal .cancel-popup-option .radio__input input {
        position: absolute;
        width: 1rem;
        height: 1rem;
        margin: 0;
        opacity: 0;
    }

    .cancel-popup-modal .cancel-popup-option .radio__control {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1rem;
        height: 1rem;
        border: 1px solid #cbd5e1;
        border-radius: 50%;
    }

    .cancel-popup-modal .cancel-popup-option input:checked + .radio__control {
        border-color: #c51f2b;
        box-shadow: inset 0 0 0 3px #fff;
        background: #c51f2b;
    }

    .cancel-popup-option .radio__label {
        display: inline-flex;
        align-items: center;
        min-width: 0;
        flex: 1 1 auto;
        color: #334155;
        font-size: .78rem;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .cancel-popup-description {
        margin-top: .75rem;
    }

    .cancel-popup-description .textarea-control {
        width: 100%;
        min-height: 5rem;
        padding: .75rem;
        resize: vertical;
        border: 1px solid #e2e8f0;
        border-radius: .7rem;
        background: #fff;
        color: #1f2937;
        font-size: .8rem;
    }

    .cancel-popup-description .textarea-control:focus {
        border-color: #94a3b8;
        box-shadow: 0 0 0 3px rgba(148, 163, 184, .14);
        outline: 0;
    }

    .cancel-popup-notice {
        display: none;
        align-items: center;
        gap: .6rem;
        margin-bottom: .75rem;
        padding: .65rem .75rem;
        border: 1px solid #fecaca;
        border-radius: .7rem;
        background: #fff7f7;
        color: #991b1b;
        font-size: .74rem;
        line-height: 1.35;
    }

    .cancel-popup-notice.is-visible {
        display: flex;
    }

    .cancel-popup-notice.is-success {
        border-color: #bbf7d0;
        background: #f0fdf4;
        color: #166534;
    }

    .cancel-popup-notice-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 1.2rem;
        height: 1.2rem;
        border-radius: 50%;
        background: #c51f2b;
        color: #fff;
        font-size: .75rem;
        font-weight: 700;
    }

    .cancel-popup-notice.is-success .cancel-popup-notice-icon {
        background: #16a34a;
    }

    .cancel-popup-notice-content {
        min-width: 0;
    }

    .cancel-popup-actions {
        display: grid;
        gap: .6rem;
        margin-top: 1.1rem;
    }

    .cancel-popup-submit,
    .cancel-popup-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 3rem;
        width: 100%;
        padding: .75rem 1rem;
        border-radius: .7rem;
        font-size: .8rem;
        font-weight: 700;
        transition: background .15s ease, border-color .15s ease, transform .15s ease;
    }

    .cancel-popup-submit {
        border: 1px solid #111827;
        background: #111827;
        color: #fff;
    }

    .cancel-popup-submit:hover {
        background: #263244;
        transform: translateY(-1px);
    }

    .cancel-popup-secondary {
        border: 1px solid #e2e8f0;
        background: #fff;
        color: #475569;
    }

    .cancel-popup-secondary:hover {
        border-color: #cbd5e1;
        background: #f8fafc;
    }

    .cancel-popup-submit.loader {
        pointer-events: none;
        opacity: .7;
    }

    .cancel-popup-confirm-text {
        padding: .9rem;
        border: 1px solid #fee2e2;
        border-radius: .7rem;
        background: #fff7f7;
        color: #991b1b;
        font-size: .78rem;
        line-height: 1.4;
        text-align: center;
    }

    @media (max-width: 420px) {
        #cancelProductMobile.cancel-popup-modal {
            padding: .65rem;
        }

        .cancel-popup-dialog {
            max-height: calc(100vh - 1.3rem);
            border-radius: 1rem;
        }

        .cancel-popup-header,
        .cancel-popup-body {
            padding-right: 1rem;
            padding-left: 1rem;
    }
}

@media (min-width: 768px) {
    #cancelProductMobile.cancel-popup-modal .cancel-popup-dialog {
        width: min(30rem, calc(100vw - 2rem));
        min-height: 40rem;
        max-height: calc(100vh - 2rem);
    }

    #cancelProductMobile.cancel-popup-modal .cancel-popup-body {
        padding: 1.25rem 1.5rem 1.5rem;
    }

    .desktop-order-detail-page .desktop-order-detail-shell {
        width: 100%;
    }

    .desktop-order-detail-page #get-order-detail {
        display: grid;
        grid-template-columns: minmax(0, 2fr) minmax(20rem, 1fr);
        grid-template-rows: auto minmax(0, 1fr);
        grid-template-areas:
            "summary summary"
            "products sidebar";
        column-gap: 1rem;
        row-gap: 0;
        align-items: start;
        width: 100%;
        height: calc(100dvh - 4rem);
        min-height: 0;
        overflow: hidden;
        background: #fff;
    }

    .desktop-order-detail-page #get-order-detail > .AccountHeader {
        display: none;
    }

    .desktop-order-detail-page #get-order-detail > .new-order-summary {
        position: relative;
        grid-column: 1 / -1;
        grid-area: summary;
        margin-left: 1rem;
        margin-right: 0;
        padding-right: 11rem;
        border: 1px solid #ededed;
        border-radius: .25rem;
    }

    .desktop-order-detail-page .new-order-summary > .new-order-return-toolbar {
        position: absolute;
        top: 50%;
        right: 1rem;
        z-index: 2;
        margin: 0;
        padding: 0;
        transform: translateY(-50%);
    }

    .desktop-order-detail-page #get-order-detail > .new-order-products {
        grid-area: products;
        height: 90%;
        min-height: 0;
        align-self: stretch;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 0;
        background: #fff;
        scrollbar-width: thin;
    }

    .desktop-order-detail-page #get-order-detail > .new-order-sidebar {
        grid-area: sidebar;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        min-width: 0;
        padding-top: 2rem;
        background: #fff;
    }

    .desktop-order-detail-page .new-order-sidebar > .new-order-addresses,
    .desktop-order-detail-page .new-order-sidebar > .new-order-payments {
        padding: 0;
        background: #fff;
    }

    .desktop-order-detail-page .new-order-sidebar .new-order-payment-card {
        margin-top: 0;
    }

    .desktop-order-detail-page .new-order-return-toolbar {
        position: sticky;
        top: 0;
        z-index: 2;
        justify-content: flex-end;
    }

    .desktop-order-detail-page .new-order-section {
        padding: 1rem;
        margin-bottom: .75rem;
    }

    .desktop-order-detail-page .new-order-line {
        padding: .85rem 0;
    }

    .desktop-order-detail-page .new-order-line-image {
        width: 6rem;
        height: 7.5rem;
    }

    .desktop-order-detail-page .new-invoice-head {
        padding: .8rem 1rem;
    }

    .desktop-order-detail-page .new-invoice {
        overflow: visible;
    }

    .desktop-order-detail-page .new-invoice-content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(15rem, .7fr);
        align-items: stretch;
    }

    .desktop-order-detail-page .new-invoice-lines {
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-right: 1px solid #ededed;
    }

    .desktop-order-detail-page .new-invoice-content > .new-status {
        min-width: 0;
        position: sticky;
        top: .75rem;
        z-index: 1;
        background: #fff;
        padding: .75rem 1rem;
        align-self: center;
    }

    .desktop-order-detail-page .new-invoice.is-expanded .new-invoice-content > .new-status {
        align-self: start;
    }

    .desktop-order-detail-page .new-invoice-lines > [id^="invoice-lines-"] > .new-invoice-line:only-child .new-order-line {
        border-bottom: 0;
    }

    .desktop-order-detail-page .new-waiting-invoice #waiting-lines > .new-invoice-line:only-child .new-order-line {
        border-bottom: 0;
    }

    .desktop-order-detail-page .new-waiting-invoice .new-invoice-lines {
        justify-content: center;
    }

    .desktop-order-detail-page .new-status {
        padding: .75rem 1rem;
    }

    .desktop-order-detail-page .new-order-address-section,
    .desktop-order-detail-page .new-order-payment-section {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .desktop-order-detail-page.is-mobile,
    .desktop-order-detail-page.is-mobile .Account,
    .desktop-order-detail-page.is-mobile .Account > .container,
    .desktop-order-detail-page.is-mobile .Account-data,
    .desktop-order-detail-page.is-mobile .Account-content,
    .desktop-order-detail-page.is-mobile .desktop-order-detail-shell {
        display: contents;
    }
}

@media (max-width: 1100px) and (min-width: 768px) {
    .desktop-order-detail-page #get-order-detail {
        grid-template-columns: minmax(0, 1.6fr) minmax(17rem, 1fr);
    }
}

    #returnProductMobile .dropdown-menu {
        display: none;
    }

        #returnProductMobile .dropdown-menu.show {
        display: block;
    }

    body.return-popup-open {
        overflow: hidden !important;
    }

    #returnProductMobile.return-popup-modal {
        display: none;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        padding: .65rem;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: rgba(15, 23, 42, .62);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    #returnProductMobile.return-popup-modal.is-open {
        display: flex;
    }

    #returnProductMobile .return-popup-backdrop {
        position: absolute;
        inset: 0;
        border: 0;
        background: transparent;
    }

    #returnProductMobile .return-popup-dialog {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        width: min(100%, 30rem);
        min-height: calc(100dvh - 1.3rem);
        max-height: calc(100dvh - 1.3rem);
        overflow: hidden;
        border-radius: 1.25rem;
        background: #fff;
        box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .25);
        opacity: 0;
        transform: translateY(1rem) scale(.98);
        transition: opacity .2s ease, transform .2s ease;
    }

    #returnProductMobile.return-popup-modal.is-open .return-popup-dialog {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    #returnProductMobile .return-popup-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 1rem;
        padding: 1.15rem 1.15rem .9rem;
        border-bottom: 1px solid #eef1f4;
        position: relative;
        z-index: 1;
    }

    #returnProductMobile .return-popup-eyebrow {
        display: block;
        margin-bottom: .3rem;
        color: #245b85;
        font-size: .66rem;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    #returnProductMobile .return-popup-title {
        margin: 0;
        color: #111827;
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.3;
    }

    #returnProductMobile .return-popup-subtitle {
        margin: .3rem 0 0;
        color: #6b7280;
        font-size: .74rem;
    }

    #returnProductMobile .return-popup-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        padding: 0;
        border: 1px solid #e5e7eb;
        border-radius: 50%;
        background: #f8fafc;
        color: #475569;
        font-size: 1.3rem;
        line-height: 1;
    }

    #returnProductMobile .return-popup-body {
        position: relative;
        z-index: 2;
        flex: 1 1 auto;
        max-height: none;
        overflow: visible;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 1.15rem 1.15rem;
    }

    #returnProductMobile .return-popup-dialog {
        overflow: visible;
    }

    #returnProductMobile .return-popup-instruction {
        margin: 0 0 .85rem;
        color: #64748b;
        font-size: .75rem;
        line-height: 1.45;
    }

    #returnProductMobile #disableClass > div {
        padding: 0 !important;
        margin: 0 0 .8rem !important;
        border: 1px solid #e5e7eb !important;
        border-radius: .85rem !important;
        overflow: visible;
        background: #fff;
    }

    #returnProductMobile #disableClass > div > h6 {
        padding: .7rem .8rem !important;
        margin: 0 !important;
        border-bottom: 1px solid #eef1f4;
        border-radius: .85rem .85rem 0 0;
        background: #fff !important;
        color: #111827;
        font-size: .76rem !important;
    }

    #returnProductMobile #returnProductDetail {
        margin: 0 !important;
        padding: .65rem;
    }

    #returnProductMobile #returnProductDetail + #returnProductDetail {
        padding-top: 0;
    }

    #returnProductMobile .CardOrders {
        border: 1px solid #edf1f5;
        border-radius: .8rem;
        background: #f8fafc;
        overflow: visible;
    }

    #returnProductMobile #returnProductDetail.is-selected .CardOrders {
        border-color: #9fc1da;
        background: #f5faff;
        box-shadow: 0 0 0 3px rgba(159, 193, 218, .14);
    }

    #returnProductMobile #returnProductDetail.is-invalid .CardOrders {
        border-color: #fca5a5;
    }

    #returnProductMobile .CardOrders-details {
        display: grid !important;
        grid-template-columns: 1.25rem 4.6rem minmax(0, 1fr) !important;
        align-items: center !important;
        gap: .7rem !important;
        min-height: 6.8rem;
        margin: 0 !important;
        padding: .7rem !important;
    }

    #returnProductMobile .CardOrders-details > .form-group.checkbox {
        width: 1.25rem !important;
        margin: 0 !important;
    }

    #returnProductMobile .CardOrders-details .checkbox {
        display: inline-flex;
        align-items: center;
        margin: 0 !important;
    }

    #returnProductMobile .CardOrders-details .checkbox__control {
        width: 1.1rem;
        height: 1.1rem;
        border: 1px solid #cbd5e1;
        border-radius: 50%;
        background: #fff;
    }

    #returnProductMobile .CardOrders-details .product-checkbox:checked + .checkbox__control {
        border-color: #245b85;
        background: #245b85;
        box-shadow: inset 0 0 0 3px #fff;
    }

    #returnProductMobile .CardOrders-details-image {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 4.6rem;
        height: 5.9rem;
        margin: 0 !important;
        overflow: hidden;
        border-radius: .55rem;
        background: #eef1f4;
    }

    #returnProductMobile .CardOrders-details-image img {
        width: 100% !important;
        height: 100%;
        object-fit: contain;
    }

    #returnProductMobile .CardOrders-details-content {
        display: block !important;
        min-width: 0;
    }

    #returnProductMobile .CardOrders-details-content-title-link-text {
        display: block;
        color: #1f2937;
        font-size: .78rem;
        font-weight: 600;
        line-height: 1.35;
    }

    #returnProductMobile .return-popup-product-variant {
        display: block;
        margin-top: .35rem;
        color: #64748b;
        font-size: .7rem;
        line-height: 1.35;
    }

    #returnProductMobile .return-popup-product-variant strong {
        color: #1f2937;
        font-weight: 500;
    }

    #returnProductMobile .return-popup-product-code {
        display: block;
        margin-top: .35rem;
        color: #64748b;
        font-size: .7rem;
        line-height: 1.35;
    }

    #returnProductMobile .return-popup-product-code strong {
        color: #1f2937;
        font-weight: 500;
    }

    #returnProductMobile [id^="content-"] {
        display: none;
        padding: 0 .7rem .75rem;
        border-top: 1px solid #e5edf4;
    }

    #returnProductMobile [id^="content-"] .AccountRegister-Form-group {
        display: grid;
        gap: .65rem;
        padding-top: .7rem;
    }

    #returnProductMobile .return-popup-quantity-field {
        grid-column: 1 / -1;
    }

    #returnProductMobile .return-popup-options .form-group {
        margin: 0;
    }

    #returnProductMobile .return-popup-options > .AccountRegister-Form-group > .form-group {
        grid-column: 1 / -1;
    }

    #returnProductMobile .return-popup-quantity {
        width: 100%;
        height: 2.35rem;
        padding: 0 .55rem;
        border: 1px solid #dbe4ec;
        border-radius: .6rem;
        background: #fff;
        color: #1f2937;
        font-size: .72rem;
    }

    #returnProductMobile .return-popup-reason-field {
        grid-column: 1 / -1;
        margin: 0;
    }

    #returnProductMobile .return-popup-field-label {
        display: block;
        margin-bottom: .3rem;
        color: #475569;
        font-size: .68rem;
        font-weight: 600;
    }

    #returnProductMobile .return-popup-reason-wrap {
        margin-top: .65rem;
    }

    #returnProductMobile .return-popup-select-wrap {
        position: relative;
    }

    #returnProductMobile .return-popup-select-wrap .dropdown-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 3rem;
        padding: .75rem .85rem;
        border: 1px solid #e2e8f0;
        border-radius: .7rem;
        background: #fff;
        color: #1f2937;
        font-size: .8rem;
        cursor: pointer;
        transition: border-color .15s ease, box-shadow .15s ease;
    }

    #returnProductMobile .return-popup-select-wrap .dropdown-link:hover,
    #returnProductMobile .return-popup-select-wrap .dropdown-link:focus {
        border-color: #94a3b8;
        box-shadow: 0 0 0 3px rgba(148, 163, 184, .14);
        outline: 0;
    }

    #returnProductMobile .return-popup-select-wrap .dropdown-link-arrow {
        display: inline-flex;
        color: #64748b;
    }

    #returnProductMobile .return-popup-select-wrap .dropdown-link-arrow .icon {
        width: .9rem;
        height: .9rem;
    }

    #returnProductMobile .return-popup-select-wrap .dropdown-menu {
        position: absolute;
        top: calc(100% + .35rem);
        right: 0;
        left: 0;
        z-index: 20;
        display: none;
        width: 100%;
        max-height: min(20rem, calc(100vh - 4rem));
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        padding: .35rem;
        margin: 0;
        box-sizing: border-box;
        border: 1px solid #e2e8f0;
        border-radius: .7rem;
        background: #fff;
        box-shadow: 0 .8rem 1.8rem rgba(15, 23, 42, .14);
    }

    #returnProductMobile .return-popup-select-wrap.return-popup-dropup .dropdown-menu {
        top: auto;
        bottom: calc(100% + .35rem);
    }

    #returnProductMobile .return-popup-select-wrap .dropdown-menu.show {
        display: block;
    }

    #returnProductMobile .return-popup-option {
        display: block;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    #returnProductMobile .return-popup-option .form-group.radio,
    #returnProductMobile .return-popup-option .form-details-radio {
        display: block;
        width: 100%;
        margin: 0;
    }

    #returnProductMobile .return-popup-option .radio {
        display: flex;
        align-items: center;
        width: 100%;
        gap: .6rem;
        min-height: 1.7rem;
        height: 1.7rem;
        padding: .15rem .55rem;
        box-sizing: border-box;
        border-radius: .5rem;
        cursor: pointer;
    }

    #returnProductMobile .return-popup-option .radio:hover {
        background: #f8fafc;
    }

    #returnProductMobile .return-popup-option .radio__input {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 1rem;
        height: 1rem;
    }

    #returnProductMobile .return-popup-option .radio__input input {
        position: absolute;
        width: 1rem;
        height: 1rem;
        margin: 0;
        opacity: 0;
    }

    #returnProductMobile .return-popup-option .radio__control {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1rem;
        height: 1rem;
        border: 1px solid #cbd5e1;
        border-radius: 50%;
    }

    #returnProductMobile .return-popup-option input:checked + .radio__control {
        border-color: #245b85;
        box-shadow: inset 0 0 0 3px #fff;
        background: #245b85;
    }

    #returnProductMobile .return-popup-option .radio__label {
        display: inline-flex;
        align-items: center;
        min-width: 0;
        flex: 1 1 auto;
        color: #334155;
        font-size: .78rem;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #returnProductMobile .return-popup-notice {
        display: none;
        align-items: center;
        gap: .55rem;
        margin: .85rem 0 0;
        padding: .6rem .7rem;
        border: 1px solid #fecaca;
        border-radius: .65rem;
        background: #fff7f7;
        color: #991b1b;
        font-size: .73rem;
    }

    #returnProductMobile .return-popup-notice.is-visible {
        display: flex;
    }

    #returnProductMobile .return-popup-notice.is-success {
        border-color: #bbf7d0;
        background: #f0fdf4;
        color: #166534;
    }

    #returnProductMobile .return-popup-notice-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 1.15rem;
        height: 1.15rem;
        border-radius: 50%;
        background: #c51f2b;
        color: #fff;
        font-size: .7rem;
        font-weight: 700;
    }

    #returnProductMobile .return-popup-notice.is-success .return-popup-notice-icon {
        background: #16a34a;
    }

    #returnProductMobile .return-popup-actions {
        display: grid;
        gap: .55rem;
        margin-top: .9rem;
    }

    #returnProductMobile .return-popup-submit,
    #returnProductMobile .return-popup-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 2.8rem;
        border-radius: .65rem;
        font-size: .78rem;
        font-weight: 700;
    }

    #returnProductMobile .return-popup-submit {
        border: 1px solid #111827;
        background: #111827;
        color: #fff;
    }

    #returnProductMobile .return-popup-secondary {
        border: 1px solid #e2e8f0;
        background: #fff;
        color: #475569;
    }

    #returnProductMobile .return-popup-confirm {
        display: none;
    }

    #returnProductMobile .return-popup-confirm-text {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .45rem;
        width: fit-content;
        max-width: 100%;
        margin: .2rem auto 0;
        padding: .5rem .75rem;
        border: 1px solid #dbeafe;
        border-radius: 999px;
        background: #eff6ff;
        color: #245b85;
        font-size: .74rem;
        font-weight: 600;
        line-height: 1.25;
        text-align: center;
    }

    #returnProductMobile .return-popup-confirm-text::before {
        content: "?";
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 1.1rem;
        height: 1.1rem;
        border-radius: 50%;
        background: #245b85;
        color: #fff;
        font-size: .7rem;
        font-weight: 700;
    }
