:root {
    --checkout-navy: #060b3b;
    --checkout-blue: #101a73;
    --checkout-red: #e51e45;
    --checkout-green: #0a9b76;
    --checkout-text: #12172f;
    --checkout-muted: #667085;
    --checkout-line: #e4e8f1;
    --checkout-soft: #f6f8fc;
    --checkout-white: #fff;
    --checkout-shadow: 0 16px 45px rgba(9, 18, 66, .08);
}

body.page_shopping-cart {
    max-width: 100%;
    background: var(--checkout-soft);
    color: var(--checkout-text);
    overflow-x: hidden;
}

.page_shopping-cart .breadcrumb-section {
    background: var(--checkout-white);
    border-bottom: 1px solid var(--checkout-line);
}

.checkout-page {
    padding-bottom: 72px;
}

.checkout-page,
.checkout-page *,
.checkout-page *::before,
.checkout-page *::after {
    box-sizing: border-box;
}

.checkout-page .container {
    max-width: 1170px;
}

.checkout-cart-section {
    padding: 42px 0 18px;
}

.checkout-stock-update {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 17px;
    margin: 0 0 22px;
    padding: 21px 23px;
    border: 1px solid #f0cf8a;
    border-radius: 16px;
    background: linear-gradient(135deg, #fffaf0, #fffdf8);
    box-shadow: 0 10px 28px rgba(137, 91, 11, .08);
}

.checkout-stock-update-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #fff0c7;
    color: #a56b05;
    font-size: 22px;
}

.checkout-stock-update h2 {
    margin: 4px 0 6px;
    color: var(--checkout-navy);
    font-size: 22px;
    font-weight: 760;
}

.checkout-stock-update p {
    margin: 0;
    color: #60697c;
    font-size: 14px;
    line-height: 1.55;
}

.checkout-stock-update ul {
    display: grid;
    gap: 7px;
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.checkout-stock-update li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 10px 12px;
    border: 1px solid #eee2c9;
    border-radius: 10px;
    background: rgba(255, 255, 255, .78);
    color: #343c50;
    font-size: 14px;
    line-height: 1.45;
}

