      #ajax-product-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
      }

      #ajax-product-container ul.products {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        margin: 0;
        list-style: none;
      }

      #ajax-product-container ul.products li.product {
        width: 33.3333%;
        padding: 0;
        margin: 0;
      }

      #loading {
        text-align: center;
        display: none;
        font-family: var(--e-global-typography-f726a4b-font-family);
        font-size: var(--e-global-typography-f726a4b-font-size);
        font-weight: var(--e-global-typography-f726a4b-font-weight);
        line-height: var(--e-global-typography-f726a4b-line-height);
        letter-spacing: var(--e-global-typography-f726a4b-letter-spacing);
        text-transform: var(--e-global-typography-f726a4b-text-transform);
        color: rgb(132, 130, 119);
        padding: 2rem 0;
      }

      @media (max-width: 768px) {
        #ajax-product-container ul.products li.product {
          width: 100%;
        }
      }

      .no-products-found {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        background: #f7f6f5;
        text-align: center;
        color: #848277;
        font-family: var(--e-global-typography-8a80e9a-font-family);
        width: 100%;
        padding: 2rem;
        box-sizing: border-box;
      }

      .no-products-content p {
        font-size: 24px;
        margin-bottom: 1.5rem;
      }

      .reset-filters {
        display: inline-block;
        padding: 0.75rem 1.5rem;
    background-color: #c59e77;
        color: #f7f6f5;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: 400;
        transition: background 0.2s ease;
 
        font-size: 12px;
      }

      .reset-filters:hover {
            color: #f7f6f5;
      }

            .filter-toggle-wrapper {
        position: fixed;
        top: 120px;
        right: 100px;
        z-index: 9999;
        transition: all 0.3s ease;
      }

      @media (max-width: 1024px) {
        .filter-toggle-wrapper {
          top: 71px;
          right: 50px;
        }
      }

      @media (max-width: 768px) {
        .filter-toggle-wrapper {
          top: 71px;
          right: 20px;
        }
      }

      .filter-toggle-button {
        width: 30px;
        height: 30px;
        background-color: rgba(247, 246, 245, 0.87);
        border-radius: 50%;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
        padding: 0;
        box-shadow: none;
        outline: none;
        color: inherit;
      }

      .filter-toggle-button:hover,
      .filter-toggle-button:focus,
      .filter-toggle-button:active {
        background-color: rgba(247, 246, 245, 0.87);
        outline: none;
        box-shadow: none;
        border: none;
      }

      .filter-toggle-button.open {
        background-color: transparent;
      }

      .filter-toggle-button svg {
        width: 16px;
        height: 16px;
        fill: #5D5C59;
        display: block;
        pointer-events: none;
      }

      .filter-panel {
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: 30px;
        background-color: rgba(247, 246, 245, 0.87);
        border-radius: 50%;
        overflow: hidden;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        opacity: 0;
        pointer-events: none;
      }

      .filter-panel.open {
        width: 300px;
        height: auto;
        border-radius: 0;
        padding: 2rem;
        opacity: 1;
        pointer-events: auto;
		  
      }

      .filter-panel-content {
        margin-top: 0rem;
        color: #5D5C59;
      }
	
	.sort-wrapper {
  width: 100%;
  font-family: var(--e-global-typography-8a80e9a-font-family);
  font-size: var(--e-global-typography-8a80e9a-font-size);
  font-weight: var(--e-global-typography-8a80e9a-font-weight);
  line-height: var(--e-global-typography-8a80e9a-line-height);
  letter-spacing: var(--e-global-typography-8a80e9a-letter-spacing);
  text-transform: var(--e-global-typography-8a80e9a-text-transform);
  color: #5D5C59;
  position: relative;
}

.sort-toggle {
  width: 100%;
  background: transparent;
  border: 1px solid #5D5C59;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
  border-radius: 0;
}

.sort-toggle svg {
  width: 16px;
  height: 16px;
  fill: #5D5C59;
  pointer-events: none;
}

.sort-options {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0 0;
  border: 1px solid #5D5C59;
  border-radius: 0;
  background: #F7F6F5DE;
}

.sort-options li {
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: #5D5C59;
}
.sort-toggle:hover,
.sort-toggle:focus,
.sort-toggle:active {
  background-color: transparent;
  border-color: #5D5C59;
  color: #5D5C59;
  box-shadow: none;
  outline: none;
}

.sort-options li:hover {
  background: rgba(93, 92, 89, 0.1);
}
	
.filter-group label {
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--e-global-typography-8a80e9a-font-family);
  font-size: var(--e-global-typography-8a80e9a-font-size);
  font-weight: var(--e-global-typography-8a80e9a-font-weight);
  line-height: var(--e-global-typography-8a80e9a-line-height);
  letter-spacing: var(--e-global-typography-8a80e9a-letter-spacing);
  text-transform: var(--e-global-typography-8a80e9a-text-transform);
}

