/* products.css — Page-specific styles for products.html */

/* Ensure full layout stretch */
.products-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .products-layout {
    flex-direction: row;
  }
  .sidebar-filters {
    display: block;
    width: 240px;
  }
  .products-main {
    flex: 1;
    min-width: 0;
  }
  .btn-filter-mob { display: none !important; }
}

/* Products count pill */
#productsCount {
  background: var(--c-light);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 13px;
  display: inline-block;
}

/* Wishlist pill fade */
[data-slug="wishlist"] {
  transition: opacity .3s;
}

/* Filter check hover fix */
.filter-opt:hover .filter-check {
  border-color: var(--c-prime);
}

/* Grid loading pulse */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
.skeleton { animation: pulse 1.5s ease-in-out infinite; }