.checkout-stock-update li i { margin-top: 3px; color: #b77a0a; }
.checkout-stock-update li.is-removed i { color: var(--checkout-red); }
.checkout-stock-update .checkout-stock-question { color: var(--checkout-text); font-weight: 700; }
.checkout-stock-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 15px; }
.checkout-stock-actions a { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 42px; padding: 10px 14px; border-radius: 9px; font-size: 13px; font-weight: 750; text-decoration: none; }
.checkout-stock-primary { background: var(--checkout-navy); color: #fff; }
.checkout-stock-primary:hover { color: #fff; background: var(--checkout-blue); }
.checkout-stock-secondary { border: 1px solid #d9deea; background: #fff; color: var(--checkout-navy); }
@media (max-width: 600px) {
    .checkout-stock-update { grid-template-columns: 1fr; padding: 17px; }
    .checkout-stock-update-icon { width: 44px; height: 44px; font-size: 18px; }
    .checkout-stock-update h2 { font-size: 19px; }
    .checkout-stock-actions { flex-direction: column; }
    .checkout-stock-actions a { width: 100%; }
}

.checkout-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 24px;
}

.checkout-heading h1 {
    margin: 5px 0 7px;
    color: var(--checkout-navy);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.checkout-heading p,
.checkout-section-heading p,
.checkout-login-panel > p {
    margin: 0;
    color: var(--checkout-muted);
    font-size: 15px;
    line-height: 1.55;
}

.checkout-kicker,
.checkout-section-kicker {
    display: block;
    color: var(--checkout-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.checkout-kicker i {
    margin-right: 6px;
}

.checkout-steps {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.checkout-steps li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8a91a5;
    font-size: 12px;
}

.checkout-steps li + li {
    margin-left: 38px;
}

.checkout-steps li + li::before {
    content: "";
    position: absolute;
    right: calc(100% + 9px);
    width: 20px;
    height: 1px;
    background: #ced3df;
}

.checkout-steps span,
.checkout-section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border: 1px solid #d8ddea;
    border-radius: 50%;
    background: var(--checkout-white);
    color: #737b91;
    font-weight: 800;
}

.checkout-steps .is-active {
    color: var(--checkout-navy);
}

.checkout-steps .is-active span,
.checkout-section-number {
    border-color: var(--checkout-navy);
    background: var(--checkout-navy);
    color: #fff;
}

.checkout-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 18px;
    border: 1px solid #dcebe6;
    border-radius: 12px;
    background: #f4fbf8;
    color: #315e52;
    overflow: hidden;
}

.checkout-trust-strip span {
    padding: 13px 18px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.checkout-trust-strip span + span {
    border-left: 1px solid #dcebe6;
}

.checkout-trust-strip i {
    margin-right: 7px;
    color: var(--checkout-green);
}

.checkout-cart-card,
.checkout-section-card {
    border: 1px solid var(--checkout-line);
    border-radius: 18px;
    background: var(--checkout-white);
    box-shadow: var(--checkout-shadow);
    overflow: hidden;
}

.checkout-cart-card {
    padding: 8px 26px 0;
}

.checkout-products-table thead th {
    padding: 17px 12px;
    border-bottom: 1px solid var(--checkout-line) !important;
    color: var(--checkout-muted) !important;
    font-size: 11px;
    font-weight: 800 !important;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.checkout-products-table tbody tr td {
    padding: 20px 12px !important;
    border-bottom: 1px solid var(--checkout-line) !important;
}

.checkout-products-table tbody tr:last-child td {
    border-bottom: 0 !important;
}

.checkout-product-image img {
    width: 82px;
    height: 82px;
    padding: 6px !important;
    border: 1px solid var(--checkout-line) !important;
    border-radius: 12px;
    background: #fff;
    object-fit: contain;
}

.checkout-product-name a {
    display: inline-block;
    max-width: 390px;
    color: var(--checkout-navy) !important;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.42;
}

.checkout-product-price h4,
.checkout-product-total span {
    margin: 0;
    color: var(--checkout-text);
    font-size: 15px;
    font-weight: 750;
    white-space: nowrap;
}

.checkout-price-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    min-width: 150px;
}

.checkout-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: max-content;
    max-width: 100%;
    padding: 4px 8px;
    border-radius: 999px;
    background: #e9fbf5;
    color: #07815f;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.2;
    white-space: normal;
}

.checkout-promo-badge--muted {
    margin-bottom: 5px;
    background: #eef3ff;
    color: var(--checkout-blue);
}

.checkout-old-price,
.checkout-new-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.checkout-old-price small,
.checkout-new-price small {
    color: #7b8497;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.checkout-old-price del {
    color: #8a93a5;
    font-size: 13px;
    font-weight: 700;
}

.checkout-new-price strong {
    color: var(--checkout-navy);
    font-size: 16px;
    font-weight: 850;
    white-space: nowrap;
}

.checkout-line-save {
    color: #07815f;
    font-size: 12px;
    font-weight: 800;
}

.checkout-line-total-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.checkout-line-total-stack del {
    color: #8a93a5;
    font-size: 13px;
    font-weight: 700;
}

.checkout-line-total-stack strong {
    color: var(--checkout-navy);
    font-size: 16px;
    font-weight: 850;
    white-space: nowrap;
}

.checkout-line-total-stack small {
    color: #07815f;
    font-size: 12px;
    font-weight: 800;
}

.checkout-product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #8990a2 !important;
    transition: .2s ease;
}

.checkout-product-remove a:hover {
    background: #fff0f3;
    color: var(--checkout-red) !important;
}

.checkout-product-quantity .rounded-pill {
    min-width: 116px;
    border-color: #d9deea !important;
    background: var(--checkout-soft);
}

.checkout-cart-tools {
    margin-top: 8px !important;
}

.checkout-cart-tools > tbody > tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 38px;
}

.checkout-cart-tools > tbody > tr > td {
    display: block;
    width: auto;
    padding: 28px 12px 30px !important;
    border-top: 1px solid var(--checkout-line) !important;
}

.checkout-clear-cart {
    margin-bottom: 22px;
}

.checkout-text-action {
    padding: 0 !important;
    color: #7b8295 !important;
    font-size: 13px;
    font-weight: 600 !important;
}

.checkout-text-action:hover {
    color: var(--checkout-red) !important;
}

.checkout-promo {
    max-width: 440px;
}

.checkout-promo .form-control {
    height: 48px;
    border-color: #d9deea;
    border-radius: 10px 0 0 10px;
}

.checkout-promo .btn {
    min-width: 110px;
    border-radius: 0 10px 10px 0;
    background: var(--checkout-navy);
}

.checkout-order-summary {
    border-radius: 14px;
    background: var(--checkout-soft);
}

.checkout-order-summary > .border-bottom {
    border-color: #dfe3ed !important;
}

.checkout-order-summary h2 {
    color: var(--checkout-navy);
    font-weight: 750;
}

.checkout-order-summary .table th,
.checkout-order-summary .table td {
    padding: 10px 0 !important;
    border: 0;
    font-size: 14px;
}

.checkout-order-summary .table th {
    color: #555e73;
    font-weight: 600;
}

.checkout-order-summary .table td {
    color: var(--checkout-text);
}

.checkout-order-summary .checkout-summary-before-promo th,
.checkout-order-summary .checkout-summary-before-promo td {
    color: #7b8497;
}

.checkout-order-summary .checkout-summary-before-promo .amount {
    text-decoration: line-through;
}

.checkout-order-summary .checkout-summary-promo-discount th,
.checkout-order-summary .checkout-summary-promo-discount td {
    color: #07815f;
    font-weight: 800;
}

.checkout-order-summary .order-total th,
.checkout-order-summary .order-total td {
    padding-top: 16px !important;
    border-top: 1px solid #dfe3ed;
    color: var(--checkout-navy);
    font-size: 17px;
}

.checkout-empty-state {
    padding: 70px 24px 76px;
}

.checkout-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #eef1fb;
    color: var(--checkout-blue);
    font-size: 29px;
}

