.wsdt-quantity-ui {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.wsdt-quantity-ui .wsdt-qty-input {
  width: 50px;
  text-align: center;
  border: none;
  -moz-appearance: textfield; /* Κρύβει τα default βελάκια στον Firefox */
  margin: 0;
  padding: 0.5rem;
}

/* Κρύβει τα default βελάκια σε Chrome/Safari/Edge */
.wsdt-quantity-ui .wsdt-qty-input::-webkit-outer-spin-button,
.wsdt-quantity-ui .wsdt-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.wsdt-qty-btn {
  background: #f5f5f5;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  transition: background 0.2s;
  color: #333;
}

.wsdt-qty-btn:hover:not(:disabled) {
  background: #e0e0e0;
}

.wsdt-qty-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
