.cart-items {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.cart-items:has(.out-of-stock-indicator-container) > :nth-of-type(2) {
    border-top: 0.5px solid var(--black);
}

.cart-items > :not(:first-child) {
    border-top: none;
}

.cart-item {
    display: flex;
    flex-direction: row;
    width: 100%;
    border: 0.5px solid var(--black);
    border-bottom: 0.5px solid var(--black);
}



.product-image img {
    width: 105px;
    height: 157.5px;
}

.product-body {
    flex: 1;
}


.product-name,
.product-color,
.sizeSelectionBtn,
.product-price {
    font-size: 13px;
    font-weight: 400;
    line-height: 18.85px;
    letter-spacing: 0.02em;
    text-align: left;
    color: var(---black);
}


.remove-item,
.wishlist-item {
    color: #ff0000;
    font-size: 14px;
    text-decoration: none;
    margin-top: 10px;
}

.wishlist-item {
    color: #0000ff;
}

.remove-item:hover,
.wishlist-item:hover {
    text-decoration: underline;
}

.cart-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 0px !important;
    row-gap: 0px !important;
}

.cart-action div {
    border: 0.5px solid var(--grey03);
    margin: 0px;
    height: 40px;
    border-bottom: none;
}

.cart-action .quantity-control,
.cart-action .sizeSelectionBtn {
    flex: 1;
    border-radius: 0;
    border: 0.5px solid var(--grey03);
    border-bottom: none;
    border-left: none;
}

.cart-action .sizeSelectionBtn {
    height: 40px;
    padding: 7px 12px 7px 15px;
}

.cart-action .quantity-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 18.85px !important;
    letter-spacing: 0.04em !important;
    padding: 7px 15px;
}

.cart-action .wishlist,
.cart-action .remove {
    width: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: none;
}

.cart-action .remove {
    border-right: none;
}

.cart-action .icon {
    cursor: pointer;
    font-size: 1.2em;
    padding: 0;
}

.quantity-control button {
    background-color: white !important;
    border: none;
    box-shadow: none;
    font-weight: normal;
}

.cart-total-mobile-container {
    display: none;
}

.cart-action form:has(.quantity-control) {
    width: calc((100% - 84px) / 2);
}

#cartOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 10;
}

.out-of-stock-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 17.4px;
    letter-spacing: 0.03em;
    text-align: left;
    text-transform: uppercase;
    color: var(--error);
}

.out-of-stock-indicator-container {
    padding: 20px 0px;
    position: absolute;
    top: -75px;
    display: flex;
    gap: 10px;
}

.out-of-stock-indicator-container span {
    font-size: 12px;
    font-weight: 400;
    line-height: 17.4px;
    letter-spacing: 0.01em;
    text-align: left;
    color: var(---black);
}


@media screen and (max-width: 768px) {

    .cart-item {
        border:none;
    }

    .cart-items:has(.out-of-stock-indicator-container) .cart-item-mobile:nth-of-type(3) {
        border-top: 0.5px solid var(--grey03);
    }

    .cart-items .cart-item-mobile:nth-of-type(2) {
        border-top: 0.5px solid var(--grey03);
    }

    .cart-items .cart-item-mobile {
        border-bottom: 0.5px solid #080808;
    }

    .cart-action {
        flex-direction: row-reverse;
    }

    .cart-action .wishlist,
    .cart-action .remove {
        width: 50.5px;
        height: 40px;
        border-right: 0.5px solid var(--grey03);
    }

    .cart-action form:has(.quantity-control) {
        width: calc((100% - 101px) / 2);
    }

    .cart-action .sizeSelectionBtn {
        border-right: none;
    }

    .cart-total-mobile-container {
        display: block;
        position: fixed;
        bottom: 0px;
        width: 100%;
        background-color: var(--white);
        padding: 10px 20px;
        z-index: 9999;
    }

    .cart-total-mobile-container p {
        font-size: 13px;
        line-height: 18.85px;
        letter-spacing: 0.03em;
    }

    .cart-total-mobile-container span {
        font-size: 13px;
        font-weight: 400;
        line-height: 18.85px;
        letter-spacing: 0.04em;
        text-align: left;

    }

    .cart-total-mobile-container #promotionText {
        font-size: 13px;
        font-weight: 400;
        line-height: 18.85px;
        letter-spacing: 0.04em;
        text-align: left;
        padding: 14px 0px;
    }

    .cart-total-mobile-container .number-container {
        display: none;
        flex-direction: column;
        row-gap: 8px;
        border-top: 0.5px solid var(--black);
        padding: 14px 0px;
    }

    .out-of-stock-indicator-container {
        padding: 12px;
        top: -55px;
    }

    .product-image img {
        width: 101px;
        height: 151.5px;
    }

    .product-info {
        padding-left: 20px !important;
    }

    .product-price {
        padding-right: 15px;
    }

}