
/* Ajustes de ficha de producto — Patas & Caos */
.product-info h1{
  font-size:clamp(2rem,3.25vw,3.25rem)!important;
  line-height:1.08!important;
  letter-spacing:-.045em!important;
  max-width:820px;
  margin-bottom:18px!important;
}

.product-price{
  margin-bottom:18px!important;
}

.product-buy{
  display:flex!important;
  align-items:center!important;
  gap:12px!important;
  flex-wrap:wrap!important;
  margin-top:24px!important;
}

.product-buy .view-cart{
  display:none!important;
}

.product-qty-selector{
  display:inline-grid;
  grid-template-columns:38px 40px 38px;
  align-items:center;
  min-height:48px;
  border:1px solid #DED6CC;
  border-radius:13px;
  overflow:hidden;
  background:#fff;
}

.product-qty-selector button{
  width:38px;
  height:46px;
  border:0;
  background:#fff;
  color:#1A1A1A;
  font-size:1.1rem;
  font-weight:600;
  cursor:pointer;
}

.product-qty-selector button:hover:not(:disabled){
  background:#F8F4EE;
}

.product-qty-selector button:disabled{
  opacity:.35;
  cursor:not-allowed;
}

.product-qty-value{
  display:grid;
  place-items:center;
  min-width:40px;
  height:46px;
  font-size:.88rem;
  font-weight:700;
  color:#1A1A1A;
  user-select:none;
}

#add-btn{
  min-height:50px!important;
  min-width:210px!important;
  padding:0 24px!important;
  border-radius:13px!important;
}

#add-btn:disabled{
  opacity:.55!important;
  cursor:not-allowed!important;
}

.product-stock-note{
  width:100%;
  min-height:19px;
  margin-top:2px;
  color:#7B7169;
  font-size:.72rem;
}

.product-stock-note.low{
  color:#A8501F;
  font-weight:600;
}

.product-stock-note.out{
  color:#A43A32;
  font-weight:700;
}

@media(max-width:700px){
  .product-info h1{
    font-size:clamp(1.8rem,8.5vw,2.35rem)!important;
    line-height:1.1!important;
  }

  .product-buy{
    display:grid!important;
    grid-template-columns:auto minmax(0,1fr)!important;
    gap:10px!important;
  }

  #add-btn{
    min-width:0!important;
    width:100%!important;
  }

  .product-stock-note{
    grid-column:1/-1;
  }
}

@media(max-width:390px){
  .product-buy{
    grid-template-columns:1fr!important;
  }

  .product-qty-selector{
    width:116px;
  }
}


/* AJUSTE FINAL: selector de cantidad perfectamente centrado */
.product-qty-selector{
  display:grid!important;
  grid-template-columns:38px 40px 38px!important;
  align-items:stretch!important;
  justify-items:stretch!important;
  height:50px!important;
  min-height:50px!important;
  padding:0!important;
}

.product-qty-selector button,
.product-qty-selector .product-qty-value{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:100%!important;
  height:48px!important;
  min-height:48px!important;
  margin:0!important;
  padding:0!important;
  line-height:1!important;
  text-align:center!important;
  vertical-align:middle!important;
}

.product-qty-selector button{
  position:relative!important;
  top:0!important;
  transform:none!important;
}

.product-qty-selector .product-qty-value{
  font-variant-numeric:tabular-nums;
}
