.cart {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Segoe UI', sans-serif;
  flex-wrap: wrap;
}

.quantity-label {
  font-size: 14px;
  color: #444;
  white-space: nowrap;
}

.quantity-control {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  height: 40px;
}

.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  cursor: pointer;
  font-size: 20px;
  background: #fff;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #f1f1f1;
}

.n_quantity.qty-input {
  width: 50px;
  border: none;
  text-align: center;
  font-size: 16px;
  outline: none;
  background: white;
  padding: 0;
}

.add_pr_dz.add-to-cart {
  background-color: #2196f3;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
  cursor: pointer;
}
.cart-go {
  background-color: #2196f3;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
}

.add_pr_dz.add-to-cart:hover {
  background-color:#3f51b5;
}
.input-r{
  width: 100%;
  display: block;
}