/* Toolbar */
.catalog-toolbar .bi-search { pointer-events: none; }
.catalog-toolbar input[type="search"] { height: 44px; }

/* Sidebar y filtros */
.sidebar-sticky { position: sticky; top: 88px; }
.filter-check input { margin-right: .5rem; }

.filter-chip{
  display:inline-flex; align-items:center; gap:.35rem;
  background:#eaf8f0; color:#2d6a4f; border-radius:999px;
  padding:.25rem .6rem; font-size:.85rem;
}
.filter-chip .btn-close{ --bs-btn-close-color:#2d6a4f; transform: scale(.8); }

/* Grid / List toggle */
.view-toggle .btn.active{ background:var(--green-500); color:#fff; border-color:var(--green-500); }

/* Tarjetas */
.card.product-card{ transition: transform .2s ease, box-shadow .2s ease; }
.card.product-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.card.product-card img{ height:200px; object-fit:cover; }

.badge.stock{ position:absolute; left:10px; top:10px; border-radius:999px; }
.btn-wish{
  position:absolute; right:10px; top:10px; width:40px; height:40px;
  border:none; background:rgba(255,255,255,.85); border-radius:999px; display:grid; place-items:center;
}
.btn-wish:hover{ background:#fff; }

/* Vista lista */
#productGrid.list-view .col{ flex: 0 0 100%; max-width: 100%; }
#productGrid.list-view .product-card .row{ align-items:center; }
#productGrid.list-view .product-card img{ height: 140px; }

/* Utilidades */
.object-fit-cover{ object-fit: cover; }
