.sort-box {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 550ms, opacity 300ms;
      pointer-events: none;
}

.sort-wrapper.active .sort-box {
      overflow: visible;
      pointer-events: unset;
      max-height: 600px;
      opacity: 1;
      transition: max-height 950ms, opacity 400ms 200ms;
}

.sort-box .gap-14 {
      display: flex;
      flex-direction: column;
      padding-top: 32px;
}

.sort-box .gap-14 > * + * {margin-top: 14px;}

.sort-box .input-1 {border-color: #AEB2B8;}
.sort-box .btn-blue {margin-top: 32px;}
.main-section .sort-box .btn-blue {margin-bottom: 20px;}

/* CATALOG SECTION */
.catalog-section {margin-top: 48px;}

.catalog-items > * + * {margin-top: 40px;}

.catalog-items > * p {
      color: var(--dark-400);
      font-size: 15px;
}

.catalog-items > * h4 {padding-bottom: 4px;}

.catalog-items .img-hover {border: 0;}

@media (min-width: 480px) {
      /* CATALOG SECTION */
      .catalog-items > * h4 {padding-bottom: 6px;}
      .catalog-items > * p {font-size: 17px;}
      .catalog-items > * + * {margin-top: 50px;}
}

@media (min-width: 600px) {
      .main-section h2 {margin-bottom: 32px;}

      /* SORT BOX */
      .sort-box .gap-14 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
      }

      .sort-box .gap-14 > *:first-child {
            min-width: 100%;
            max-width: 100%;
            width: 100%;
            padding: 0;
      }

      .sort-box .gap-14 > * + * {margin: 0;}

      .sort-box .btn-blue {
            grid-column: 1/3;
            margin-top: 8px;
      }
}

@media (min-width: 740px) {
      /* CATALOG SECTION */
      .catalog-items {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 45px 20px;
      }

      .catalog-items > * + * {margin: 0;}
      .catalog-items > * p {font-size: 15px;}
}

@media (min-width: 800px) {
      /* SORT BOX */
      .sort-wrapper {padding: 8px 0;}

      .sort-wrapper .btn-blue2 {display: none;}

      .sort-box {
            max-height: unset;
            opacity: unset;
            pointer-events: unset;
      }

      .sort-box .gap-14 {
            padding: 0;
            display: flex !important;
            flex-direction: row !important;
            gap: 0 !important;
      }

      .sort-box .gap-14 > * + * {margin: 0 0 0 8px;}

      .sort-box .btn-blue {
            font-size: 15px;
            height: 48px;
            padding-left: 10px;
            padding-right: 10px;
            margin-top: 0;
            max-width: 120px;
      }

      .main-section .sort-box .btn-blue {margin-bottom: 0;}

      .sort-box .gap-14 > * {width: 100%;}

      .sort-box .gap-14 > *:first-child {
            min-width: 25%;
            max-width: 247px;
      }

      .sort-box .gap-14 > *:nth-child(4) {
            min-width: 21%;
            max-width: 160px;
      }

      .sort-box .custom-select .input-1 {
            padding-left: 12px;
            padding-right: 30px;
      }

      .sort-box .custom-select .input-1::after {
            right: 8px;
            background-size: 12px 8px;
      }

      .sort-box .custom-select .options > li {
            padding: 8px;
            font-size: 15px;
            line-height: 20px;
      }
}

@media (min-width: 980px) {
      .main-section h2 {margin-bottom: 0;}

      /* SORT BOX */
      .sort-wrapper {
            padding: 75px 0;
            position: relative;
      }

      .sort-wrapper img {
            display: block !important;
            position: absolute;
            z-index: -1;
            top: 0;
            left: -30px;
            width: calc(100% + 60px);
      }

      .sort-box {
            overflow: unset;
            margin: 0;
            position: relative;
            z-index: 2;
      }

      .sort-box .gap-14 > *:first-child, .sort-box .gap-14 > *:nth-child(4) {min-width: unset;}

      .sort-box .gap-14 > *:nth-child(n+2) {max-width: 160px;}

      .sort-box .btn-blue {max-width: 248px !important;}

      .custom-select .options {    max-height: 289px;}

      .sort-box .custom-select .options > li {padding: 8px 14px;}
      .custom-select .options > li:first-child {padding-top: 12px;}
      .custom-select .options > li:last-child {padding-bottom: 12px;}

      /* CATALOG SECTION */
      .catalog-section, .search-wrapper {margin-top: 30px;}
      .catalog-items {gap: 45px 30px;}
}

@media (min-width: 1180px) {
      /* SORT BOX */
      .sort-wrapper img {top: -55px;}
      .sort-wrapper {padding: 65px 0;}

      .sort-box .gap-14 > * + * {margin: 0 0 0 16px;}

      /* CATALOG SECTION */
      .catalog-section {margin-top: 70px;}
      .catalog-items {gap: 80px 48px;}
}