
.custom-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
}
.qty-minus, .qty-plus {
    background: #eee;
    border: 1px solid #ccc;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
}
.qty {
    width: 60px;
    text-align: center;
}
input.qty::-webkit-outer-spin-button,
input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input.qty[type=number] {
    -moz-appearance: textfield;
}
.custom-quantity {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.custom-quantity input.qty {
  width: 35px !important;  /* Or adjust as needed */
  text-align: center;
  padding: 4px;
  font-size: 13px;
border: 1px solid #ccc !important;
  border-radius: 4px;
min-height: 35px !important;
}

.custom-quantity .qty-btn {
  width: 20px;
  height: 20px;
  padding: 0;
  font-size: 16px;
  background-color: #f2f2f2;
 border: 1px solid #ccc !important;
  border-radius: 4px;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.2s ease;
}

.custom-quantity .qty-btn:hover {
  background-color: #e0e0e0;
}
