/* =========================================================
   MACAN CHOOB - CART PAGE
   Completely Independent Cart Styles
   ========================================================= */


/* =========================================================
   01. BASE / RESET
   ========================================================= */

.main-cart,
.main-cart *,
.cart-empty,
.cart-empty * {
    box-sizing: border-box;
}

.main-cart {
    width: 100%;
    max-width: 1250px;
    margin: 35px auto 60px;

    direction: rtl;

    color: #333;

    font-family: inherit;

    overflow: visible;
}

.main-cart a {
    text-decoration: none;
}

.main-cart img {
    max-width: 100%;
    height: auto;
}

.main-cart button,
.main-cart input {
    font-family: inherit;
}


/* =========================================================
   02. MAIN LAYOUT
   ========================================================= */

.main-cart {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 350px;

    gap: 24px;

    align-items: start;
}


/* Product content */

.main-cart .o-page__content {
    width: 100%;
    min-width: 0;
}


/* Sidebar */

.main-cart .o-page__aside {
    width: 100%;
    min-width: 0;

    position: sticky;
    top: 20px;
}


/* =========================================================
   03. PAGE TITLE
   ========================================================= */

.main-cart .o-headline {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 58px;

    margin-bottom: 16px;
    padding: 0 22px;

    background: #fff;

    border: 1px solid #e8e6df;

    border-radius: 16px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .035);

    overflow: hidden;
}

.main-cart .o-headline::before {
    content: "";

    position: absolute;

    right: 0;
    top: 12px;
    bottom: 12px;

    width: 4px;

    background: #438b67;

    border-radius: 4px 0 0 4px;
}

.main-cart #main-cart {
    display: flex;
    align-items: center;

    gap: 10px;
}

.main-cart .c-checkout-text {
    display: inline-flex;
    align-items: center;

    color: #333;

    font-size: 17px;
    font-weight: 700;
}

.main-cart .c-checkout__tab-counter {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 28px;
    height: 28px;

    padding: 0 7px;

    background: #f2f7f3;

    color: #438b67;

    border: 1px solid #dcecdf;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   04. CHECKOUT BOX
   ========================================================= */

.main-cart .c-checkout {
    width: 100%;

    background: #fff;

    border: 1px solid #e8e6df;

    border-radius: 18px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .035);

    overflow: hidden;
}


/* =========================================================
   05. SHIPPING HEADER
   ========================================================= */

.main-cart .c-checkout__header {
    min-height: 64px;

    padding: 15px 22px;

    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 7px 10px;

    background: linear-gradient(
        135deg,
        #faf9f5,
        #fff
    );

    border-bottom: 1px solid #eceae4;
}

.main-cart .c-checkout__header-title {
    color: #333;

    font-size: 15px;
    font-weight: 700;
}

.main-cart .c-checkout__header-extra-info {
    color: #777;

    font-size: 12px;
}

.main-cart .c-checkout__header-delivery-cost {
    margin-right: auto;

    color: #438b67;

    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   06. PRODUCT LIST
   ========================================================= */

.main-cart .c-checkout__items {
    list-style: none;

    margin: 0;
    padding: 0;

    width: 100%;
}


/* =========================================================
   07. PRODUCT ITEM
   ========================================================= */

.main-cart .c-checkout__item {
    position: relative;

    width: 100%;

    margin: 0;
    padding: 0;

    border-bottom: 1px solid #eee;

    background: #fff;
}

.main-cart .c-checkout__item:last-child {
    border-bottom: none;
}

.main-cart .c-checkout__row {
    position: relative;

    display: grid;

    grid-template-columns: 180px minmax(0, 1fr);

    gap: 24px;

    width: 100%;

    padding: 25px;
}


/* =========================================================
   08. PRODUCT IMAGE
   ========================================================= */

.main-cart .c-checkout__col--thumb {
    width: 180px;
    height: 180px;

    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #faf9f6;

    border: 1px solid #ebe8e0;

    border-radius: 15px;

    overflow: hidden;
}

.main-cart .c-checkout__col--thumb a {
    display: flex;

    width: 100%;
    height: 100%;

    align-items: center;
    justify-content: center;
}

.main-cart .c-checkout__col--thumb img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 12px;

    transition:
        transform .3s ease,
        opacity .3s ease;
}

