/** Shopify CDN: Minification failed

Line 34:17 The "+" operator only works if there is whitespace on both sides

**/
.collection-mega-menu-item,
.header__inline-menu,
.header__inline-menu #AccessibleNav,
.header__inline-menu .dt-desktop-menu {
  position: static !important;
}

.collection-mega-menu-item > .dt-sc-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.collection-mega-menu-item {
  padding-bottom: 1.2rem;
  margin-bottom: -1.2rem;
}

.collection-mega-menu-item .dt-sc-caret {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  margin-top: -13px;
}

.collection-mega-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% +-0.8rem);
  left: 2rem;
  right: 2rem;
  width: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1rem);
  color: rgb(var(--color-foreground));
  background: white;
  border-radius: 1.6rem;
  box-shadow: 0 1.6rem 3.2rem rgba(0, 0, 0, 0.14);
  overflow: hidden;
  transition:
    opacity var(--duration-default) ease,
    visibility var(--duration-default) ease,
    transform var(--duration-default) ease;
}

.collection-mega-menu::before {
  content: '';
  position: absolute;
  top: -1.2rem;
  left: 0;
  right: 0;
  height: 1.2rem;
}

.collection-mega-menu-item:hover > .collection-mega-menu,
.collection-mega-menu-item:focus-within > .collection-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.collection-mega-menu__grid {
  display: flex;
  gap: 2.4rem;
  padding: 2.8rem 3.2rem;
}

.collection-mega-menu__column {
  flex: 1 1 0;
  min-width: 0;
}

.collection-mega-menu__heading {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.2rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  color: rgb(var(--color-link));
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  font-family: var(--font-heading-family);
  font-size: calc(var(--font-base-size) - 0.1rem);
  font-weight: var(--font-heading-weight);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.collection-mega-menu__heading:hover {
  color: rgb(var(--color-link-hover));
}

.collection-mega-menu__heading-icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
}

.collection-mega-menu__heading-icon svg {
  display:none;
  width: 100%;
  height: 100%;
}

.collection-mega-menu__products {
  display: grid;
  gap: 1.5rem;
}

.collection-mega-menu__product {
  display: grid;
  grid-template-columns: 4.8rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.collection-mega-menu__image {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  overflow: hidden;
  background: rgba(var(--color-foreground), 0.05);
  border: 0.2rem solid rgba(var(--color-foreground), 0.12);
  border-radius: 50%;
}

.collection-mega-menu__image img,
.collection-mega-menu__image svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-mega-menu__product-copy {
  display: block;
  min-width: 0;
}

.collection-mega-menu__product-copy strong,
.collection-mega-menu__product-copy span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.collection-mega-menu__product-copy strong {
  -webkit-line-clamp: 2;
  color: rgb(var(--color-foreground));
  font-family: var(--font-heading-family);
  font-size: calc(var(--font-base-size) - 0.1rem);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.collection-mega-menu__product-copy span {
  margin-top: 0.25rem;
  -webkit-line-clamp: 2;
  color: rgba(var(--color-foreground), 0.72);
  font-size: calc(var(--font-base-size) - 0.3rem);
  line-height: 1.3;
}

.collection-mega-menu__product:hover strong {
  color: rgb(var(--color-link-hover));
}

.collection-mega-menu__empty {
  color: rgba(var(--color-foreground), 0.65);
  font-size: calc(var(--font-base-size) - 0.2rem);
}

.collection-mega-menu__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 4rem;
  background: rgba(var(--color-foreground), 0.015);
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.collection-mega-menu__footer p {
  margin: 0;
  color: rgb(var(--color-link));
  font-style: italic;
}

.collection-mega-menu__actions {
  display: flex;
  gap: 1rem;
}

@media screen and (max-width: 1399px) {
  .collection-mega-menu__grid {
    flex-wrap: wrap;
  }

  .collection-mega-menu__column {
    flex: 1 1 calc(20% - 2.4rem);
    min-width: 18rem;
  }
}

@media screen and (max-width: 989px) {
  .collection-mega-menu {
    position: static;
    left: 0;
    right: 0;
    width: auto;
    border-radius: 0;
    box-shadow: none;
  }

  .collection-mega-menu__grid {
    flex-direction: column;
    padding: 1.5rem;
  }

  .collection-mega-menu__footer {
    display: none;
  }
}