/** Shopify CDN: Minification failed

Line 126:8 Expected identifier but found whitespace
Line 126:10 Unexpected "{"
Line 126:19 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-page-filter (INDEX:22) */
.collection-dropdown-section {
    padding: 96px 0px;
}

.template-collection .collection-dropdown-section {
    padding-bottom: 0;
    margin-bottom: -48px;
}

.collection-dropdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.collection-dropdown-label {
  font-size: 16px;
  color: #fff;
}

.collection-dropdown-container {
  position: relative;
  color: #fff;
}

.collection-dropdown-container.is-open .collection-dropdown-trigger, .collection-dropdown-trigger:hover {
    background: #b92726;
}

.collection-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #b92726;
  background: #000000;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
}

.collection-dropdown-container.is-open .dropdown-arrow {
  transform: rotate(180deg);
}

.collection-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background-color: #000;
  border: 1px solid #fff;
  list-style: none;
  margin: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.3s ease;
}

.collection-dropdown-container.is-open .collection-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.collection-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.collection-dropdown-link:hover {
  background-color: rgb(185 39 38 / 50%);
}

.collection-dropdown-item.is-active .collection-dropdown-link {
  background-color: rgb(185 39 38 / 50%);
  font-weight: bold;
}

.collection-dropdown-menu li {
    margin: 0;
}

.collection-thumb {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.collection-name {
  flex: 1;
}

.active-check {
  flex-shrink: 0;
  color: {{ section.settings.active_text_color }};
}

.collection-dropdown-empty {
  padding: 10px 12px;
  font-size: 0.8rem;
  color: #999;
}


@media only screen and (max-width: 767px) and (min-width: 320px) {

  .collection-dropdown-wrapper {
    justify-content: center;
  }

}
/* END_SECTION:collection-page-filter */