.qty-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  overflow: hidden;
  height: 40px;
  max-width: 120px;
  background-color: #fff;
  margin-bottom: 20px;
}

.qty-btn {
  background: none;
  border: none;
  width: 40px;
  height: 100%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  color: #333;
  user-select: none;
}

.qty-btn:hover {
  background-color: #f5f5f5;
  background-color: #f5f5f5;
  border: none;
}

.qty-input {
  border: none!important;
  text-align: center;
  width: 40px;
  font-size: 1rem;
  outline: none;
  -moz-appearance: textfield;
  background: none;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.subtotal {
  font-weight: 500;
}

.cart-item-actions {
  margin-top: 1rem;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}