/* Products page: category filter + 9-per-page pagination */
.products-catalog-section{
  position:relative;
}

.products-catalog-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:24px;
}

.products-catalog-toolbar h2{
  margin:14px 0 8px;
}

.products-catalog-toolbar p{
  margin:0;
}

.products-category-select{
  min-width:320px;
  background:#fff;
  border:1px solid rgba(27,44,84,.10);
  border-radius:20px;
  padding:16px;
  box-shadow:0 14px 30px rgba(8,19,56,.08);
}

.products-category-select label{
  display:block;
  font-size:13px;
  font-weight:900;
  color:#1B2C54;
  margin-bottom:10px;
}

.products-select-row{
  display:flex;
  gap:10px;
  align-items:center;
}

.products-select-row select{
  width:100%;
  min-height:48px;
  border:1px solid rgba(27,44,84,.16);
  border-radius:14px;
  padding:0 14px;
  background:#fff;
  font:inherit;
  color:#17213A;
}

.products-filter-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:30px;
}

.products-filter-pills a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  text-decoration:none;
  background:#fff;
  color:#1B2C54;
  border:1px solid rgba(27,44,84,.12);
  font-weight:900;
  transition:.2s ease;
}

.products-filter-pills a:hover,
.products-filter-pills a.active{
  background:#1B2C54;
  border-color:#1B2C54;
  color:#fff;
}

.products-grid-paginated{
  margin-top:0;
}

.products-pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:42px;
}

.products-pagination a,
.products-pagination span{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  text-decoration:none;
  font-weight:900;
  background:#fff;
  color:#1B2C54;
  border:1px solid rgba(27,44,84,.12);
  box-shadow:0 10px 22px rgba(8,19,56,.06);
}

.products-pagination a:hover,
.products-pagination span.active{
  background:#D96F4D;
  border-color:#D96F4D;
  color:#fff;
}

.products-pagination .pagination-arrow{
  font-size:28px;
  line-height:1;
}

.products-pagination .pagination-arrow.disabled{
  opacity:.42;
  cursor:not-allowed;
}

.products-pagination .pagination-dots{
  width:auto;
  min-width:24px;
  border:0;
  box-shadow:none;
  background:transparent;
  color:#66708A;
}

.products-empty-state{
  text-align:center;
  padding:42px 24px;
}

.products-empty-state p{
  margin:12px 0 22px;
}

@media(max-width:900px){
  .products-catalog-toolbar{
    display:block;
  }

  .products-category-select{
    margin-top:22px;
    min-width:0;
    width:100%;
  }
}

@media(max-width:640px){
  .products-filter-pills{
    gap:8px;
  }

  .products-filter-pills a{
    min-height:40px;
    padding:0 14px;
    font-size:13px;
  }

  .products-pagination{
    gap:8px;
  }

  .products-pagination a,
  .products-pagination span{
    width:42px;
    height:42px;
    border-radius:12px;
  }
}