.main-cart .c-checkout__col--thumb:hover img {
    transform: scale(1.04);
}


/* =========================================================
   09. PRODUCT DESCRIPTION
   ========================================================= */

.main-cart .c-checkout__col--desc {
    min-width: 0;

    display: flex;

    flex-direction: column;

    align-items: stretch;

    padding-top: 3px;
}


/* Product title */

.main-cart .c-checkout__col--desc > a {
    display: block;

    max-width: 100%;

    margin-bottom: 12px;

    color: #292929;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.9;

    overflow-wrap: anywhere;
    word-break: break-word;

    transition: color .2s ease;
}

.main-cart .c-checkout__col--desc > a:hover {
    color: #438b67;
}


/* Dealer / guarantee */

.main-cart .c-checkout__dealer,
.main-cart .c-checkout__guarantee {
    margin: 3px 0;

    color: #777;

    font-size: 12px;

    line-height: 1.9;

    overflow-wrap: anywhere;
    word-break: break-word;
}

.main-cart .c-checkout__dealer::before {
    content: "●";

    margin-left: 6px;

    color: #438b67;

    font-size: 7px;
}


/* =========================================================
   10. VARIANT
   ========================================================= */

.main-cart .c-checkout__variant {
    display: block;

    width: 100%;

    margin-top: 7px;

    color: #666;

    font-size: 12px;

    line-height: 1.8;

    overflow-wrap: anywhere;
    word-break: break-word;
}

.main-cart .c-checkout__variant:empty {
    display: none;
}


/* =========================================================
   11. INFORMATION ROW
   ========================================================= */

.main-cart .c-checkout__col--information {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    width: 100%;

    margin-top: auto;
    padding-top: 18px;
}


/* =========================================================
   12. QUANTITY
   ========================================================= */

.main-cart .c-checkout__col--counter {
    flex: 0 0 auto;
}

.main-cart .c-cart-item__quantity-row {
    position: relative;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;
}

.main-cart .c-quantity-selector {
    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 125px;
    height: 44px;

    background: #fff;

    border: 1px solid #deddd8;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 3px 10px rgba(0, 0, 0, .025);
}

.main-cart .c-quantity-selector__add,
.main-cart .c-quantity-selector__remove {
    width: 40px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 40px;

    padding: 0;

    background: transparent;

    border: 0;

    color: #555;

    cursor: pointer;

    font-size: 13px;

    transition:
        background .2s ease,
        color .2s ease;
}

.main-cart .c-quantity-selector__add:hover {
    background: #f1f7f3;
    color: #438b67;
}

.main-cart .c-quantity-selector__remove:hover {
    background: #fff2f2;
    color: #d9534f;
}

.main-cart .c-quantity-selector__number {
    min-width: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #333;

    font-size: 14px;
    font-weight: 700;
}


/* Quantity error */

.main-cart .c-checkout__quantity-error {
    display: none;

    color: #d9534f;

    font-size: 11px;
}


/* =========================================================
   13. PRICE
   ========================================================= */

.main-cart .c-checkout__col--price {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    justify-content: center;

    min-width: 160px;

    text-align: left;
}

.main-cart .c-checkout__price {
    display: block;

    color: #292929;

    font-size: 17px;
    font-weight: 800;

    white-space: nowrap;
}

.main-cart .p-original-price {
    display: block;

    margin-bottom: 4px;

    color: #aaa;

    font-size: 12px;

    text-decoration: line-through;

    white-space: nowrap;
}

.main-cart .c-checkout__col--price .c-checkout__price:not(:only-child) {
    color: #438b67;
}


/* =========================================================
   14. STOCK
   ========================================================= */

.main-cart .c-cart-item__stock-info {
    margin-top: 12px;

    padding: 7px 10px;

    background: #fff9ed;

    border: 1px solid #f5e4bf;

    border-radius: 8px;

    color: #a87823;

    font-size: 11px;

    line-height: 1.8;
}

