.header-catalog-wrapper {
  background-color: #151515;
  position: relative;
  z-index: 100;
}

.header-catalog-wrapper {
  .contact-button {
    box-shadow: 3px 4px 10px 0 rgba(136, 210, 50, 0.39), -4px 4px 15px 0 rgba(134, 204, 51, 0.36);
  }
}

.tree {
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 40px;
}

.catalog-categories-menu-wrapper {
  background-color: #151515;
  position: relative;
  z-index: 90;
  padding-top: 80px;
  padding-bottom: 150px;
}

.tree-link {
  color: white;
  font-size: 18px;
  font-weight: 450;
  line-height: 100%;
}

.tree a:last-of-type {
  color: #878787;
}

.categories-wrapper {
  .container {
    display: flex;
    padding-left: 80px;
    padding-right: 80px;
    gap: 16px;
  }
}

.categorie {
  position: relative;

  img {
    min-width: 0;
    max-width: 100%;
    height: auto;
  }

  a {
    padding: 12px 28px;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
    position: absolute;
    bottom: 32px;
    left: 32px;
    border-radius: 76px;
    background: rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(3.5px);

    img {
      vertical-align: middle;
      margin-left: 8px;
    }
  }
}

.catalog-wrapper {
  background-color: white;
  position: relative;
  z-index: 99;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
}

.catalog {
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 150px;

  h1 {
    color: #05011C;
    padding-top: 100px;
    font-size: 68px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 56px;
  }
}

.new-z {
  z-index: 120;
}

.filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.filters__tabs {
  display: inline-flex;
  background: #F1F1F1;
  padding: 4px;
  border-radius: 999px;
  gap: 4px;
}

.tab {
  border: none;
  background: transparent;
  padding: 16px 32px;
  border-radius: 76px;
  cursor: pointer;
  color: #000;
  transition: background 0.2s;

  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
}

.tab:hover {
  background: rgba(0, 0, 0, 0.05);
}

.tab.active {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dropdown {
  position: relative;
  max-width: 240px;
}

.filters__dropdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;

  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
}

.filters__dropdown .arrow {
  font-size: 12px;
}

.dropdown__toggle {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e0e0e0;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.dropdown__toggle .arrow {
  margin-left: auto;
  transition: transform 0.2s;
}

.dropdown.open .arrow {
  transform: rotate(180deg);
}

.dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
  padding: 16px 24px;
  display: none;
  z-index: 5;
}

.dropdown.open .dropdown__menu {
  display: block;
}

.option {
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  position: relative;
  gap: 8px;
}

.option:hover {
  background: #f5f5ff;
}

.option.active {
  background: #eef0ff;
}

.checkbox {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #c7c7c7;
  position: relative;
}

.option input {
  display: none;
}

.option input:checked+.checkbox {
  border-color: #5b5bf0;
  background: #5b5bf0;
}

.option input:checked+.checkbox::after {
  content: "✓";
  position: absolute;
  color: #fff;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pagination {
  padding-top: 56px;
  padding-bottom: 56px;
  display: flex;
  justify-content: center;
  gap: 32px;

  button {
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 2000px;
    background: transparent;
    border: 1px solid #ccc;
    color: #05011C;
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
    transition: all 0.2s;
  }
}

.pagination button.active {
  border: 2px solid #000;
  background: #05011C;
  color: #fff;
}

/* desktop */
.filters {
  display: flex;
  gap: 16px;
}

.dropdown--season {
  display: none;
}