.qty-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* spacing between buttons and number */
}

.btn-qty {
  background-color: black;       /* white background */
  color: white;                  /* symbol color */
  border: none;
  border-radius: 50%;            /* makes it a circle */
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;               /* bigger plus/minus */
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* subtle shadow */
  transition: background 0.2s, color 0.2s;
}

.qty-number {
  font-size: 18px;
  font-weight: bold;
  color: black;                  /* make the count white too */
}