.main-cart .c-cart-item__stock-info i {
    margin-left: 4px;
}


/* =========================================================
   15. PROMOTION BADGE
   ========================================================= */

.main-cart .c-promotion__badge {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 3;

    min-height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 4px 10px;

    border-radius: 7px;

    font-size: 10px;
    font-weight: 700;

    box-shadow: 0 3px 10px rgba(0,0,0,.08);
}

.main-cart .c-promotion__badge--special-sale {
    background: #fff0ee;

    color: #d9574f;

    border: 1px solid #f4d2ce;
}

.main-cart .c-promotion__badge--incredible-offer {
    width: 35px;

    background: #fff3e6;

    border: 1px solid #f1dcc4;
}


/* =========================================================
   16. BOTTOM STICKY CHECKOUT
   ========================================================= */

.main-cart .c-checkout__to-shipping-sticky {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 25px;

    background: #fafaf8;

    border-top: 1px solid #e9e7df;
}

.main-cart .c-checkout__to-shipping-link {
    min-width: 210px;

    min-height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 10px 20px;

    background: #438b67;

    color: #fff;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 5px 15px rgba(67,139,103,.18);

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.main-cart .c-checkout__to-shipping-link:hover {
    background: #347455;

    transform: translateY(-1px);

    box-shadow: 0 7px 20px rgba(67,139,103,.25);
}

.main-cart .c-checkout__to-shipping-price-report {
    text-align: right;
}

.main-cart .c-checkout__to-shipping-price-report p {
    margin: 0 0 5px;

    color: #777;

    font-size: 12px;
}

.main-cart .c-checkout__to-shipping-price-report--price {
    color: #222;

    font-size: 20px;
    font-weight: 800;
}

.main-cart .c-checkout__to-shipping-price-report--price span {
    margin-right: 4px;

    color: #777;

    font-size: 11px;
    font-weight: 400;
}


/* =========================================================
   17. SIDEBAR SUMMARY
   ========================================================= */

.main-cart .c-checkout-aside {
    width: 100%;
}

.main-cart .c-checkout-summary {
    width: 100%;

    background: #fff;

    border: 1px solid #e8e6df;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 8px 30px rgba(0,0,0,.045);
}


/* Summary list */

.main-cart .c-checkout-summary__summary {
    list-style: none;

    margin: 0;
    padding: 20px;

    width: 100%;
}

.main-cart .c-checkout-summary__summary li {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    width: 100%;

    min-height: 38px;

    color: #555;

    font-size: 12px;

    line-height: 1.8;
}

.main-cart .c-checkout-summary__summary li > span {
    min-width: 0;

    overflow-wrap: anywhere;
    word-break: break-word;
}

.main-cart .c-checkout-summary__summary li > span:last-child {
    flex: 0 0 auto;

    color: #333;

    text-align: left;
}

.main-cart .c-checkout-summary__summary .discount-price {
    color: #d25c52 !important;
}


/* Divider */

.main-cart .c-checkout-summary__summary li.has-devider {
    margin-top: 8px;
    padding-top: 13px;

    border-top: 1px solid #ededeb;
}

.main-cart .c-checkout-summary__summary li.has-devider:last-child {
    margin-top: 12px;

    color: #222;

    font-size: 14px;
    font-weight: 700;
}

.main-cart .c-checkout-summary__summary li.has-devider:last-child > span:last-child {
    color: #438b67;

    font-size: 16px;
}


/* =========================================================
   18. SUMMARY NOTICE
   ========================================================= */

.main-cart .c-checkout-summary__main {
    padding: 0 20px 20px;
}

.main-cart .c-checkout-summary__content {
    padding: 13px 15px;

    background: #faf8f1;

    border: 1px solid #eee5d0;

    border-radius: 10px;

    color: #8b7449;

    font-size: 10px;

    line-height: 2;
}


/* =========================================================
   19. SIDEBAR FEATURES
   ========================================================= */

.main-cart .c-checkout-feature-aside {
    margin-top: 15px;

    padding: 18px;

    background: #fff;

    border: 1px solid #e8e6df;

    border-radius: 16px;

    box-shadow: 0 5px 20px rgba(0,0,0,.025);
}

.main-cart .c-checkout-feature-aside ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.main-cart .c-checkout-feature-aside__item {
    position: relative;

    min-height: 42px;

    display: flex;

    align-items: center;

    padding: 8px 42px 8px 0;

    color: #666;

    font-size: 11px;

    line-height: 1.8;

    border-bottom: 1px solid #f0efeb;
}

.main-cart .c-checkout-feature-aside__item:last-child {
    border-bottom: none;
}


/* Icons */

.main-cart .c-checkout-feature-aside__item::before {
    position: absolute;

    right: 0;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f2f7f3;

    color: #438b67;

    font-size: 13px;
}

.main-cart .c-checkout-feature-aside__item--guarantee::before {
    content: "✓";
}

.main-cart .c-checkout-feature-aside__item--cash::before {
    content: "";

    font-family: FontAwesome;
}

.main-cart .c-checkout-feature-aside__item--express::before {
    content: "";

    font-family: FontAwesome;
}


/* =========================================================
   20. EMPTY CART
   ========================================================= */

.cart-empty {
    width: 100%;
    max-width: 1100px;

    min-height: 380px;

    margin: 45px auto 70px;

    padding: 55px 30px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    direction: rtl;

    background: #fff;

    border: 1px solid #e8e6df;

    border-radius: 22px;

    box-shadow: 0 8px 35px rgba(0,0,0,.035);

    overflow: hidden;
}


/* Empty icon */

.cart-empty__icon,
.cart-sfl__icon {
    width: 90px;
    height: 90px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f4f7f4;

    border: 1px solid #dfeae2;
}

.cart-empty__icon::before,
.cart-sfl__icon::before {
    content: "";

    font-family: FontAwesome;

    color: #438b67;

    font-size: 34px;
}


/* Empty title */

.cart-empty__title {
    margin: 0 0 12px;

    color: #333;

    font-size: 22px;
    font-weight: 800;
}

.cart-empty__links {
    max-width: 650px;

    color: #777;

    font-size: 13px;

    line-height: 2;
}

.cart-empty__links p,
.cart-sfl__links p {
    margin: 0 0 20px;
}


/* Empty links */

.cart-empty__link-urls {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
}

.cart-empty__link-urls a {
    padding: 8px 14px;

    background: #fafaf7;

    border: 1px solid #e6e5df;

    border-radius: 8px;

    color: #555;

    font-size: 11px;

    transition: .2s ease;
}

.cart-empty__link-urls a:hover {
    background: #f1f7f3;

    border-color: #cfe1d5;

    color: #438b67;
}


/* Continue shopping */

.cart-empty .btn-cart {
    min-width: 220px;

    margin-top: 22px;
    padding: 12px 22px;

    background: #438b67;

    color: #fff;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 5px 15px rgba(67,139,103,.18);

    transition: .2s ease;
}

.cart-empty .btn-cart:hover {
    background: #347455;

    transform: translateY(-1px);
}


/* =========================================================
   21. SAVED CART EMPTY SECTION
   ========================================================= */

.cart-empty#cart-sfl {
    min-height: 280px;

    margin-top: 20px;
}

