/* Basic styling; adjust to match your theme */
.single-product form.cart .quantity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
	margin-top:5px!important;
	margin-right:1rem!important;
}

.single-product form.cart .quantity .qty {
      width: 50px;
    text-align: center;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.single-product .qty-btn {
  appearance: none;
  border: 1px solid #ccc;
  background: #fff;
  width: 38px;
  height: 38px;
  line-height: 36px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 6px;
}

.sub-title-home{
	    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 0;
}

.single-product .qty-btn:active {
  transform: translateY(1px);
}

/* Remove number input spinners (Chrome, Safari, Edge) */
.single-product input.qty::-webkit-outer-spin-button,
.single-product input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove number input spinners (Firefox) */
.single-product input.qty[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}