/** Shopify CDN: Minification failed

Line 17:20 Unexpected "{"
Line 17:29 Expected ":"
Line 17:36 Unexpected "{"
Line 26:20 Unexpected "{"
Line 26:29 Expected ":"
Line 34:20 Unexpected "{"
Line 34:29 Expected ":"
Line 41:20 Unexpected "{"
Line 41:29 Expected ":"
Line 48:20 Unexpected "{"
... and 23 more hidden warnings

**/
@media screen and (min-width: 1000px) {
  #shopify-section-{{ section.id }} {
    --header-grid:
      "logo desktop-search secondary-nav"
      "primary-nav primary-nav primary-nav"
      / minmax(180px, 1fr) minmax(320px, 520px) minmax(180px, 1fr);

    --header-padding-block: 0;
  }

  #shopify-section-{{ section.id }} .header {
    padding-top: 0;
    padding-bottom: 0;
    row-gap: 0;
    column-gap: 30px;
  }


  #shopify-section-{{ section.id }} .header__logo {
    grid-area: logo;
    align-self: center;
    justify-self: start;
    padding-block: 11px;
  }

  #shopify-section-{{ section.id }} .header__desktop-search {
    grid-area: desktop-search;
    width: 100%;
    align-self: center;
    justify-self: center;
  }

  #shopify-section-{{ section.id }} .header__secondary-nav {
    grid-area: secondary-nav;
    align-self: center;
    justify-self: end;
    padding-block: 11px;
  }

  /* Hide Prestige default desktop search icon */
  #shopify-section-{{ section.id }}
    .header__secondary-nav
    .header__search-link {
    display: none;
  }



  #shopify-section-{{ section.id }} .header__desktop-search-link {
    width: 100%;
    height: 38px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 0 13px;

    background: #f7f7f7;

    border: 1px solid #f1f1f1;
    border-radius: 4px;

    color: #555;
    text-decoration: none;

    transition:
      background-color 0.2s ease,
      border-color 0.2s ease;
  }

  #shopify-section-{{ section.id }}
    .header__desktop-search-link:hover {
    background: #f4f4f4;
    border-color: #e8e8e8;
  }

  #shopify-section-{{ section.id }}
    .header__desktop-search-link
    .header__nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  #shopify-section-{{ section.id }} .header__desktop-search-text {
    font-family: inherit;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #5e5e5e;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ===============================
     BOTTOM MENU ROW
  ================================ */

  #shopify-section-{{ section.id }} .header__primary-nav {
    grid-area: primary-nav;

    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 37px;

    border-top: 1px solid rgba(0, 0, 0, 0.055);

    padding: 0 25px;
  }

  #shopify-section-{{ section.id }}
    .header__primary-nav
    > .contents {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 34px;

    width: 100%;
  }

  #shopify-section-{{ section.id }}
    .header__primary-nav-item {
    flex: 0 0 auto;
  }

  #shopify-section-{{ section.id }}
    .header__primary-nav-item
    > a,
  #shopify-section-{{ section.id }}
    .header__primary-nav-item
    summary {
    font-size: 10px;
    font-weight: 400;

    letter-spacing: 0.18em;
    line-height: 37px;

    text-transform: uppercase;

    white-space: nowrap;
  }
}

@media screen and (max-width: 999px) {
  #shopify-section-{{ section.id }} .header__desktop-search {
    display: none !important;
  }
}