.breadcrumbs {
    margin: 0;
    padding: 0;
    min-height: unset;
}
.breadcrumbs .items {
    padding: 1.6rem 0;
    font-size: 1.5rem;
    color: #949494;
}
.breadcrumbs a,
.breadcrumbs a:visited {
    color: var(--a-text-hover);
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: none;
}
.breadcrumbs .item:not(:last-child):after {
    font-size: 12px;
    line-height: 20px;
}
@media only screen and (max-width: 767px) {
    .breadcrumbs {
        display: unset;
    }
}

.cart-summary {
    display: none !important;
}

.cart-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 1.6rem 0;
}
.cart-top h2 {
    text-align: center;
    margin: 0 0 0.4rem 0;
}
.cart-top .cart-total {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.cart-top .checkout-items {
    list-style: none;
    margin: 0.8rem 0 0 0;
    padding: 0;
}
.cart-top .checkout-items .item {
    margin: 0;
    padding: 0;
}
.cart-top .subtotal {
    color: #949494;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
}
.cart-top .subtotal .money {
    color: var(--body-text-color);
    font-size: 1.4rem;
}
.action.primary.checkout {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    width: 100%;
}
.action.primary.checkout:hover {
    background: var(--primary-color-hover);
    border: 1px solid var(--primary-color-hover);
}
.action.primary.checkout span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
    justify-content: center;
}
.action.primary.checkout span:before {
    content: '';
    display: inline-block;
    background: url("../../images/icon/lock.svg") no-repeat;
    width: 20px;
    height: 20px;
}

.cart-footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.cart-footer .cart-subtotal {
    font-size: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-footer .cart-subtotal .money {
    font-size: 2.8rem;
}
.cart-footer .checkout-items {
    list-style: none;
    margin: 0.8rem 0 0 0;
    padding: 0;
}
.cart-footer .cart-shipping {
    font-size: 1.5rem;
    line-height: 1.6;
}
.cart-footer .cart-continue a,
.cart-footer .cart-shipping a {
    color: var(--a-text-hover);
    text-decoration: none;
}
.cart-footer .action.primary.checkout {
    padding: 14px;
}
.cart-footer .action.primary.checkout span {
    font-size: 1.8rem;
    font-weight: 600;
}
.cart-footer .cart-continue {
    text-align: center;
}
@media only screen and (min-width: 768px) {
    .cart-container .form-cart {
        width: unset;
        float: unset;
        padding: unset;
    }
    .cart-top {
        flex-direction: row;
    }
    .cart-top .cart-total {
        width: unset;
    }
    .cart-top .subtotal {
        flex-direction: column;
        gap: unset;
        align-items: flex-end;
    }
    .cart-top .subtotal .money {
        font-size: 1.8rem;
    }

}

/* product item */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.cart-item {
    display: flex;
    border: 1px solid rgba(128,128,128,.16);
    box-shadow: 0 1px 4px #8080801c;
    padding: 1.6rem;
    gap: 1.6rem;
}
.cart-item .picture {
    width: 20%;
    max-width: 136px;
}
.cart-item .other {
    width: 100%;
}
.cart-item .qty-subtotal-action {
    display: flex;
    position: relative;
    margin-top: 1.2rem;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
}
.cart-item .qty-subtotal-action .qty {
    display: flex;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
}
.cart-item .qty-subtotal-action .qty button {
    border-radius: 50%;
    background-color: unset;
    border: none;
    padding: 12px;
}
.cart-item .qty-subtotal-action .qty input {
    border-top: none;
    border-bottom: none;
    border-radius: unset;
    height: unset;
    max-width: 80px;
    min-width: 48px;
    padding: 0;
    text-align: center;
}
.cart-item .qty-subtotal-action .qty input:focus {
    box-shadow: unset;
}
.cart-item .qty-subtotal-action .qty button span,
.cart-item .qty-subtotal-action .qty button span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}
.cart-item .qty-subtotal-action .qty button span:before,
.cart-item .qty-subtotal-action .qty button span:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 1.5px;
    border-radius: 8px;
    transition: all .3s ease-in-out;
    background-color: var(--body-text-color);
}
.cart-item .qty-subtotal-action .qty button.increase span::after {
    transform: rotate(90deg);
}
.name-option-price .name {
    margin-bottom: 6px;
}
.name-option-price .name a {
    color: var(--body-text-color);
    text-decoration: none;
    font-size: 1.6rem;
}
.name-option-price > .price {
    display: flex;
    gap: 4px;
}
.name-option-price .item-options span:first-child,
.name-option-price > .price > .label {
    font-size: 1.3rem;
    color: var(--body-text-color);
    font-weight: 600;
}
.name-option-price .cart-price .price,
.name-option-price .item-options span:last-child {
    font-size: 1.3rem;
    color: #1d1d1dcc;
    font-weight: 400;
}
.qty-subtotal-action .price {
    font-size: 1.6rem;
    font-weight: 400;
}
.action.action-delete {
    position: absolute;
    right: 0;
    bottom: 0;
}
.action.action-delete:before {
    content: '\e604';
    font-size: 18px;
    line-height: 20px;
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
    color: var(--body-text-color);
}
.action.action-delete:hover:before {
    color: var(--a-text-hover);
}
.action.action-delete span {
    display: none;
}
@media only screen and (min-width: 420px) {
    .cart-item .qty-subtotal-action {
        flex-direction: row;
        align-items: center;
        flex-wrap: unset;
        flex: 1;
    }
    .action.action-delete {
        position: unset;
    }
}
@media only screen and (min-width: 768px) {
    .cart-item .other {
        display: flex;
        align-items: center;
        gap: 16px;
        justify-content: space-between;
    }
    .cart-item .other .name-option-price {
        width: 40%;
    }

}
/* product item end */
