.product-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 12px;
}

.product-info {
  display: flex;
  align-items: start;
}

.product-image {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid var(--Gray-gray-50, #f9f9fb);
  background-size: contain;
}

.product-details {
  margin-left: 8px;
  flex: 1;
}

.product-title {
  overflow: hidden;
  color: var(--Gray-gray-800, #6b6c74);
  text-overflow: ellipsis;
  max-height: 36px;
  font-family: Lato;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.24px;
}

.product-quantity,
.product-price {
  color: var(--Gray-gray-800, #6b6c74);
  font-family: Lato;
  font-size: 10px;
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: -0.2px;
}

.product-price {
  white-space: nowrap;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