.checkout-empty-state h2 {
    margin-bottom: 10px;
    color: var(--checkout-navy);
    font-size: 26px;
    font-weight: 750;
}

.checkout-primary-action {
    margin-top: 22px;
    padding: 13px 28px;
    border-radius: 10px;
    background: var(--checkout-navy);
    color: #fff !important;
    font-weight: 750;
}

.checkout-cart-section .deliveryinfo {
    margin: 18px 0 0;
    border: 1px solid #f0dfad;
    border-radius: 12px;
    background: #fffaf0;
    color: #6e5720;
}

.checkout-section {
    padding: 16px 0;
}

.checkout-section-card {
    padding: 30px 34px;
}

.checkout-section-heading,
.checkout-details-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
    text-align: left !important;
}

.checkout-section-heading h2,
.checkout-details-heading h2,
.checkout-login-panel h2 {
    margin: 2px 0 5px;
    color: var(--checkout-navy);
    font-size: 24px;
    font-weight: 750;
    line-height: 1.2;
}

.checkout-option-grid {
    display: grid;
    gap: 14px;
}

.checkout-option-grid--payment {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-option {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    min-height: 94px;
    margin: 0 !important;
    padding: 18px;
    border: 1px solid #dce1ec;
    border-radius: 13px;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.checkout-option:hover,
.checkout-delivery-options .paymentbox:hover {
    border-color: #98a2c7;
    box-shadow: 0 7px 20px rgba(10, 18, 70, .07);
}

.checkout-option.is-selected,
.checkout-delivery-options .paymentbox.is-selected {
    border-color: var(--checkout-blue);
    background: #f6f7ff;
    box-shadow: 0 0 0 3px rgba(16, 26, 115, .08);
}

.checkout-option > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.checkout-option-control {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border: 2px solid #aab1c2;
    border-radius: 50%;
    background: #fff;
}

.checkout-option input:checked + .checkout-option-control {
    border-color: var(--checkout-blue);
}

.checkout-option input:checked + .checkout-option-control::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--checkout-blue);
}

.checkout-option-copy {
    display: flex;
    flex-direction: column;
    color: var(--checkout-muted);
    font-size: 13px;
    line-height: 1.5;
}

.checkout-option-copy strong {
    margin-bottom: 5px;
    color: var(--checkout-navy);
    font-size: 15px;
}

.checkout-option-copy p {
    margin: 0;
}

.checkout-delivery-section .checkout-section-card {
    margin-right: 15px;
    margin-left: 15px;
}

.checkout-delivery-options {
    margin-bottom: 14px;
}

.checkout-delivery-options > .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.checkout-delivery-options--primary > .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-delivery-options .paymentbox {
    display: block;
    width: auto;
    max-width: none;
    min-height: 88px;
    margin: 0 !important;
    padding: 17px 18px;
    border: 1px solid #dce1ec;
    border-radius: 13px;
    background: #fff;
    cursor: pointer;
    transition: .2s ease;
}

.checkout-delivery-options .paymentinfo {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0;
    color: var(--checkout-navy);
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
}

.checkout-delivery-options .paymentinfo input {
    margin-top: 3px;
    accent-color: var(--checkout-blue);
}

.checkout-delivery-options .paymentbox p {
    margin: 7px 0 0;
    color: var(--checkout-muted);
    font-size: 13px;
    line-height: 1.45;
}

.checkout-customer-details {
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid var(--checkout-line);
}

.checkout-account-switch {
    margin-bottom: 16px;
}

.checkout-account-switch .row {
    gap: 10px;
    margin: 0;
}

