.cart-tab-title {
  font-weight: 500;
  margin-right: 30px;
  padding-bottom: 8px;
  cursor: pointer;
}
.cart-tab-title.active {
  color: #2874f0;
  border-bottom: 2px solid #2874f0;
}

.address-bar p {
  line-height: 1.4;
}

#order-summary-products .cart-row {
  display: flex;
  gap: 18px;
  padding: 18px 10px;
  border-bottom: 1px solid #e6e6e6;
}
#order-summary-products img {
  width: 110px;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-info h6 {
  font-size: 15px;
  font-weight: 600;
}
.cart-info small {
  font-size: 13px;
  color: #666;
}

.price-line {
  font-weight: 600;
  color: #111;
}
.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 13px;
}
.off-green {
  color: #098b28;
  font-weight: 600;
}

.qty-box {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.qty-box button {
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
 border-radius: 5px;
}
.qty-box span {
  width: 35px;
  text-align: center;
  font-size: 17px;
}

.remove-btn,
.save-btn {
  font-weight: 600;
  margin-right: 20px;
}
.remove-btn { color: #d92626; }
.save-btn { color: #000; }

.btn-order {
  background: #ff6d00;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  transition: .2s;
}
.btn-order:hover {
  background: #e45d00;
}
