#cart {
    padding: 48px 0 64px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
}

    #cart__inner {
        width: var(--inner-width);
        display: flex;
        flex-direction: column;
        gap: 48px;
    }

        #cart__inner > h1 {
            font-size: 24px;
            font-weight: 500;
        }

        #cart__wrapper {
            width: 100%;
            display: flex;
            gap: 48px;
        }

            #cart__wrapper-main {
                width: calc(100% - 400px - 48px);
            }

                .cart__item {
                    padding: 24px 0;
                    width: 100%;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    border-bottom: 1px solid var(--border-1);
                }

                    .cart__item-content {
                        flex-grow: 1;
                        display: flex;
                        gap: 48px;
                    }

                        .cart__item-image {
                            width: 160px;
                            height: 160px;
                            object-fit: cover;
                            object-position: center;
                        }

                        .cart__item-details {
                            flex-grow: 1;
                            display: flex;
                            flex-direction: column;
                            justify-content: space-between;
                        }

                            .cart__item-title {
                                font-size: 16px;
                                font-weight: 400;
                            }

                            .cart__item-price-mobile {
                                display: none;
                            }

                            .cart__item-variation {
                                font-size: 14px;
                                font-weight: 400;
                            }

                                .cart__item-variation > span {
                                    font-weight: 600;
                                }

                            .cart__item-quantity {
                                width: 128px;
                                height: 48px;
                                display: flex;
                                justify-content: space-around;
                                align-items: center;
                                border: 1px solid var(--border-1);
                                border-radius: 2px;
                            }

                                .cart__item-quantity > button {
                                    width: 24px;
                                    height: 24px;
                                }

                                    .cart__item-quantity > button > img {
                                        width: 100%;
                                        height: 100%;
                                        object-fit: contain;
                                        object-position: center;
                                    }

                                .cart__item-quantity-value {
                                    font-size: 14px;
                                    font-weight: 600;
                                }

                            .cart__item-remove {
                                width: fit-content;
                                font-size: 13px;
                                font-weight: 600;
                                color: var(--font-2);
                            }

                    .cart__item-price {
                        padding-left: 64px;
                        font-size: 21px;
                        font-weight: 500;
                    }

            #cart__wrapper-sidebar {
                padding: 24px;
                width: 400px;
                height: fit-content;
                display: flex;
                flex-direction: column;
                background-color: var(--bg-1);
                border-radius: 8px;
                box-shadow: var(--main-shadow);
            }

                .cart__wrapper-sidebar-block {
                    margin-bottom: 16px;
                    padding-bottom: 16px;
                    width: 100%;
                    display: flex;
                    justify-content: space-between;
                    border-bottom: 1px dashed var(--border-1);
                }

                    .cart__wrapper-sidebar-block > span {
                        font-size: 16px;
                        font-weight: 400;
                    }

                    .cart__wrapper-sidebar-block > span:nth-child(2) {
                        font-weight: 500;
                    }

                    .cart__wrapper-sidebar-block-big > span {
                        font-size: 21px;
                    }

                    .cart__wrapper-sidebar-block-big > span:nth-child(2) {
                        font-weight: 700;
                    }

                .cart__wrapper-sidebar-discount {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    gap: 8px;
                }

                    .cart__wrapper-sidebar-discount > span {
                        font-size: 13px;
                        font-weight: 600;
                        color: var(--font-2);
                    }

                    .cart__wrapper-sidebar-discount-row {
                        width: 100%;
                        display: flex;
                        gap: 16px;
                    }

                        .cart__wrapper-sidebar-discount-row > input {
                            padding: 0 16px;
                            width: 100%;
                            height: 40px;
                            flex-grow: 1;
                            display: flex;
                            align-items: center;
                            border: 1px solid var(--border-1);
                            border-radius: 2px;
                            font-size: 13px;
                            font-weight: 400;
                            color: var(--font-2);
                        }

                        .cart__wrapper-sidebar-discount-row > button {
                            padding: 0 32px;
                            height: 40px;
                            display: flex;
                            align-items: center;
                            background-color: var(--font-1);
                            border-radius: 2px;
                            box-shadow: var(--button-shadow);
                            font-size: 13px;
                            font-weight: 600;
                            text-transform: uppercase;
                            color: var(--font-3);
                        }

                #cart__checkout {
                    margin-top: 24px;
                    width: 100%;
                    height: 48px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 4px;
                    background-color: var(--accent-1);
                    border-radius: 2px;
                    box-shadow: var(--button-shadow);
                    font-size: 15px;
                    font-weight: 600;
                    text-transform: uppercase;
                    color: var(--font-3);
                }

                    #cart__checkout > img {
                        width: 32px;
                        height: 32px;
                        object-fit: contain;
                        object-position: center;
                    }

