/* Springtide Quick Add – compact stepper (matches reference screenshot) */

.stqa-wrap { max-width: 100%; }

.stqa-head{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}

.stqa-title{ font-weight: 600; font-size: 16px; }
.stqa-qty-label{ font-weight: 600; font-size: 16px; }

.stqa-list{ border-bottom: 1px solid #e5e5e5; }

.stqa-row{
  display:grid;
  grid-template-columns: 1fr 160px 120px;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid #e5e5e5;
  align-items: center;
}

.stqa-left .stqa-name{ font-weight: 700; font-size: 16px; line-height: 1.2; }
.stqa-left .stqa-subprice{ margin-top: 4px; font-weight: 600; font-size: 14px; }

/* COMPACT STEPPER */
.stqa-stepper{
  display:inline-grid;
  grid-template-columns: 40px 44px 40px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  height: 34px;
  width: 124px;
  margin-left: auto;
  margin-right: auto;
}

/* Make sure theme button styling doesn't leak in */
.stqa-stepper button.stqa-minus,
.stqa-stepper button.stqa-plus{
  appearance: none;
  -webkit-appearance: none;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  width: 40px;
  height: 34px;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  color: #111;
  border-right: 1px solid #e5e5e5 !important;
}

.stqa-stepper button.stqa-plus{
  border-right: 0 !important;
  border-left: 1px solid #e5e5e5 !important;
}

.stqa-stepper button:hover{ background: #f7f7f7 !important; }
.stqa-stepper button:active{ background: #efefef !important; transform: translateY(1px); }

/* Input */
.stqa-stepper input.stqa-qty{
  width: 44px;
  height: 34px;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  background: #fff;
  -moz-appearance: textfield;
}
.stqa-stepper input.stqa-qty::-webkit-outer-spin-button,
.stqa-stepper input.stqa-qty::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}

.stqa-right{ text-align: right; }
.stqa-rightprice{ font-weight: 700; font-size: 18px; }

.stqa-add{
  width:100%;
  margin-top: 18px;
  padding: 14px 16px !important;
  font-size: 18px !important;
  border-radius: 6px !important;
}

.stqa-msg{ margin-top: 10px; }

@media (max-width: 800px){
  .stqa-row{ grid-template-columns: 1fr; }
  .stqa-stepper{ margin-left: 0; margin-right: 0; }
  .stqa-right{ text-align: left; }
}
