/* Compact desktop catalog dropdowns. Mobile keeps the existing slide menu. */
@media (min-width: 701px) {
  #menuCatalogSection .drop,
  #mainMenu .drop {
    box-sizing: border-box;
    left: max(24px, calc((100vw - 1480px) / 2));
    right: auto;
    width: min(1120px, calc(100vw - 48px));
    max-height: calc(100vh - 180px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 18px;
    background: #fff;
    background-image: none !important;
    border: 1px solid #e5e5e5;
    border-top: 3px solid #ff9601;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
  }

  #menuCatalogSection .drop {
    width: min(980px, calc(100vw - 48px));
  }

  #menuCatalogSection .drop > .limiter,
  #mainMenu .drop > .limiter {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0 !important;
    padding: 0 !important;
  }

  #menuCatalogSection .drop ul.menuSectionList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 0;
    overflow: visible;
  }

  #menuCatalogSection .drop ul.menuSectionList li.sectionColumn {
    width: auto;
    height: auto;
    min-height: 150px;
    margin: 0;
    padding: 10px;
    line-height: normal;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
  }

  #menuCatalogSection .drop ul.menuSectionList li.sectionColumn:hover {
    background: #fafafa;
    border-color: #ececec;
    transform: translateY(-2px);
  }

  #menuCatalogSection .drop ul li .container {
    display: block;
  }

  #menuCatalogSection .drop ul li .picture {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 96px;
    margin: 0 0 8px;
    line-height: normal;
  }

  #menuCatalogSection .drop ul li .picture img {
    max-width: 120px;
    max-height: 88px;
    object-fit: contain;
  }

  #menuCatalogSection .drop ul li a {
    font-size: 13px;
    line-height: 18px;
  }

  #mainMenu .drop > .limiter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px 12px;
  }

  #mainMenu .drop:not(:has(.nextColumn:nth-child(5))) {
    width: min(820px, calc(100vw - 48px));
  }

  #mainMenu .drop:not(:has(.nextColumn:nth-child(3))) {
    width: min(560px, calc(100vw - 48px));
  }

  #mainMenu .drop:not(:has(.nextColumn:nth-child(2))) {
    width: min(300px, calc(100vw - 48px));
  }

  #mainMenu .drop .nextColumn {
    box-sizing: border-box;
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
    line-height: 18px;
  }

  #mainMenu .drop .nextColumn > li {
    margin: 0;
  }

  #mainMenu .drop .nextColumn > li > .menu2Link {
    display: flex;
    align-items: center;
    min-height: 58px;
    box-sizing: border-box;
    padding: 7px 10px;
    overflow: visible;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    color: #1a1a1a;
    font-family: 'robotoregular';
    font-size: 13px;
    font-weight: 600;
    line-height: 17px;
    text-align: left;
    text-transform: none;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease;
  }

  #mainMenu .drop .nextColumn > li > .menu2Link:hover {
    background: #fff7eb;
    border-color: #ffbf66;
    color: #d87800;
  }

  #mainMenu .drop .nextColumn .menu2Link img {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    margin: 0 10px 0 0;
    padding: 0;
    object-fit: contain;
  }

  #mainMenu .drop .nextColumn ul {
    margin: 5px 8px 2px 58px;
  }

  #mainMenu .drop .nextColumn ul li {
    margin-top: 4px;
  }

  #mainMenu .drop .nextColumn ul li a {
    padding: 3px 0;
    color: #626262;
    font-size: 12px;
    line-height: 16px;
  }
}