.apply-filters-btn {
  width: 100%;
  padding: 0.5rem 1rem;
  background: #5d5c59;
  color: #fff;
  font-family: var(--e-global-typography-8a80e9a-font-family);
  font-size: var(--e-global-typography-8a80e9a-font-size);
  font-weight: 400;
  letter-spacing: var(--e-global-typography-8a80e9a-letter-spacing);
  text-transform: var(--e-global-typography-8a80e9a-text-transform);
  border: 1px solid #5d5c59;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease;
}

.apply-filters-btn:hover {
  background: #4a4946;
}
.apply-filters-btn:focus,
.apply-filters-btn:active,
.apply-filters-btn:focus-visible {
  background: #5d5c59;
  border-color: #5d5c59;
  outline: none;
  box-shadow: none;
  color: #fff;
}

.filter-panel-content .sort-wrapper {
  margin-bottom: 1rem;
}

.filter-group .filter-label {
  font-family: var(--e-global-typography-8a80e9a-font-family);
  font-size: var(--e-global-typography-8a80e9a-font-size);
  font-weight: var(--e-global-typography-8a80e9a-font-weight);
  letter-spacing: var(--e-global-typography-8a80e9a-letter-spacing);
  text-transform: var(--e-global-typography-8a80e9a-text-transform);
  margin-bottom: 0.5rem;
}
	
	.filter-group {
		margin-bottom: 0.75rem;
	}
.filter-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 12px;
  height: 12px;
  margin-right: 0.2rem;
  border: 1px solid #5d5c59;
  background-color: #fff;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
	margin-top: -2px;
}

.filter-group input[type="checkbox"]:checked {
  background-color: #5d5c59;
}
.filter-group label {
  display: inline-flex;
  align-items: center;
}

.reset-filters-link {
  text-align: center;
  margin-top: 1rem;
}

.reset-filters-link a {
  text-decoration: underline !important;
  color: #5d5c59;
  font-family: var(--e-global-typography-8a80e9a-font-family);
  font-size: var(--e-global-typography-8a80e9a-font-size);
  font-weight: var(--e-global-typography-8a80e9a-font-weight);
  line-height: var(--e-global-typography-8a80e9a-line-height);
  letter-spacing: var(--e-global-typography-8a80e9a-letter-spacing);
  text-transform: var(--e-global-typography-8a80e9a-text-transform);
  cursor: pointer;

}

.reset-filters-link a:hover {
  color: #5d5c59;
}
	
	.colorfilters-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
margin-bottom: 1.5rem;
}

.colorfilters-bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 0px solid #5d5c59;
  cursor: pointer;
  transition: all 0.2s ease;
}

.colorfilters-bullet.active {
  outline: 2px solid #5d5c59;
  outline-offset: 2px;
}

@media (min-width: 1025px) {
  .filter-toggle-wrapper:hover .filter-panel {
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 300px !important;
    height: auto !important;
    border-radius: 0 !important;
    padding: 2rem !important;
  }

  .filter-toggle-wrapper:hover .filter-toggle-button {
    background-color: transparent !important;
  }
}
@media (min-width: 1025px) {
  .filter-toggle-button.open,
  .filter-panel.open {
    /* Geen extra effect op desktop */
    all: unset;
  }
}
@media (min-width: 1025px) {
  .sort-wrapper:hover .sort-options {
    display: block !important;
  }

  .sort-wrapper .sort-options {
    display: none;
  }
}
.filter-group label {
  cursor: pointer;
}
		
		.sort-icon {
  transition: transform 0.4s ease;
}

@media (min-width: 1025px) {
  .sort-wrapper:hover .sort-icon {
    transform: rotate(180deg);
  }
}

.filter-group input[type="checkbox"] {
  display: none;
}

.filter-group label {
  display: inline-block;
  padding: 4px 6px;
  margin-right: 8px;
  border: 1px solid #d1cebc;
  border-radius: 2px;
  background: transparent;
  color: #848277;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-group input[type="checkbox"]:checked + label {
  background-color: #c59e77;
  color: #fff;
   border: 1px solid #c59e77;
}
.size-filter label {
  width: 36px; 
  text-align: center;
}
.filter-group label:hover {
  background-color: #d1cebc;
}
.size-guide-link a {
  font-family: "KU Uniforma", sans-serif;
  font-size: 10px;
  color: #848277;
  text-decoration: underline !important;
  align-self: flex-end;
  margin-top: -8px;
}
.size-guide-link{
    margin-top: -8px;
}
