.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background: white;
}

.qty-btn {
  background: white;
  border: none;
  width: 35px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-primary);
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background-color: #f9f9f9;
}

.qty-input {
  width: 40px;
  height: 38px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-top: none;
  border-bottom: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  background: transparent;
}
