/* Centraliza o seletor no footer do produto */
.product-footer .shop-action {
  display: flex !important;
  justify-content: center !important;
}

/* Cápsula com largura FIXA (não estica mais) */
.product-footer .shop-action .muyto-qty-wrap {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #fff !important;
  border: 1px solid #ddd !important;
  border-radius: 999px !important;
  height: 28px !important;
  padding: 2px 6px !important;
  width: 96px !important;          /* <= CAPSULA FIXA */
  box-sizing: content-box !important;
  gap: 6px !important;
}

/* Botões nunca crescem */
.muyto-qty-wrap .muyto-qty-btn {
  flex: 0 0 22px !important;       /* largura fixa */
  width: 22px !important;
  height: 22px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #f5f5f5 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #333 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}
.muyto-qty-wrap .muyto-qty-btn:hover { background:#e0e0e0 !important; }
.muyto-qty-wrap .muyto-qty-btn:active { transform:scale(.95) !important; }

/* INPUT compacto (até 999) e sem crescer */
.muyto-qty-wrap .muyto-qty-input {
  display: inline-block !important;
  box-sizing: content-box !important;
  flex: 0 0 28px !important;        /* largura travada */
  width: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  height: 22px !important;
  line-height: 22px !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: center !important;
  border: none !important;
  background: transparent !important;
  font: 600 13px/22px system-ui, -apple-system, Segoe UI, Roboto, sans-serif !important;
  color: #111 !important;
  appearance: textfield !important;         /* padrão */
  -webkit-appearance: none !important;      /* webkit */
  -moz-appearance: textfield !important;    /* firefox */
  outline: none !important;
}

/* Remove spinners (Chrome/Safari/Edge) */
.muyto-qty-wrap .muyto-qty-input::-webkit-inner-spin-button,
.muyto-qty-wrap .muyto-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Garante que o botão "Comprar" original fique oculto */
a.add_to_cart_button.muyto-hidden-original-btn { display: none !important; }

@media (max-width: 480px){
  .product-footer .shop-action .muyto-qty-wrap{ width: 92px !important; }
}

