.catalog-navigation-dropdown-container {
    margin: 48px 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.catalog-navigation-dropdown-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.custom-select-wrapper {
  position: relative;
}

.custom-select {
  position: relative;
  cursor: pointer;
  background: #fff;
}

.custom-select__trigger {
	min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid var(--gray-border);
    border-radius: 4px;
}
.custom-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
  vertical-align: middle;
  transform-origin: center center; 
}
.custom-arrow svg {
  display: block;
  height: 6px;
}
.custom-select.open .custom-arrow {
  transform: rotate(180deg);
}
.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--gray-border);
  border-top: none;
  display: none;
  z-index: 10;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.custom-option {
  padding: 16px;
  cursor: pointer;
  color: var(--blue-dark);
  font-size: 14px;
  transition: var(--transition);
}

.custom-option:hover {
  background-color: #f4f5f6;
}
.custom-select.open .custom-select__trigger{
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom: 0px;
}
.custom-select.open .custom-options {
	overflow: auto;
    display: flex;
    flex-direction: column;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    max-height: 500px; 
    opacity: 1;
}
.all-combinations-btn {
    color: var(--blue-dark);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: var(--transition);
}
.all-combinations-btn:hover {
    color: var(--blue-hover);
}
.group-combi-list .group-item {
    display: none;
}

.group-combi-list .group-item:nth-child(-n+3) {
    display: block;
}

.show-all-combi-items {
    margin: 24px 0px 0px;
    color: var(--blue);
    background-color: transparent;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: var(--transition);
}

.show-all-combi-items:hover {
  color: var(--blue-hover);
}

@media only screen and (max-width: 1023px) {
    .catalog-sort-icon {
        grid-area: sort;
    }
    .all-combinations-mob-btn {
        grid-area: combi;
    }
}