#custom-cart-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    height: 95dvh;
}

.custom-cart-item {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.custom-cart-item img {
    aspect-ratio: auto;
    object-fit: cover;
    height: 20vh !important;
    width: 25%;

}

.custom-cart-item .custom-product-data {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 75%;
}

.custom-cart-item .custom-product-data .data,
.custom-cart-item .custom-product-data .action {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.custom-cart-item .custom-product-data .data .product {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.custom-cart-item .custom-product-data .data .product .product-name,
.custom-cart-item .custom-product-data .data .product-price{
    font-family: 'Afacad', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.custom-cart-item .custom-product-data .data .product .variation-list {
    font-family: 'Afacad', sans-serif;
    font-size: 0.875rem;
    line-height: 1.2rem;
    font-weight: 400;
}

.custom-cart-item .custom-product-data .action input[type="number"] {
    width: 30%;
}

.custom-cart-item .custom-product-data .action .custom-cart-remove {
    display: flex;
    min-width: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    justify-content: center;
    align-items: center;
}

.custom-cart-item .custom-product-data .action .custom-cart-remove i {
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
}



.custom-cart-item .custom-qty-wrapper {
    display: flex;
    flex-direction: row !important;
    width: fit-content !important;
    gap: 16px !important;
    align-items: center !important;
    border-radius: 0 !important;
}

.custom-cart-item .custom-qty-wrapper input {
    border: none !important;
    width: 8px !important;
    padding: 0 !important;
    font-size: 1rem !important;
}

.custom-cart-item .custom-qty-wrapper input::-webkit-outer-spin-button,
.custom-cart-item .custom-qty-wrapper input::-webkit-inner-spin-button {
    display: none;
}

.custom-cart-item .custom-qty-wrapper .minus,
.custom-cart-item .custom-qty-wrapper .plus {
    min-width: 0;
    min-height: 0;
    max-width: 24px !important;
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: solid rgba(0, 0, 0, 0.14) 1.5px;
    border-radius: 0 !important;
    cursor: pointer;
    font-family: 'Afacad', Sans-Serif;
    font-size: 1rem !important;
    line-height: 1.4rem !important;
    color: #000 !important;
    background-color: transparent !important;
}

.custom-cart-item .custom-qty-wrapper .minus:hover,
.custom-cart-item .custom-qty-wrapper .plus:hover {
    color: #000 !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
    background-color: transparent !important;
}

.custom-cart-item .custom-qty-wrapper .minus:active,
.custom-cart-item .custom-qty-wrapper .plus:active {
    color: #FFF !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
    background-color: #000 !important;
}

.custom-cart-item .custom-qty-wrapper .minus.disabled,
.custom-cart-item .custom-qty-wrapper .plus.disabled {
    cursor: not-allowed !important;
    opacity: 0.3 !important;
}

.custom-cart-item .custom-qty-wrapper .minus.disabled:hover,
.custom-cart-item .custom-qty-wrapper .plus.disabled:hover {
    color: #000 !important;
    background-color: transparent !important;
}


@media screen and (max-width: 767px){
    #custom-cart-items {
        max-height: 55vh;
    }
}