:root {
    --cart-red: #e50023;
    --cart-red-dark: #c6001e;
    --cart-ink: #20242b;
    --cart-muted: #69707c;
    --cart-line: #e8eaf0;
    --cart-soft: #f6f7f9;
}

article {
    overflow: visible;
}

.cart-content-chilld {
    padding: 38px 0 70px;
    background: linear-gradient(180deg, #f7f8fa 0%, #f1f3f6 100%);
}

.cart-page-shell {
    margin: 0;
    padding: 0;
}

.container.container-cart-full {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 24px;
    width: calc(100% - 32px);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.col-left-cart,
.col-right-cart {
    min-width: 0;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid var(--cart-line);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(31, 38, 50, .07);
}

.col-left-cart {
    padding: 26px;
}

.col-right-cart {
    position: sticky;
    top: 96px;
    width: 100%;
    padding: 0 22px 22px;
}

.cart-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--cart-line);
}

    .cart-heading .decorSvgProduct {
        display: grid;
        place-items: center;
        flex: 0 0 58px;
        width: 58px;
        height: 58px;
        border-radius: 16px;
        background: linear-gradient(135deg, #f32442, var(--cart-red-dark));
        box-shadow: 0 8px 18px rgba(229, 0, 35, .2);
    }

        .cart-heading .decorSvgProduct svg {
            width: 30px;
            height: 30px;
        }

.cart-eyebrow {
    display: block;
    margin-bottom: 3px;
    color: var(--cart-red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cart-heading h1.title-count {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: auto;
    margin: 0;
    color: var(--cart-ink);
    background: none;
    font-family: 'InterSB', Arial, sans-serif;
    font-size: 30px;
    line-height: 1.15;
    text-align: left;
    text-transform: none;
}

    .cart-heading h1.title-count:before {
        display: none;
    }

.cart-item-count {
    padding: 5px 9px;
    border-radius: 999px;
    background: #fff0f2;
    color: var(--cart-red);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.cart-subtitle {
    margin: 5px 0 0;
    color: var(--cart-muted);
    font-size: 14px;
}

.contain.contact {
    margin-top: 18px !important;
}

.table_cart {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    overflow: hidden;
    border: 1px solid var(--cart-line);
    border-radius: 13px;
    background: #fff;
}

    .table_cart thead {
        display: table-header-group;
    }

    .table_cart tbody {
        display: table-row-group;
        width: auto;
    }

    .table_cart tr {
        display: table-row;
        background: #fff;
    }

    .table_cart th,
    .table_cart td {
        display: table-cell;
        width: auto;
        padding: 15px 10px;
        box-sizing: border-box;
        vertical-align: middle;
        border: 0;
        border-top: 1px solid var(--cart-line);
        text-align: center;
    }

    .table_cart thead th {
        border-top: 0;
        background: var(--cart-soft);
        color: #666d78;
        font-family: 'InterSB', Arial, sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .04em;
        text-transform: uppercase;
    }

    .table_cart th.Image,
    .table_cart td.Image {
        width: 92px;
    }

    .table_cart th.name,
    .table_cart td.name {
        width: auto;
        padding-left: 4px;
        text-align: left;
    }

    .table_cart th.quantity,
    .table_cart td.quantity {
        width: 142px;
    }

    .table_cart th.price-row,
    .table_cart td.price-row {
        width: 142px;
        text-align: right;
    }

    .table_cart th.delete,
    .table_cart td.delete {
        width: 54px;
    }

.cart-product-image {
    display: block;
}

.table_cart td.Image img,
.table_cart .thumbnail {
    display: block;
    width: 72px;
    height: 72px;
    margin: auto;
    box-sizing: border-box;
    border: 1px solid #f0f1f4;
    border-radius: 11px;
    background: #fff;
    object-fit: contain;
    transition: transform .2s ease;
}

.cart-product-image:hover img {
    transform: translateY(-2px);
}

.table_cart td.name {
    color: var(--cart-ink);
    font-size: 14px;
    font-weight: 600;
}

.table_cart .product-name {
    color: var(--cart-ink);
    text-decoration: none;
}

    .table_cart .product-name:hover {
        color: var(--cart-red);
    }

    .table_cart .product-name span {
        display: -webkit-box;
        overflow: hidden;
        line-height: 1.45;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

.table_cart td.name strong {
    display: block;
    margin-top: 6px;
    color: var(--cart-red);
    font-size: 14px;
}

.table_cart .type {
    margin-top: 5px;
    color: var(--cart-muted);
    font-size: 12px;
    font-weight: 400;
}

    .table_cart .type p {
        margin: 2px 0;
    }

.table_cart .quantity .textbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    overflow: visible;
    border: 1px solid #dfe2e8;
    border-radius: 10px;
    background: #fff;
}

.table_cart .textbox a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    color: #4a505a;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    transition: .18s ease;
}

    .table_cart .textbox a:hover {
        background: #fff0f2;
        color: var(--cart-red);
    }

.table_cart .txt {
    width: 40px;
    height: 34px;
    padding: 0;
    border: 0;
    border-right: 1px solid #eceef2;
    border-left: 1px solid #eceef2;
    border-radius: 0;
    outline: 0;
    color: var(--cart-ink);
    background: #fff;
    font-weight: 700;
    text-align: center;
}

.table_cart td.price-row {
    color: var(--cart-red);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.table_cart td.delete {
    padding-right: 9px;
}

.table_cart .btnDelete {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin: auto;
    border-radius: 10px;
    color: #a1a6af;
    text-decoration: none;
    transition: .18s ease;
}

    .table_cart .btnDelete span {
        display: none;
    }

    .table_cart .btnDelete:hover {
        background: #fff0f2;
        color: var(--cart-red);
    }

.cart-list-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    color: #858b94;
    font-size: 12px;
}

.cart-continue-shopping {
    color: #4b515a;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

    .cart-continue-shopping:hover {
        color: var(--cart-red);
    }

.cart-list-footer i {
    margin-right: 5px;
}

.cart-summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0 18px;
    border-bottom: 1px solid var(--cart-line);
}

    .cart-summary-head .tit-cart {
        padding: 0;
        border: 0;
        color: var(--cart-ink);
        font-family: 'InterSB', Arial, sans-serif;
        font-size: 18px;
        font-weight: 700;
        text-transform: none;
    }

    .cart-summary-head > i {
        color: var(--cart-red);
        font-size: 19px;
    }

.total {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-top: 17px;
    overflow: visible;
}

    .total > span {
        float: none;
        color: var(--cart-muted);
        font-size: 14px;
        white-space: nowrap;
    }

    .total .lbTotal {
        min-width: 0;
        float: none;
        color: var(--cart-ink);
        font-family: 'InterSB', Arial, sans-serif;
        font-size: 14px;
        line-height: 1.35;
        text-align: right;
    }

.cart-shipping-row .lbTotal {
    color: var(--cart-muted);
    font-size: 13px;
    font-weight: 500;
}

.total:last-of-type {
    margin-top: 19px;
    padding-top: 17px;
    border-top: 1px dashed #d9dce2;
}

    .total:last-of-type > span {
        color: var(--cart-ink);
        font-weight: 700;
    }

    .total:last-of-type .lbTotal {
        color: var(--cart-red);
        font-size: 20px;
    }

.total .lbTotal p {
    display: block;
    margin: 2px 0 0;
    color: var(--cart-muted);
    font-size: 13px;
    font-weight: 400;
}

.cart-summary-note {
    margin: 21px 0 13px;
    color: var(--cart-muted);
    font-size: 13px;
}

    .cart-summary-note i {
        margin-right: 6px;
        color: #198754;
    }

.btnContinue {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    box-sizing: border-box;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #f01838, var(--cart-red-dark));
    box-shadow: 0 9px 20px rgba(229, 0, 35, .22);
    font-family: 'InterSB', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .btnContinue:before {
        content: none;
    }

    .btnContinue:hover {
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 12px 24px rgba(229, 0, 35, .28);
    }

.cart-assurances {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid var(--cart-line);
    color: var(--cart-muted);
    font-size: 14px;
}

    .cart-assurances span {
        white-space: nowrap;
    }

    .cart-assurances i {
        margin-right: 4px;
        color: var(--cart-red);
    }

.cart-empty-state {
    padding: 54px 20px;
    border: 1px dashed #d9dce2;
    border-radius: 14px;
    background: #fafbfc;
    text-align: center;
}

.cart-empty-icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    margin: 0 auto 15px;
    border-radius: 50%;
    color: var(--cart-red);
    background: #fff0f2;
    font-size: 27px;
}

.cart-empty-state h2 {
    margin: 0 0 8px;
    color: var(--cart-ink);
    font-size: 21px;
}

.cart-empty-state p {
    max-width: 420px;
    margin: 0 auto 20px;
    color: var(--cart-muted);
    font-size: 14px;
}

.cart-shop-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 20px;
    border-radius: 10px;
    color: #fff;
    background: var(--cart-red);
    font-weight: 700;
    text-decoration: none;
}

    .cart-shop-link:hover {
        color: #fff;
        background: var(--cart-red-dark);
    }

.cart-legacy-message {
    display: none !important;
}

@media (max-width: 1023px) {
    .container.container-cart-full {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 16px;
    }

    .col-left-cart {
        padding: 20px;
    }

    .table_cart th.quantity,
    .table_cart td.quantity {
        width: 126px;
    }

    .table_cart th.price-row,
    .table_cart td.price-row {
        width: 126px;
    }
}

@media (max-width: 767px) {
    .cart-content-chilld {
        padding: 18px 0 42px;
        overflow: hidden;
    }

    .container.container-cart-full {
        display: block;
        width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        margin-right: auto;
        margin-left: auto;
    }

    .col-left-cart {
        width: 100%;
        max-width: 100%;
        padding: 16px 12px;
        border-radius: 14px;
    }

    .col-right-cart {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-top: 14px;
        padding: 0 16px 17px;
        border-radius: 14px;
    }

    .cart-heading {
        gap: 12px;
        padding: 2px 2px 16px;
    }

        .cart-heading .decorSvgProduct {
            flex-basis: 46px;
            width: 46px;
            height: 46px;
            border-radius: 13px;
        }

            .cart-heading .decorSvgProduct svg {
                width: 25px;
                height: 25px;
            }

    .cart-eyebrow {
        font-size: 10px;
    }

    .cart-heading h1.title-count {
        gap: 7px;
        font-size: 23px;
    }

    .cart-item-count {
        padding: 4px 7px;
        font-size: 10px;
    }

    .cart-subtitle {
        max-width: 260px;
        font-size: 12px;
        line-height: 1.4;
    }

    .contain.contact {
        margin-top: 10px !important;
    }

    .table_cart,
    .table_cart tbody {
        display: block;
        border: 0;
        overflow: visible;
    }

        .table_cart thead {
            display: none;
        }

        .table_cart tr {
            position: relative;
            display: grid;
            grid-template-columns: 74px minmax(0, 1fr) auto;
            gap: 8px 10px;
            padding: 15px 0;
            border-top: 1px solid var(--cart-line);
        }

            .table_cart tr:first-child {
                border-top: 0;
            }

        .table_cart td {
            display: block;
            width: auto !important;
            margin: 0 !important;
            padding: 0 !important;
            border: 0;
        }

            .table_cart td.Image {
                grid-column: 1;
                grid-row: 1 / span 2;
            }

                .table_cart td.Image img,
                .table_cart .thumbnail {
                    width: 72px;
                    height: 72px;
                }

            .table_cart td.name {
                grid-column: 2 / 4;
                padding-right: 28px !important;
                font-size: 13px;
            }

                .table_cart td.name strong {
                    margin-top: 5px;
                    font-size: 13px;
                }

            .table_cart td.quantity {
                grid-column: 2;
                align-self: center;
                text-align: left;
            }

            .table_cart td.price-row {
                display: block;
                grid-column: 3;
                align-self: center;
                font-size: 14px;
                text-align: right;
            }

            .table_cart td.delete {
                position: absolute;
                top: 10px;
                right: 0;
                display: block;
            }

        .table_cart .btnDelete {
            width: 30px;
            height: 30px;
        }

        .table_cart .textbox a {
            width: 31px;
            height: 31px;
        }

        .table_cart .txt {
            width: 36px;
            height: 31px;
        }

    .cart-list-footer {
        padding-top: 13px;
        border-top: 1px solid var(--cart-line);
    }

        .cart-list-footer > span {
            display: none;
        }

    .cart-summary-head {
        padding: 19px 0 16px;
    }

        .cart-summary-head .tit-cart {
            font-size: 17px;
        }

    .total {
        width: 100%;
    }

        .total .lbTotal {
            max-width: 58%;
        }

    .cart-assurances {
        font-size: 10px;
    }
}

@media (max-width: 374px) {
    .cart-heading h1.title-count {
        font-size: 20px;
    }

    .cart-item-count {
        display: none;
    }

    .cart-subtitle {
        display: none;
    }

    .table_cart tr {
        grid-template-columns: 62px minmax(0, 1fr) auto;
        gap: 7px 8px;
    }

    .table_cart td.Image img,
    .table_cart .thumbnail {
        width: 60px;
        height: 60px;
    }

    .table_cart td.price-row {
        font-size: 13px;
    }
}