.quantity-selector {
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.quantity-button {
  width: 100%;
  padding: 0px;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  background-color: #BD2227;
  color: white;
  height: 30px;
}

.quantity-button.disabled {
  background-color: #D1D5DB;
  cursor: not-allowed;
}

.quantity-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  padding: 4px 0;
  width: 100%;
  height:30px;
}

.counter-btn {
  width: 32px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #BD2227;
  cursor: pointer;
  user-select: none;
}

.counter-btn.disabled {
  color: #9CA3AF;
  cursor: not-allowed;
}

.quantity-value {
  width: 30px;
  text-align: center;
  font-size: 16px;
  color: #374151;
}