.cart-empty#cart-sfl .cart-sfl__icon {
    width: 65px;
    height: 65px;

    margin-bottom: 12px;
}

.cart-empty#cart-sfl .cart-sfl__icon::before {
    font-size: 24px;
}

.cart-empty#cart-sfl .cart-empty__title {
    font-size: 18px !important;
}

.cart-empty#cart-sfl .cart-sfl__links {
    max-width: 700px;

    color: #777;

    font-size: 12px;

    line-height: 2;
}


/* =========================================================
   22. TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .main-cart {
        max-width: calc(100% - 30px);

        grid-template-columns:
            minmax(0, 1fr)
            310px;

        gap: 18px;
    }

    .main-cart .c-checkout__row {
        grid-template-columns: 150px minmax(0, 1fr);

        gap: 18px;

        padding: 20px;
    }

    .main-cart .c-checkout__col--thumb {
        width: 150px;
        height: 150px;
    }

}


/* =========================================================
   23. MOBILE
   ========================================================= */

@media (max-width: 767px) {

    /* Main */

    .main-cart {
        width: calc(100% - 20px);
        max-width: none;

        margin: 15px auto 35px;

        display: flex;

        flex-direction: column;

        gap: 15px;
    }


    /* Sidebar goes below products */

    .main-cart .o-page__content {
        order: 1;
    }

    .main-cart .o-page__aside {
        order: 2;

        position: static;
    }


    /* Header */

    .main-cart .o-headline {
        min-height: 50px;

        margin-bottom: 10px;

        padding: 0 15px;

        border-radius: 12px;
    }

    .main-cart .o-headline::before {
        top: 10px;
        bottom: 10px;
    }

    .main-cart .c-checkout-text {
        font-size: 14px;
    }

    .main-cart .c-checkout__tab-counter {
        min-width: 24px;
        height: 24px;

        font-size: 10px;
    }


    /* Checkout */

    .main-cart .c-checkout {
        border-radius: 14px;
    }


    /* Shipping header */

    .main-cart .c-checkout__header {
        padding: 13px 15px;

        min-height: 55px;

        gap: 3px 7px;
    }

    .main-cart .c-checkout__header-title {
        font-size: 13px;
    }

    .main-cart .c-checkout__header-extra-info,
    .main-cart .c-checkout__header-delivery-cost {
        font-size: 10px;
    }

    .main-cart .c-checkout__header-delivery-cost {
        width: 100%;

        margin-right: 0;
    }


    /* Product */

    .main-cart .c-checkout__row {
        display: grid;

        grid-template-columns: 95px minmax(0, 1fr);

        gap: 13px;

        padding: 15px;
    }


    /* Image */

    .main-cart .c-checkout__col--thumb {
        width: 95px;
        height: 95px;

        border-radius: 10px;
    }

    .main-cart .c-checkout__col--thumb img {
        padding: 7px;
    }


    /* Badge */

    .main-cart .c-promotion__badge {
        top: 8px;
        right: 8px;

        min-height: 21px;

        padding: 3px 7px;

        border-radius: 5px;

        font-size: 8px;
    }


    /* Product title */

    .main-cart .c-checkout__col--desc > a {
        margin-bottom: 5px;

        font-size: 13px;

        line-height: 1.7;
    }

    .main-cart .c-checkout__dealer,
    .main-cart .c-checkout__guarantee,
    .main-cart .c-checkout__variant {
        font-size: 9px;

        line-height: 1.8;
    }


    /* Information */

    .main-cart .c-checkout__col--information {
        margin-top: 8px;
        padding-top: 8px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 9px;
    }


    /* Quantity */

    .main-cart .c-quantity-selector {
        min-width: 105px;

        width: 105px;

        height: 36px;

        border-radius: 9px;
    }

    .main-cart .c-quantity-selector__add,
    .main-cart .c-quantity-selector__remove {
        width: 33px;
        height: 34px;

        flex-basis: 33px;
    }

    .main-cart .c-quantity-selector__number {
        min-width: 35px;

        font-size: 12px;
    }


    /* Price */

    .main-cart .c-checkout__col--price {
        width: 100%;

        min-width: 0;

        align-items: flex-start;

        text-align: right;
    }

    .main-cart .c-checkout__price {
        font-size: 13px;

        white-space: normal;

        line-height: 1.7;
    }

    .main-cart .p-original-price {
        font-size: 9px;
    }


    /* Stock */

    .main-cart .c-cart-item__stock-info {
        margin-top: 7px;

        padding: 5px 7px;

        font-size: 8px;
    }


    /* Bottom checkout */

    .main-cart .c-checkout__to-shipping-sticky {
        padding: 15px;

        flex-direction: column-reverse;

        align-items: stretch;

        gap: 13px;
    }

    .main-cart .c-checkout__to-shipping-link {
        width: 100%;

        min-width: 0;

        min-height: 46px;

        font-size: 13px;
    }

    .main-cart .c-checkout__to-shipping-price-report {
        width: 100%;

        display: flex;

        align-items: center;

        justify-content: space-between;

        text-align: right;
    }

    .main-cart .c-checkout__to-shipping-price-report p {
        margin: 0;

        font-size: 10px;
    }

    .main-cart .c-checkout__to-shipping-price-report--price {
        font-size: 16px;
    }


    /* Summary */

    .main-cart .c-checkout-summary {
        border-radius: 14px;
    }

    .main-cart .c-checkout-summary__summary {
        padding: 15px;
    }

    .main-cart .c-checkout-summary__summary li {
        min-height: 35px;

        font-size: 10px;

        gap: 10px;
    }

    .main-cart .c-checkout-summary__summary li.has-devider:last-child {
        font-size: 12px;
    }

    .main-cart .c-checkout-summary__summary li.has-devider:last-child > span:last-child {
        font-size: 14px;
    }

    .main-cart .c-checkout-summary__main {
        padding: 0 15px 15px;
    }

    .main-cart .c-checkout-summary__content {
        padding: 10px;

        font-size: 9px;
    }


    /* Features */

    .main-cart .c-checkout-feature-aside {
        margin-top: 10px;

        padding: 12px;

        border-radius: 12px;
    }

    .main-cart .c-checkout-feature-aside__item {
        min-height: 38px;

        padding-right: 38px;

        font-size: 9px;
    }

    .main-cart .c-checkout-feature-aside__item::before {
        width: 27px;
        height: 27px;

        font-size: 11px;
    }


    /* Empty */

    .cart-empty {
        width: calc(100% - 20px);

        min-height: 330px;

        margin: 25px auto 40px;

        padding: 35px 18px;

        border-radius: 16px;
    }

    .cart-empty__icon,
    .cart-sfl__icon {
        width: 70px;
        height: 70px;
    }

    .cart-empty__icon::before,
    .cart-sfl__icon::before {
        font-size: 27px;
    }

    .cart-empty__title {
        font-size: 18px;
    }

    .cart-empty__links {
        font-size: 11px;
    }

    .cart-empty__link-urls {
        flex-direction: column;

        width: 100%;
    }

    .cart-empty__link-urls a {
        width: 100%;

        padding: 8px;

        font-size: 10px;
    }

    .cart-empty .btn-cart {
        width: 100%;

        min-width: 0;

        font-size: 11px;
    }

}


