/** Shopify CDN: Minification failed

Line 277:0 Unexpected "}"

**/
.header__menu-item-wrapper:hover > .header__menu-item {
  color: var(--title-color);
}

/* Same as Shop mega menu: underline the nav label only while hovering the link, not the dropdown panel */
.header__menu-item-wrapper:hover > .header__menu-item:not(:hover) span:after {
  width: 0;
  opacity: 0;
}

.header__menu-item-wrapper > .header__menu-item:hover span:after {
  width: 100%;
  opacity: 1;
}

.header__menu-item-wrapper:hover > .vt-header-nav {
  height: 100vh;
  max-height: calc(100vh - var(--header-height));
}
.vt-header-nav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  background-color: rgb(var(--color-background));
  height: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 989px) {
  .vt-header-nav {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    max-height: 100%;
    overflow: visible;
    padding-right: 2.4rem;
    padding-left: 2.4rem;
    width: 100%;
  }
}
.vt-header-nav__grid {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.9rem;
  padding-bottom: 4.7rem;
  height: 100%;
}
@media only screen and (max-width: 989px) {
  .vt-header-nav__grid {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
}
.vt-header-nav__item {
  padding: 0;
  margin: 0;
  position: relative;
  font-size: 0;
  height: 100%;
}
@media only screen and (max-width: 989px) {
  .vt-header-nav__item {
    max-width: 100% !important;
    width: 100% !important;
  }
}
.vt-header-nav__item.one-item {
  flex: 0 0 100%;
  max-width: 100%;
}
.vt-header-nav__item.two-items {
  flex: 0 0 calc(50% - 0.95rem);
  max-width: calc(50% - 0.95rem);
}
.vt-header-nav__item.three-items {
  flex: 0 0 calc(33.3333333333% - 1.2666666667rem);
  max-width: calc(33.3333333333% - 1.2666666667rem);
}
.vt-header-nav__item:hover .svg-wrapper {
  opacity: 1;
  transform: scale(1.05);
}
.vt-header-nav .vt-header-nav__item--submenu-open {
  position: static;
}
.vt-header-nav__image {
  width: 100%;
  height: 100%;
  -o-object-fit: inherit;
  object-fit: inherit;
}
@media only screen and (max-width: 989px) {
  .vt-header-nav__image {
    max-height: 16.75rem;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.vt-header-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 3.2rem 4.1rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.8rem;
}
@media only screen and (max-width: 989px) {
  .vt-header-nav__overlay {
    padding: 2.9rem 2rem;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: row;
  }
}
.vt-header-nav__title {
  font-family: var(--font-heading-family);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
  color: var(--title-color);
  font-size: 3.4rem;
  margin: 0;
}
@media only screen and (min-width: 990px) {
  .vt-header-nav__title {
    font-size: 4.8rem;
    min-height: 2em;
  }
}

@media only screen and (min-width: 2227px) {
    .vt-header-nav__title {
      min-height: unset;
    }
  }
@media only screen and (min-width: 1300px) {
  .vt-header-nav__title {
    font-size: 6.6rem;
  }
}
.vt-header-nav__miella {
  position: absolute;
  bottom: 3.8rem;
  left: 50%;
  transform: translate(-50%);
  width: calc(100% - 18rem);
  height: auto;
  z-index: 1;
  text-align: center;
}
.vt-header-nav__miella img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.vt-header-nav .svg-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: scale(1);
}
@media only screen and (max-width: 989px) {
  .vt-header-nav .svg-wrapper {
    margin-bottom: -1.2rem;
  }
}
.vt-header-nav .svg-wrapper rect,
.vt-header-nav .svg-wrapper path {
  stroke: var(--title-color);
}
.vt-header-nav__submenu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-background), 1);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(1.2rem);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s linear 0.25s;
}
.vt-header-nav__item--submenu-open .vt-header-nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s linear 0s;
}
.vt-header-nav__submenu-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 2.9rem 2rem;
}
.vt-header-nav__submenu-item-link {
  color: rgba(var(--color-foreground), 1);
  display: inline-block;
  line-height: 1.2;
  padding-bottom: 0.6rem;
  padding-top: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.21em;
  text-decoration: none;
  text-transform: uppercase;
  word-wrap: break-word;
  position: relative;
}
.vt-header-nav__submenu-back {
  display: inline-block;
  line-height: 1.2;
  padding-bottom: 0.6rem;
  padding-top: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.21em;
  text-decoration: none;
  text-transform: uppercase;
  word-wrap: break-word;
  border: 1px solid rgba(var(--color-foreground), 1);
  padding: 0.6rem 1.2rem;
  font-size: 1.4rem;
  margin-left: 20px;
}

.vt-header-nav__item--submenu-open ~ .vt-header-nav__item,
.vt-header-nav__item--submenu-open {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
  z-index: 10;
}

.is-submenu-active .vt-header-nav__grid > .vt-header-nav__item:not(.vt-header-nav__item--submenu-open) {
  visibility: hidden;
}

.is-submenu-active .vt-header-nav__grid > .vt-header-nav__item {
  visibility: hidden;
}

.vt-header-nav__submenu-items{
  background-color: #fff;
}
}