/* Container + palette */
.smpms-wrap{background:var(--smpms-bg); padding:0 0 2rem;}
.container{max-width:1200px;margin:0 auto;padding:0 1rem;}

/* Esconde ligação "Ver carrinho" dentro do wrapper */
.smpms-wrap .added_to_cart.wc-forward{display:none!important;}

/* Navegação centrada */
.smpms-nav{padding:1rem 0; display:grid; gap:.5rem;}
.smpms-navline{display:flex;gap:.6rem;overflow:auto;padding-bottom:.25rem; flex-wrap:wrap;}
.smpms-navline.center{justify-content:center;}
.smpms-chip{display:flex;align-items:center;gap:.55rem;border:1px solid #e6eae5;background:#fff;border-radius:999px;padding:.45rem .9rem;cursor:pointer;white-space:nowrap;box-shadow:0 6px 14px rgba(0,0,0,.05);color:var(--smpms-dark); transition:.15s transform ease, .15s box-shadow ease;}
.smpms-chip:hover{transform:translateY(-1px); box-shadow:0 10px 18px rgba(0,0,0,.07);}
.smpms-chip img{width:22px;height:22px;object-fit:cover;border-radius:999px;}
.smpms-chip.text-only{background:#fff;border-color:#e6eae5;}
.smpms-topcats .smpms-chip.active{background:var(--smpms-primary);border-color:var(--smpms-primary);color:#fff;}
.smpms-chip.prominent{background:transparent;border-color:var(--smpms-primary);color:var(--smpms-primary);}

/* Conteúdo */
.smpms-loading{padding:2rem;text-align:center;}
.smpms-empty{padding:2rem;text-align:center;color:#666;}

/* Produtos */
.smpms-grid-products{display:grid;grid-template-columns:repeat(4, minmax(0,1fr));gap:1rem;}
@media(max-width:900px){ .smpms-grid-products{grid-template-columns:repeat(2,minmax(0,1fr));} }

.smpms-product{
  border:1px solid #edf2ec;
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 18px rgba(0,0,0,.04);
  display:flex;
  flex-direction:column;
  overflow:hidden;
}

.smpms-thumb img{width:100%;height:165px;object-fit:cover;display:block;}

.smpms-info{
  padding:.8rem;
  display:flex;
  flex-direction:column;
  gap:.45rem;
  flex:1;
}

.smpms-title{font-size:1rem;margin:0;line-height:1.25;color:#1b1f1a;}
.smpms-title a{color:inherit;text-decoration:none;}
.smpms-price{color:var(--smpms-primary);font-weight:800;}
.smpms-unit{font-weight:600;color:#5f5f5f;margin-left:.25rem;}
.smpms-minitext{font-size:.78rem;color:#6a6f68;margin-top:-.25rem;}

/* Controlo quantidade separado + botão em baixo */
.smpms-buy{
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:.55rem;
  margin-top:auto;
  min-height:92px;
}

.smpms-qtyrow{
  display:grid;
  grid-template-columns:36px 1fr auto 36px;
  align-items:center;
  gap:.5rem;
}

.smpms-qty{
  width:100%;
  text-align:center;
  border:1px solid #e6eae5;
  border-radius:12px;
  padding:.38rem .45rem;
  font-weight:600;
}

.smpms-minus,.smpms-plus{
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid #e6eae5;
  background:#f7faf6;
  font-weight:900;
  color:#244f0b;
  line-height:1;
  box-shadow:inset 0 1px 0 #fff;
}

.smpms-add.button{
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-radius:12px;
  border:1px solid var(--smpms-primary);
  background:linear-gradient(180deg, var(--smpms-primary), #4b9643);
  color:#fff;
  font-weight:800;
  padding:.6rem 1rem;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.smpms-add.button:hover{
  filter:brightness(.98);
  transform:translateY(-1px);
}

.smpms-add.button.smpms-outofstock{
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:auto;
  border:1px solid #c62828 !important;
  background:#c62828 !important;
  background-image:none !important;
  color:#fff !important;
  cursor:not-allowed !important;
  pointer-events:none;
  box-shadow:none !important;
}

.smpms-add.button.smpms-outofstock:hover,
.smpms-add.button.smpms-outofstock:focus{
  background:#c62828 !important;
  background-image:none !important;
  color:#fff !important;
  transform:none !important;
  filter:none !important;
}
