.simple-quantity label, .attribute label {
  font-family: brandon-grotesque, Arial, sans-serif !important;
  color: #000;
  margin: 0; /* Removed margin for label */
}

.quantity-stepper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 4px;
  border-radius: 4px;
  overflow: hidden;
  height: 32px;
  font-weight: 700;
  background-color: #fff;
}
.quantity-stepper .qty-btn {
  border: 1px solid #9e9e9e !important;
  color: #000;
  padding: 6px 7px !important;
  width: 25px;
  font-weight: 700;
  line-height: 14px;
  height: 100%;
  font-size: 0.875rem;
  font-family: brandon-grotesque, Arial, sans-serif !important;
  cursor: pointer;
  background: -webkit-gradient(linear, left top, left bottom, from(#ebe7e6), to(#d6d4d5));
  background: linear-gradient(#ebe7e6, #d6d4d5);
  -webkit-transition: background 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.quantity-stepper .qty-btn:hover {
  background: #9e9e9e;
  color: #000;
  outline: 0;
}
.quantity-stepper .qty-btn:disabled {
  background-color: #f0f0f0;
  color: #aaa;
  cursor: not-allowed;
}
.quantity-stepper .qty-btn.minus {
  margin: 0 -2px 0 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.quantity-stepper .qty-btn.plus {
  margin: 0 -2px 0 -1px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.quantity-stepper .qty-input {
  padding: 8px 6px;
  opacity: 1;
  width: 36px;
  height: 100%;
  text-align: center;
  font-size: 0.875rem;
  font-family: brandon-grotesque, Arial, sans-serif !important;
  border: 1px solid #9e9e9e;
  outline: none;
  background-color: #fff;
}
.quantity-stepper .qty-input::-webkit-outer-spin-button, .quantity-stepper .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-stepper .qty-input[readonly] {
  background-color: #fff;
  cursor: default;
}

@media screen and (max-width: 768px) {
  .simple-quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .simple-quantity label, .attribute label {
    padding: 0 0 10px;
    font-size: 0.875rem;
  }
  .quantity-stepper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
