.nll-cart-layout {
    direction: rtl;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    margin: 40px 0;
    align-items: flex-start;
}

.nll-cart-summary__box {
    background: #ffffff;
    padding: 24px 20px;
    font-size: 14px;
    border-radius: 16px;
    border-width: 1px;
    padding-top: 32px;
    padding-right: 16px;
    padding-bottom: 32px;
    padding-left: 16px;
    border: 1px solid rgba(217, 217, 217, 1)
}

.nll-cart-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.nll-cart-summary__row--title {
    font-weight: 600;
    margin-bottom: 20px;
}

.nll-cart-summary__total {
    font-weight: 700;
    font-size: 16px;
}

.nll-cart-summary__btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px 18px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #383C79;
}

.nll-cart-summary__btn:hover {
    color: #ffffff;
    background: #383C79;
}

.nll-cart-header__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
    max-width: 744px;
}

.nll-cart-header__count {
    color: rgba(142, 142, 147, 1);
    font-weight: 600;
    font-style: SemiBold;
    font-size: 19px;
    line-height: 100%;
    letter-spacing: 0%;

}

.nll-cart-items__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nll-cart-items__list a {
    text-decoration: none
}

.nll-cart-item {
    display: grid;
    grid-template-columns: 142px minmax(0, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 744px;
    opacity: 1;
    background: rgba(242, 242, 247, 0.5);
    border-radius: 12px;
    padding: 16px;
}

.nll-cart-item__thumb img {
    width: 142px;
    height: 82px;
    object-fit: cover;
    border-radius: 8px!important;
}

.nll-cart-item__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.nll-cart-item__content {
    position: relative;
    padding-bottom: 48px;
}

.nll-cart-item__title {
    font-weight: 800;
    font-size: 16px;
    text-decoration: none !important;
    color: rgba(0, 0, 0, 1);
}

.nll-cart-item__title:hover {
    color: #383C79;
}

.nll-cart-item__remove-link {
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    color: #999;
}

.nll-cart-item__remove-link i {
    font-size: 18px;
}

.nll-cart-item__remove-link:hover {
    color: #e53935;
}

.nll-cart-item__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: baseline;
    margin-top: 8px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.nll-cart-item__label {
    display: none;
}

.nll-cart-item__final {
    font-family: inherit;
    font-weight: 800;
    font-size: 14px;
    color: rgba(56, 60, 121, 1);
}

.nll-cart-item__final .woocommerce-Price-amount {
    font-weight: 800;
}

.nll-cart-item__final .woocommerce-Price-currencySymbol {
    font-weight: 400;
    font-size: 10px;
}

.nll-cart-item__discount {
    font-family: inherit;
    font-weight: 800;
    font-size: 12px;
    color: rgba(51, 51, 51, 1);
}

.nll-cart-item__discount .woocommerce-Price-currencySymbol {
    font-weight: 400;
    font-size: 10px;
}

.nll-cart-item__discount-label {
    margin-inline-start: 6px;
    font-family: inherit;
    font-weight: 400;
    font-size: 10px;
    color: rgba(51, 51, 51, 1);
}

.nll-cart-item__qty .quantity input[type="number"] {
    max-width: 70px;
}

.nll-cart-summary__row--divider {
    height: 1px;
    background: rgba(217, 217, 217, 1);
    margin-top: 24px;
}


@media (max-width: 992px) {
    .nll-cart-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .nll-cart-item {
        grid-template-columns: 1fr;
    }

    .nll-cart-item__thumb img {
        width: 100%;
        height: 180px;
    }

    .nll-cart-item__bottom {
        flex-direction: column;
        gap: 10px;
    }
}

.nll-cart-item__instructors {
    margin-top: 6px;
    font-weight: 600;
    font-size: 12px;
    color: rgba(142, 142, 147, 1);
}