.hb-cart-list { }

.hb-cart-item {
    border: 1px solid #eee;
}

.hb-cart-img {
    width: 86px;
    height: 86px;
    border-radius: 14px;
    background: #fafafa;
    border: 1px solid #eee;
    overflow: hidden;
    flex: 0 0 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hb-cart-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 6px;
}

.hb-cart-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.hb-cart-meta {
    font-size: 13px;
}

.hb-qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.hb-qty-btn {
    width: 38px;
    height: 38px;
    border: 0;
    background: #f7f7f7;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.hb-qty-btn:hover {
    background: #f0f0f0;
}

.hb-qty-input {
    width: 54px;
    height: 38px;
    border: 0;
    text-align: center;
    font-weight: 700;
    outline: none;
}

.hb-line-total {
    font-weight: 800;
    font-size: 16px;
}

.hb-remove {
    border: 0;
    background: transparent;
    color: #d11a2a;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 10px;
}

.hb-remove:hover {
    background: rgba(209, 26, 42, 0.08);
}

.hb-summary {
    border: 1px solid #eee;
}

.hb-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
}

.hb-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    font-size: 18px;
}

.hb-summary-note {
    font-size: 12px;
}

.hb-empty-cart .hb-empty-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #f7f7f7;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* mobil */
@media (max-width: 576px) {
    .hb-cart-img {
        width: 74px;
        height: 74px;
        flex: 0 0 74px;
        border-radius: 12px;
    }
    .hb-cart-title {
        font-size: 15px;
    }
    .hb-line-total {
        font-size: 15px;
    }
}
