/** Shopify CDN: Minification failed

Line 69:3 Cannot use type selector "svg" directly after nesting selector "&"

**/
/* Section Layout */
.section__home__collection.w-full {
  padding: 4rem;
}
.collection-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  justify-content: stretch;
  align-items: stretch;
}
.collection-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  justify-content: stretch;
  align-items: stretch;
}
.collection-head {
  display: flex;
  flex-direction: row;
  gap: 3.2rem;
  justify-content: space-between;
  align-items: center;
}
.collection-head h1 {
  flex: 1 1 auto;
}
.collection-head__desc {
  max-width: 460px;
}


/* Collection Filter */

.filter-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 2.4rem;
  flex: 0 0 auto;
}
.filter-item {
  position: relative;
  cursor: pointer;

  &:hover .filter-item__dropdown {
    opacity: 1;
    pointer-events: auto;
  }
  &:hover .filter-item__dropdown-item {
    pointer-events: auto;
  }
}
.filter-item__title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-grey);

  &svg {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.filter-item__dropdown {
  padding: 0.8rem;
  position: absolute;
  top: 100%;
  border-radius: 0.4rem;
  z-index: 3;
  background: var(--color-white);
  min-width: 16rem;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.05));
  opacity: 0;
  pointer-events: none;
  transition: all .5s ease;
}
.filter-item__dropdown-item {
  padding: 1.2rem 0;
  font-size: 1.2rem;
  color: var(--color-grey);
  border-bottom: 1px solid var(--color-grey);
  pointer-events: none;

  &:last-child {
    border: unset;
  }
  &:hover {
    color: var(--color-primary);
  }
  & a {
    display: inline-block;
    width: 100%;
  }
}

@media(max-width: 991px) {
  .section__home__collection.w-full {
    padding: 2rem;
  }
  .collection-wrapper {
    gap: 2rem;
  }
  .collection-head {
    gap: 2rem;
  }
  .collection-head__desc {
    width: 100%;
    max-width: none;
  }
}

@media(max-width: 768px) {
  .collection-content {
    gap: 1.2rem;
  }

  .collection-head {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.6rem;
  }

  .filter-wrapper {
    width: 100%;
    justify-content: flex-start;
    gap: 1.6rem;
    flex-wrap: wrap;
  }
}
