/* assets/css/shop.css — Shop/catalog page */

.shop-wrap { display: flex; gap: 32px; align-items: flex-start; }

.shop-sidebar {
  width: 220px; flex-shrink: 0; background: var(--white);
  border-radius: 12px; box-shadow: var(--shadow); padding: 20px;
  position: sticky; top: 90px;
}
.shop-sidebar h3 { font-family: 'Poppins', sans-serif; font-size: 15px; margin-bottom: 14px; }
.shop-cat-list { list-style: none; }
.shop-cat-list ul { list-style: none; margin-left: 14px; }
.shop-cat-list li { margin-bottom: 4px; }
.shop-cat-list a { display: block; padding: 7px 10px; border-radius: 6px; font-size: 13.5px; color: var(--text); transition: background .15s; }
.shop-cat-list a:hover { background: var(--sky); }
.shop-cat-list a.active { background: var(--teal); color: #fff; font-weight: 600; }

.shop-main { flex: 1; min-width: 0; }

.shop-toolbar { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.shop-search { display: flex; flex: 1; max-width: 320px; }
.shop-search input { flex: 1; padding: 9px 14px; border: 1.5px solid var(--border); border-radius: 8px 0 0 8px; font-size: 13.5px; outline: none; }
.shop-search button { background: var(--teal); border: none; color: #fff; padding: 0 16px; border-radius: 0 8px 8px 0; cursor: pointer; }
.shop-sort select { padding: 9px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13.5px; }

.shop-result-count { font-size: 13px; color: var(--muted); margin-bottom: 16px; }

.shop-pagination { display: flex; gap: 6px; justify-content: center; margin-top: 32px; }
.shop-pagination a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 8px; border: 1.5px solid var(--border); font-size: 13.5px; font-weight: 600; color: var(--text); }
.shop-pagination a.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.shop-pagination a:hover:not(.active) { border-color: var(--teal); color: var(--teal); }

@media (max-width: 768px) {
  .shop-wrap { flex-direction: column; }
  .shop-sidebar { width: 100%; position: static; }
}
