/* Breadcrumbs */
.crumbs{
  display:flex;
  gap:8px;
  align-items:center;
  color: var(--muted);
  font-weight: 700;
  margin: 4px 0 18px;
}
.crumbs a{ color: inherit; }
.crumbs a:hover{ text-decoration: underline; text-underline-offset: 3px; }

/* Products */
.products{
  grid-template-columns: repeat(4, 1fr);
}
.product{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow:hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}
.product__img{
  height: 450px;
  background-size: cover;
  background-position: center;
}

.product__body{
  padding: 14px 14px 16px;
}
.product__body h3{
  margin: 0 0 6px;
  font-size: 16px;
}
.product__body p{
  margin: 10px 0 5px;
  font-size: 14px;
}
.product__actions{
  gap: 10px;
  margin-top: 10px;
  text-align: right;
}
.product__actions .btn{
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
}
.product__actions .btn--ghost{
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}
.product__actions .btn--ghost:hover{
  background: var(--soft);
}

/* Ajuste grid por categoría: 4 en desktop, 2 tablet, 1 móvil */
.products--category{
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 980px){
  .products--category{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px){
  .products--category{ grid-template-columns: 1fr; }
}

/* Product Price */
.product__meta{
  align-items: center;
  gap: 10px;
  margin: 0 0 5px;
}
.price-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .2px;
  background: #FFF;
  color: #ff8a00;
}
.price-note{
  font-size: 14px;
  color: #6b7280; /* gris suave */
}