.checkout-account-switch .usertype {
    flex: 1 1 180px;
    max-width: none;
    margin: 0 !important;
    border: 1px solid #dce1ec;
    border-radius: 10px;
    background: #fff;
    color: #697187;
    font-size: 14px;
    font-weight: 700;
}

.checkout-account-switch .usertype.active {
    border-color: var(--checkout-navy);
    background: var(--checkout-navy);
    color: #fff;
}

.checkout-form-card,
.checkout-login-card {
    padding: 0;
    border: 0;
    box-shadow: none;
}

.checkout-form-card .form-row {
    margin-right: -7px;
    margin-left: -7px;
}

.checkout-form-card .form-row > [class*="col-"],
.checkout-login-card .form-row > [class*="col-"] {
    margin-bottom: 16px;
    padding-right: 7px;
    padding-left: 7px;
}

.checkout-form-card label,
.checkout-login-card label {
    margin-bottom: 7px;
    color: #30384e;
    font-size: 12px;
    font-weight: 750;
}

.checkout-form-card .form-control,
.checkout-login-card .form-control {
    height: 48px;
    border: 1px solid #d8deea;
    border-radius: 9px;
    background: #fff;
    color: var(--checkout-text);
    font-size: 14px;
    box-shadow: none;
    transition: .2s ease;
}

.checkout-form-card textarea.form-control {
    height: auto;
    min-height: 104px;
    padding-top: 13px;
    resize: vertical;
}

.checkout-form-card .form-control:focus,
.checkout-login-card .form-control:focus {
    border-color: var(--checkout-blue);
    box-shadow: 0 0 0 3px rgba(16, 26, 115, .08);
}

.checkout-submit-area {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--checkout-line);
}

.checkout-submit-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f4fbf8;
    color: #315e52;
}

.checkout-submit-trust > i {
    color: var(--checkout-green);
    font-size: 18px;
}

.checkout-submit-trust span {
    display: flex;
    flex-direction: column;
}

.checkout-submit-trust small {
    margin-top: 2px;
    color: #607d75;
}

.checkout-order-button {
    min-height: 54px;
    border: 0;
    border-radius: 11px;
    background: var(--checkout-red) !important;
    font-size: 16px;
    font-weight: 800 !important;
    box-shadow: 0 10px 24px rgba(229, 30, 69, .2);
}

.checkout-order-button:hover {
    background: #c91637 !important;
    transform: translateY(-1px);
}

.checkout-terms-note {
    display: block;
    margin-top: 9px;
    color: var(--checkout-muted);
    text-align: center;
}

.checkout-login-panel {
    align-self: flex-start;
    margin-top: 30px;
    padding: 24px;
    border: 1px solid var(--checkout-line);
    border-radius: 14px;
    background: var(--checkout-soft);
}

.checkout-login-card {
    margin-top: 18px;
    background: transparent;
}

.checkout-login-button {
    width: 100%;
    min-height: 46px;
    border-radius: 9px;
    background: var(--checkout-navy) !important;
    font-weight: 750;
}

