.product-price-container {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.product-price-container .discount-label {
  display: none;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  color: #c9aa6d;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0 0.5rem;
  border: 1px solid #c9aa6d;
}
.product-price-container .price-old {
  display: none;
  color: #807d7e;
  font-size: 1.3rem;
  font-weight: 400;
  text-decoration: line-through;
}
.product-price-container .sale-price {
  color: #c9aa6d;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 2.5rem;
}

.product-list .product-price-container {
  margin-bottom: 0;
  justify-content: center;
  height: 50px;
}
.product-list .product-price-container .discount-label {
  height: 2rem;
  font-size: 1rem;
}
.product-list .product-price-container .price-old {
  font-size: 0.9rem;
}
.product-list .product-price-container .sale-price {
  font-size: 1.2rem;
  line-height: 1rem;
}

.product-price-container.has-discount .discount-label {
  display: flex;
}
.product-price-container.has-discount .price-old {
  display: flex;
}
.product-price-container.has-discount .sale-price {
  color: #c9aa6d;
}

.price-filter input[type=number] {
  height: 36px;
}

.cart-container .cart-summary .cart-summary-content .cart-panel-row {
  display: flex;
  margin-bottom: 0.6rem;
  align-items: baseline;
}
.cart-container .cart-summary .cart-summary-content .cart-panel-row > span:first-child {
  flex: 0 0 auto;
}
.cart-container .cart-summary .cart-summary-content .cart-panel-row > span:last-child {
  flex: 1 0 auto;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 600;
}

.dashboard-list li a.active, .dashboard-list li a:hover, .dashboard-list li a:focus {
  color: #c9aa6d;
  background-color: #fff !important;
  font-weight: 600;
}
