/* Shared customer-site button shape; original colours and sizing stay intact. */
button,
a[class*="aq-btn"],
a.aq-checkout-btn,
a.aq-login-btn,
a.aq-dashboard-grid-card-btn,
a.aq-dashboard-order-card-btn,
input[type="submit"],
input[type="button"],
.shop-pagination button {
  border-radius: 999px !important;
}
/* Disclosure rows remain full-width, with softly rounded edges. */
.accordion-buttons { border-radius: 12px !important; }

/* Live quantities use number inputs, which must retain the template layout. */
.aq-product-quantity .aq-cart-input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 38px;
  text-align: center;
  font-size: 16px;
  line-height: normal;
  color: #171717 !important;
  -webkit-text-fill-color: #171717;
  background: #fff;
  border: 1px solid rgba(15, 15, 15, .12);
  border-radius: 999px !important;
  appearance: textfield;
  -moz-appearance: textfield;
}
.aq-cart-input::-webkit-inner-spin-button,
.aq-cart-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.aq-product-quantity .aq-cart-minus,
.aq-product-quantity .aq-cart-plus { color: #171717; }
.aq-product-quantity .aq-cart-input:focus-visible {
  outline: 2px solid #d9b76f;
  outline-offset: 2px;
}

/* Draw quantity symbols consistently in product and shopping-bag controls. */
.aq-cart-minus svg,
.aq-cart-plus svg { display: none !important; }
.aq-cart-minus::before,
.aq-cart-plus::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.aq-cart-minus::after { content: none !important; }
.aq-cart-plus.aq-cart-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  inset-inline-start: 50%;
  width: 2px;
  height: 11px;
  border-radius: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