@media (max-width: 991.98px) {
    .checkout-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .checkout-steps {
        width: 100%;
        justify-content: space-between;
    }

    .checkout-steps li + li {
        margin-left: 24px;
    }

    .checkout-cart-tools > tbody > tr {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkout-cart-tools > tbody > tr > td:first-child {
        padding-bottom: 16px !important;
    }

    .checkout-order-summary {
        margin-bottom: 24px;
    }

    .checkout-delivery-options > .row {
        grid-template-columns: 1fr 1fr;
    }

    .checkout-login-panel {
        margin-top: 24px;
    }
}

@media (max-width: 767.98px) {
    .checkout-page,
    .checkout-page section,
    .checkout-heading,
    .checkout-steps,
    .checkout-page .row,
    .checkout-page [class*="col-"] {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .checkout-page .container {
        width: 100%;
        max-width: 100%;
        padding-right: 14px;
        padding-left: 14px;
    }

    .checkout-page {
        padding-bottom: 35px;
        overflow: hidden;
    }

    .checkout-cart-section {
        padding-top: 25px;
    }

    .checkout-heading p {
        max-width: 100%;
        font-size: 14px;
        white-space: normal;
    }

    .checkout-steps {
        align-items: flex-start;
    }

    .checkout-steps li {
        flex: 1 1 0;
        min-width: 0;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .checkout-steps li + li {
        margin-left: 0;
    }

    .checkout-steps li + li::before {
        top: 16px;
        right: calc(100% - 8px);
        width: 16px;
    }

    .checkout-steps strong {
        max-width: 100%;
        font-size: 10px;
        line-height: 1.25;
        white-space: normal;
    }

    .checkout-trust-strip {
        grid-template-columns: 1fr;
    }

    .checkout-trust-strip span {
        padding: 10px 14px;
        text-align: left;
    }

    .checkout-trust-strip span + span {
        border-top: 1px solid #dcebe6;
        border-left: 0;
    }

    .checkout-cart-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 5px 15px 0;
        border-radius: 14px;
    }

    .checkout-products-table,
    .checkout-products-table tbody {
        display: block;
        width: 100%;
        min-width: 0;
        table-layout: fixed;
    }

    .checkout-products-table .checkout-product-row {
        position: relative;
        display: grid !important;
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 8px 13px;
        padding: 18px 0;
        border-bottom: 1px solid var(--checkout-line) !important;
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .checkout-products-table .checkout-product-row td {
        display: block !important;
        width: auto !important;
        padding: 0 !important;
        border: 0 !important;
        text-align: left !important;
    }

    .checkout-products-table .checkout-product-row td::before {
        display: none !important;
    }

    .checkout-product-remove {
        position: absolute;
        top: 12px;
        right: 0;
        z-index: 2;
    }

    .checkout-product-remove a {
        padding: 0 !important;
        background: #fff0f3 !important;
        color: var(--checkout-red) !important;
    }

    .checkout-product-image {
        grid-row: 1 / span 4;
        grid-column: 1;
    }

    .checkout-product-image img {
        width: 76px;
        height: 76px;
    }

    .checkout-product-name {
        grid-column: 2;
        padding-right: 35px !important;
    }

    .checkout-product-name a {
        max-width: 100%;
        font-size: 14px;
        white-space: normal !important;
        overflow-wrap: anywhere;
    }

    .checkout-product-price {
        grid-column: 2;
    }

    .checkout-product-price h4 {
        font-size: 14px;
    }

    .checkout-product-quantity {
        grid-column: 2;
    }

    .checkout-product-total {
        grid-column: 2;
        align-self: center;
        text-align: left !important;
    }

    .checkout-product-total span {
        white-space: normal;
    }

    .checkout-cart-tools,
    .checkout-cart-tools tbody {
        display: block;
        width: 100%;
    }

    .checkout-cart-tools > tbody > tr {
        display: flex;
        flex-direction: column-reverse;
    }

    .checkout-cart-tools > tbody > tr > td {
        width: 100%;
        padding: 22px 0 !important;
    }

    .checkout-order-summary {
        border-radius: 11px;
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    .checkout-promo .input-group {
        width: 100%;
        flex-wrap: nowrap;
    }

    .checkout-promo .form-control {
        min-width: 0;
        width: 1%;
    }

    .checkout-promo .input-group-append,
    .checkout-promo .btn {
        flex: 0 0 auto;
    }

    .checkout-order-summary .table,
    .checkout-order-summary .table tbody {
        display: block;
        width: 100%;
    }

    .checkout-order-summary .table tr {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
        gap: 12px;
        width: 100%;
    }

    .checkout-order-summary .table th,
    .checkout-order-summary .table td {
        display: block !important;
        width: auto !important;
        min-width: 0;
        text-align: right !important;
        overflow-wrap: anywhere;
    }

    .checkout-order-summary .table th {
        text-align: left !important;
    }

    .checkout-order-summary .table td::before {
        display: none !important;
        content: none !important;
    }

    .checkout-section-card {
        width: 100%;
        max-width: 100%;
        padding: 23px 17px;
        border-radius: 14px;
    }

    .checkout-section-heading h2,
    .checkout-details-heading h2,
    .checkout-login-panel h2 {
        font-size: 21px;
    }

    .checkout-section-heading > div,
    .checkout-details-heading > div,
    .checkout-option-copy {
        min-width: 0;
    }

    .checkout-option-grid--payment,
    .checkout-delivery-options > .row,
    .checkout-delivery-options--primary > .row {
        grid-template-columns: 1fr;
    }

    .checkout-option,
    .checkout-delivery-options .paymentbox {
        min-height: 0;
    }

    .checkout-delivery-section .checkout-section-card {
        margin-right: 0;
        margin-left: 0;
    }

    .checkout-customer-details {
        padding-right: 15px;
        padding-left: 15px;
    }

    .checkout-account-switch .row {
        flex-direction: column;
    }

    .checkout-account-switch .usertype {
        flex-basis: auto;
        width: 100%;
    }

    .checkout-order-button {
        position: relative;
        min-height: 56px;
    }

    .checkout-login-panel {
        margin-right: 15px;
        margin-left: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .checkout-page *,
    .checkout-page *::before,
    .checkout-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
