/* Remove default number input arrows */
.quantity input.qty::-webkit-outer-spin-button,
.quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity input.qty[type="number"] {
  -moz-appearance: textfield;
}

.quantity input.qty {
  appearance: textfield;
}

/* Unified quantity control styling */
.quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #0a1a3f; /* Border color matches buttons */
  border-radius: 6px;
  overflow: hidden; /* Ensures no gaps between elements */
}

/* Quantity input */
.quantity input.qty {
  width: 50px;
  text-align: center;
  border: none; /* Remove inner border */
  height: 40px;
  font-size: 16px;
  background: #fff;
  color: #000;
  margin: 0;
  padding: 0;
}

/* Minus and plus buttons */
.quantity button.qty-minus,
.quantity button.qty-plus {
  background: #0a1a3f; /* Dark blue */
  color: #ff3366; /* Pink text */
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

/* Hover effect */
.quantity button.qty-minus:hover,
.quantity button.qty-plus:hover {
  background: #142b5f; /* Slightly lighter blue on hover */
}

/* Optional: make the + and - bold */
.quantity button.qty-minus,
.quantity button.qty-plus {
  font-weight: bold;
}