/* Cart cross-sell items */

#cart__inner > .wl-cart-cxs,
#cart > .wl-cart-cxs {
    width: var(--inner-width);
    margin: 0 auto;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    #cart__inner > .wl-cart-cxs,
    #cart > .wl-cart-cxs {
        display: grid;
        grid-template-columns: 1fr 400px;
        column-gap: 48px;
        align-items: start;
    }

    #cart__inner > .wl-cart-cxs .wl-cart-cxs__title,
    #cart__inner > .wl-cart-cxs .wl-cart-cxs__wrap,
    #cart__inner > .wl-cart-cxs .wl-cart-cxs__list,
    #cart > .wl-cart-cxs .wl-cart-cxs__title,
    #cart > .wl-cart-cxs .wl-cart-cxs__wrap,
    #cart > .wl-cart-cxs .wl-cart-cxs__list {
        grid-column: 1;
    }
}

#cart__inner > .wl-cart-cxs .wl-cart-cxs__title,
#cart > .wl-cart-cxs .wl-cart-cxs__title {
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 10px;
}

#cart__inner > .wl-cart-cxs .wl-cart-cxs__list,
#cart > .wl-cart-cxs .wl-cart-cxs__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#cart__inner > .wl-cart-cxs .wl-cart-cxs__item,
#cart > .wl-cart-cxs .wl-cart-cxs__item {
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    gap: 14px;
}

#cart__inner > .wl-cart-cxs .wl-cart-cxs__thumb img,
#cart > .wl-cart-cxs .wl-cart-cxs__thumb img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

#cart__inner > .wl-cart-cxs .wl-cart-cxs__meta,
#cart > .wl-cart-cxs .wl-cart-cxs__meta {
    flex: 1;
    min-width: 0;
}

#cart__inner > .wl-cart-cxs .wl-cart-cxs__name,
#cart > .wl-cart-cxs .wl-cart-cxs__name {
    display: inline-block;
    font-weight: 500;
    text-decoration: none;
    margin: 0 0 6px;
}

#cart__inner > .wl-cart-cxs .wl-cart-cxs__price,
#cart > .wl-cart-cxs .wl-cart-cxs__price {
    font-weight: 600;
}

#cart__inner > .wl-cart-cxs .wl-cart-cxs__cta,
#cart > .wl-cart-cxs .wl-cart-cxs__cta {
    margin-left: auto;
}

/* Į KREPŠELĮ + PASIRINKTI mygtukas */
#cart .wl-cart-cxs__btn,
#cart__inner .wl-cart-cxs__btn {
    min-height: 40px;
    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: var(--accent-1);
    color: var(--font-3);

    border: 1px solid var(--accent-1);
    border-radius: 10px;

    box-shadow: var(--button-shadow);

    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;

    cursor: pointer;
    text-decoration: none;
}

#cart .wl-cart-cxs__btn:hover,
#cart__inner .wl-cart-cxs__btn:hover {
    filter: brightness(0.95);
}

#cart .wl-cart-cxs__btn:active,
#cart__inner .wl-cart-cxs__btn:active {
    transform: translateY(1px);
}


/* Mobile */

@media screen and (max-width: 1023px) {
    #cart__inner > h1 {
        font-size: 16px;
    }

    #cart__wrapper {
        flex-direction: column;
    }

        #cart__wrapper-main {
            width: 100%;
        }

            .cart__item-price {
                display: none;
            }

            .cart__item-price-mobile {
                display: block;
                font-size: 16px;
                font-weight: 500;
            }

        #cart__wrapper-sidebar {
            width: 100%;
        }
}