.shop-filters {
  padding-right: 20px;
}

.shop-products {
  flex: 1;
}

.filter-section {
  margin-bottom: 30px;
}

.filter-title {
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
}

.filter-brand-list,
.filter-term-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.filter-brand-list li,
.filter-term-list li {
  margin-bottom: 10px;
}

.filter-brand-list img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  margin-bottom: 5px;
}

.attribute-filter-main{
  display: flex;
  gap: 10px;
}

#selected-filters {
    margin: 15px 0;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 5px;
}
#selected-filters .filter-group {
    margin-bottom: 8px;
}
#selected-filters .selected-term {
    display: inline-block;
    background: #e1e1e1;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: 5px;
    font-size: 14px;
}
#selected-filters .selected-term a {
    color: #333;
    text-decoration: none;
    margin-left: 4px;
    font-weight: bold;
}
.reset-filters {
    margin-left: 10px;
    color: #0073aa;
    text-decoration: underline;
}

#ajax-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 128, 128, 0.4);
    z-index: 9999;
    display: none;
    cursor: not-allowed;
}
.custom-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 300;
    color: #3c3b3b;
    margin: auto;
    width: max-content;
    text-align: center;
    margin-bottom: 130px !important;
}

.custom-pagination a, .custom-pagination span {
    text-decoration: none;
    color: inherit;
    padding: 0px 6px;
}

.custom-pagination .prev-page, .custom-pagination .next-page {
    font-size: 35px;
    line-height: 1;
}

.custom-pagination .disabled {
    opacity: 0.4;
    pointer-events: none;
}
