
/* Header */
#shopify-section-header {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1;
}
.page-container {
    padding-top: 80px;
    z-index: 0;
    @media screen and (min-width: 750px) {
        padding-top: 111px;
    }
}

@media screen and (min-width: 750px) {
    header.site-header .grid {
        align-content: center;
        align-items: center;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    header.site-header .grid .grid__item:first-child,
    header.site-header .grid .grid__item:last-child {
        flex: 0 1 auto;
        min-width: 180px;
        width: auto;
    }
    header.site-header .grid nav.grid__item {
        flex: 1 0 auto;
        width: auto;
    }
}


.site-nav {
    margin: 15px 0;
}
.site-nav__link[href*="sale"] {
  color: red;
}
.site-nav__link[href*="sale"]:hover .site-nav__label {
  border-bottom-color: red;
  color: red;
}
.site-nav__link--active[href*="sale"] .site-nav__label {
  border-bottom-color: red;
}


.site-nav__link--main {
    font-size: 14px;
    font-weight: 600;
    padding-left: 20px !important;
    padding-right: 20px !important;
    text-transform: uppercase;
}
.site-nav__childlist-item:not(:last-child) {
    padding-right: 60px;
}

.site-nav__childlist-item .site-nav__child-link--parent {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
.site-nav__childlist-item .site-nav__child-link--parent:hover .site-nav__label {
    border-bottom: none !important;
    cursor: default !important;
}
.site-nav__childlist-item ul .site-nav__child-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}


@media screen and (max-width: 749px) {
  .site-header__icon {
    display: inline-flex;
  }
  .mobile-nav--close .icon-close {
    display: none;
  }
  .mobile-nav--close .icon-hamburger {
      display: block;
  }

  .mobile-nav--close .icon-hamburger line:nth-child(2) {
      display: none;
  }

  .icon-hamburger line:nth-child(1),
  .icon-hamburger line:nth-child(3) {
      transition: all 300ms ease;
  }
  .mobile-nav--close .icon-hamburger line:nth-child(1) {
      transform: rotate(45deg) scale(1.2);
      transform-origin: 15% 0%;
  }
  .mobile-nav--close .icon-hamburger line:nth-child(3) {
      transform: rotate(-45deg) scale(1.2);
      transform-origin: 15% 100%;
  }

}


/* Collections List */
.grid-view-item__image-wrapper,
.grid-view-item__image-wrapper img {
  max-height: none !important;
  max-width: 100% !important;
}

.grid-view-item__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    text-transform: uppercase;
}

.price__vendor {
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 8px;
    margin-top: 8px;
}

.price.price--on-sale .price__regular {
  color: #999;
}
.price-item.price-item--sale {
    font-weight: 500;
}

.price-item__label {
    font-weight: 500;
}

.filters-toolbar__input,
.filters-toolbar__product-count {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.filters-toolbar__product-count {
    font-style: normal;
}


/* PDP */
.product-single__photo-wrapper,
.product-featured-img {
  max-height: 100% !important;
  max-width: 100% !important;
}


/* ===================================================== */
/* Product Grid Section
/* ===================================================== */
.product-grid {
  display: block;
  margin: 30px auto;
  max-width: 1440px;
  position: relative;
}

.product-grid__heading {
  padding: 0 10px;
}

@media screen and (min-width: 1440px) {
  .product-grid__heading {
    padding: 0;
  }
}

.product-grid__heading h2 {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .product-grid__heading h2 {
    font-size: 28px;
  }
}

.product-grid img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.product-grid__grid {
  -ms-grid-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}

@media screen and (min-width: 768px) {
  .product-grid__grid {
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}

@media screen and (min-width: 768px) {
  .product-grid__grid.grid-3 {
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
  }
}

@media screen and (min-width: 768px) {
  .product-grid__grid.grid-5 {
    -ms-grid-columns: 2fr (1fr)[2];
    grid-template-columns: 2fr repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .product-grid__grid.grid-7 {
    -ms-grid-columns: 2fr (1fr)[3];
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

.product-grid__item {
  font-size: 0;
  overflow: hidden;
  position: relative;
}

.product-grid__item:first-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
      grid-column-start: 1;
}

@media screen and (min-width: 768px) {
  .product-grid__item:first-child {
    -ms-grid-column-span: 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-column-end: 2;
    grid-row-end: 3;
        grid-row-start: 1;
  }
}

.product-grid__item:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.product-grid__overlay {
      -ms-flex-align: center;
      -ms-flex-pack: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -webkit-transition: all 0.3s ease;
          align-items: center;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  height: 100%;
          justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  transition: all 0.3s ease;
  width: 100%;
}

.product-grid__overlay:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #fff !important;
  opacity: 1;
}
