body[template="cart"]  {
    background:var(--theme-light);
    color:var(--theme-dark);


    & .std-list .list-item {
        min-height:0;
        overflow:hidden;
        max-height: none;
        width:100%;
        height:auto;
    }

    & .cart-list {
        min-height: calc(100dvh - var(--title-bar-height));
    }

    
    & .stick-bottom {
        position: sticky;
        width:100%;
        left:0;
        bottom: 0;
        padding:16px 0;
        background: var(--theme-light);
        text-align: center;
        z-index:2;
        border-top:1px solid var(--theme-gray-2);
    }
    & .stick-bottom .button {
        display:inline-block;
    }
    & .add-more {
        padding:32px 16px;
        text-align: center;
    }
    & .list-item p {
        font-size:10px;
        text-transform: capitalize;
        margin-top:8px;
    }
    & .std-list .list-item:first-child {
        border-top:1px solid var(--theme-gray-2);
    }
    & .list-item .qty {
        font-size: 12px;
        color: var(--theme-gray-1);
    }
    & .std-list .list-item .list-image {
        width: 200px;
        height: auto;   
    }
    & .std-list .list-item .list-text {
        padding:16px 32px;
        width:100%;
    }
    & .std-list .list-item .list-edit {
        display:flex;
        align-items: center;
        padding-right:16px;
    }

        
    & .related {
        padding-top:32px;
        display: flex;
        flex-wrap: wrap;
    }
    & .related h3 {
        padding:0 32px;
        font-family:var(--font-button);
        text-transform:uppercase;
        font-weight:400;
        margin-bottom:16px;
    }
    & .checkout-button span {
        font-family: inherit;
        letter-spacing:1px;
    }

    & .swiper.rel-swip {
        
    }

    & .swiper.rel-swip img {
        width:100%;
        height:auto;
        aspect-ratio:1/1;
        object-fit:cover;
        border-top-right-radius:10px;
        border-top-left-radius:10px;
    }
    & .cart-total {
        display:flex;
        justify-content: space-between;
        padding: 0 32px 16px;
        margin-bottom:16px;
        border-bottom:1px solid var(--theme-gray-2);
    }
    & .start-over {
        text-align:center;
        margin-top:16px;
        font-size:10px;
        text-transform: uppercase;
    }
    & .gutters {
        padding:32px;
    }
    & .cart-is-empty .gutters {
        text-align: center;
    }
    & .cart-is-empty .gutters .button  {
        margin-top:32px;
    }
    & .line-price {
        color:var(--theme-gray-1);
    }
    & .swiper.rel-swip .swiper-slide {
        background: var(--theme-leight);
        color: var(--theme-dark);
        text-align: center;
        text-decoration: none;
        border-radius: 10px;
        max-width: 200px;
        width: 30%;
        height: auto;
        padding-bottom: 4px;
        border: 1px solid var(--theme-gray-2);
    }
    & .swiper.rel-swip .swiper-slide p {
        padding:0 12px;
    }


    & .remove-button {
        transform: translateX(100%);
        transition: transform 0.2s ease;
        background: #5a3131;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 10px;
        font-weight: 100;
        width: 100px;
        position: absolute;
        top: 0;
        right: 0px;
        height: 100%;
        color:var(--theme-light);
    }

    & .line-item-swipe.swiped .remove-button {
        transform: translateX(0%);
    }
}
