/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 154:0 Unexpected "{"
Line 154:1 Expected identifier but found "%"

**/
{% comment %}
.mega-menu {
  position: static;
}

.mega-menu__content {
  visibility: hidden;
  background-color: rgb(var(--color-background));
  border: none;
  left: 0;
  overflow-y: auto;
  padding-bottom: 2.4rem;
  padding-top: 2.4rem;
  position: absolute;
  right: 0;
  top: 68%;
  z-index: 1;
}

.mega-menu:hover .mega-menu__content {
  visibility: visible;
  opacity: 1;
}

.header-wrapper--border-bottom .mega-menu__content {
  border-top: 0;
}

.mega-menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0;
  list-style: none;
}

.mega-menu__link {
  color: rgba(var(--color-foreground), 0.75);
  display: block;
  font-size: 1.3rem;
  line-height: calc(1 + 0.3 / var(--font-body-scale));
  padding-bottom: 0.6rem;
  padding-top: 0.6rem;
  text-decoration: none;
  transition: text-decoration var(--duration-short) ease;
  word-wrap: break-word;
}

.mega-menu__link--level-2 {
  font-size: 1.4rem;
}

.mega-menu__link--level-2:not(:only-child) {
  margin-bottom: 0.8rem;
}

.header--top-center .mega-menu__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 0;
}

.header--top-center .mega-menu__list > li {
  width: 16%;
  padding-right: 2.4rem;
}

.mega-menu__link:hover,
.mega-menu__link--active {
  color: rgb(var(--color-foreground));
}

.mega-menu__link--active:hover {
  text-decoration-thickness: 0.2rem;
}

.mega-menu .mega-menu__list--condensed {
  display: block;
}

.mega-menu__list--condensed .mega-menu__link {
  font-weight: normal;
}

.mega-menu__list--image {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  margin-right: 16px;
}

.mega-menu__list--content {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}

.mega-menu__link--category {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.mega-menu__link--product {
  font-family: 'PP Cirka';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
}

.menu-drawer__menu li {
  border-bottom: 1px solid rgba(28, 24, 24, 0.2);
}
.menu-drawer__menu li:last-child {
  border-bottom: 1px solid rgba(28, 24, 24, 0.2);
}

@media screen and (min-width: 990px) {
  .mega-menu__list--image {
    width: 130px;
    height: 160px;
    display: flex;
    justify-content: center;
    margin: 0 auto 15px;
  }
  .mega-menu__link--category {
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 8px;
  }
  .mega-menu__link--product {
    font-size: 18px;
    line-height: 20px;
  }
  .mega-menu__link--category,
  .mega-menu__link--product {
    display: block;
    text-align: center;
  }
}
{% endcomment %}
