/* Fund products page — filters & table */
.fund-products-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.fund-products-categories .fund-products-cat-btn {
  flex: 1 1 calc(25% - 12px);
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.fund-products-cat-btn .fund-products-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff !important;
  background-color: #49b75c !important;
}

.fund-products-cat-btn.is-active .fund-products-badge {
  color: #1a5c28 !important;
  background-color: #fff !important;
}

.fund-products-cat-btn:not(.is-active) {
  background: #fff;
  border: 1px solid #dde3e8;
  color: #333;
}

.fund-products-cat-btn:not(.is-active):hover {
  border-color: #49b75c;
  color: #49b75c;
}

.fund-products-filters {
  background: #f8faf9;
  border: 1px solid #e8eeeb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.fund-products-filters .fund-products-search {
  margin-bottom: 16px;
}

.fund-products-filters .fund-products-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.fund-products-filters .fund-products-filter-field {
  flex: 1 1 160px;
  min-width: 0;
}

.fund-products-filters .fund-products-filter-field--reset {
  flex: 0 0 auto;
  align-self: flex-end;
}

.fund-products-filters .fund-products-filter-field--reset .btn {
  min-width: 44px;
  height: 42px;
  padding: 0 12px;
  line-height: 42px;
}

.fund-products-results-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  color: #5c6b7a;
  font-size: 14px;
}

.fund-products-table-wrap {
  margin-top: 8px;
}

.fund-products-table-wrap .table thead th {
  color: #fff !important;
  white-space: nowrap;
  vertical-align: middle;
}

.fund-products-table-wrap .table tbody td {
  color: #333;
  vertical-align: middle;
}

.fund-products-pagination {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e8eeeb;
}

.fund-products-pagination-nav {
  text-align: center;
}

.fund-products-pagination-nav .pagination.theme-colored {
  display: inline-block;
  margin: 0;
  padding: 0;
  direction: ltr;
}

.fund-products-pagination-nav .pagination.theme-colored > li {
  display: inline;
}

.fund-products-pagination-nav .pagination.theme-colored > li > a,
.fund-products-pagination-nav .pagination.theme-colored > li > span {
  cursor: pointer;
  float: none;
}

.fund-products-pagination-nav .pagination.theme-colored > li.disabled > a {
  cursor: not-allowed;
  opacity: 0.6;
}

@media (max-width: 767px) {
  .fund-products-categories .fund-products-cat-btn {
    flex: 1 1 calc(50% - 8px);
  }
}