/* =========================================================
   24. VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .main-cart {
        width: calc(100% - 14px);

        margin-top: 10px;
    }

    .main-cart .c-checkout__row {
        grid-template-columns: 82px minmax(0, 1fr);

        gap: 10px;

        padding: 12px;
    }

    .main-cart .c-checkout__col--thumb {
        width: 82px;
        height: 82px;
    }

    .main-cart .c-checkout__col--desc > a {
        font-size: 11px;
    }

    .main-cart .c-checkout__dealer,
    .main-cart .c-checkout__guarantee,
    .main-cart .c-checkout__variant {
        font-size: 8px;
    }

    .main-cart .c-checkout__price {
        font-size: 12px;
    }

    .main-cart .c-quantity-selector {
        width: 95px;
        min-width: 95px;
    }

}


/* =========================================================
   25. FORCE LONG TEXT TO STAY INSIDE CART
   ========================================================= */

.main-cart *,
.cart-empty * {
    max-width: 100%;

    overflow-wrap: anywhere;
    word-break: break-word;
}

.main-cart .c-checkout__price,
.main-cart .p-original-price,
.main-cart .c-checkout__tab-counter {
    word-break: normal;
    overflow-wrap: normal;
}


/* =========================================================
   26. PREVENT HORIZONTAL OVERFLOW FROM CART
   ========================================================= */

.main-cart,
.main-cart .c-checkout,
.main-cart .c-checkout__items,
.main-cart .c-checkout__item,
.main-cart .c-checkout__row,
.main-cart .c-checkout__col--desc,
.main-cart .c-checkout__col--information,
.main-cart .c-checkout-aside,
.cart-empty {
    min-width: 0;
    max-width: 100%;
}


/* =========================================================
   END CART PAGE CSS
   ========================================================= */