/** Shopify CDN: Minification failed

Line 427:0 Unexpected "}"

**/
.clh-wrap {
  position: relative;
  background: var(--clh-cream);
  padding: 48px 0 40px;
  overflow: hidden;
}

.clh-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 20%,
    rgba(255, 255, 255, 0.3) 45%,
    rgba(255, 255, 255, 0.65) 70%,
    #fff 100%
  );
  pointer-events: none;
}


.clh-inner {
  text-align: center;
  max-width: 720px;
}

.clh-eyebrow {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clh-brown);
  margin-bottom: 12px;
}

.clh-title {
  font-size: 3.6rem;
  color: var(--clh-charcoal);
  line-height: 1.1;
  margin: 0 0 12px;
}

.clh-desc {
  font-size: 1.5rem;
  color: var(--clh-charcoal);
  opacity: 0.65;
  line-height: 1.6;
  margin-bottom: 28px;
}

.clh-desc p {
  margin: 0;
}

/* ---------- SEARCH (matches homepage hero search) ---------- */

.clh-search {
  max-width: 570px;
  height: 56px;
  margin: 0 auto 0px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(18, 18, 18, 0.06);
}

.clh-search input[type="search"] {
  flex: 1;
  width: 100%;
  height: 100%;
  padding: 0 22px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--clh-charcoal);
  font-size: 1.5rem;
  -webkit-appearance: none;
  appearance: none;
}

.clh-search input[type="search"]::-webkit-search-decoration,
.clh-search input[type="search"]::-webkit-search-cancel-button,
.clh-search input[type="search"]::-webkit-search-results-button,
.clh-search input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.clh-search input[type="search"]::placeholder {
  color: rgba(18, 18, 18, 0.45);
}

.clh-search button {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--clh-charcoal);
  cursor: pointer;
  transition: background 0.25s ease;
}

.clh-search button:hover {
  background: var(--clh-gold);
}

.clh-search button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--clh-cream);
  stroke-width: 1.7;
}

/* ---------- FORMAT FILTER ---------- */

.clh-format-row {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.cl-dropdown {
  position: relative;
}

.cl-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 100px;
  background: #ffffff;
  font-family: inherit;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clh-charcoal);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cl-dropdown-trigger:hover {
  border-color: var(--clh-gold);
}

.cl-dropdown.open .cl-dropdown-trigger,
.cl-dropdown-trigger.has-active {
  background: var(--clh-charcoal);
  color: var(--clh-cream);
  border-color: var(--clh-charcoal);
}

.cl-dropdown-trigger .cl-dot {
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: var(--clh-gold);
}

.cl-dropdown-trigger svg.chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.15s ease;
}

.cl-dropdown.open .cl-dropdown-trigger svg.chevron {
  transform: rotate(180deg);
}

.cl-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: #ffffff;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(18, 18, 18, 0.14);
  padding: 18px;
  z-index: 30;
  display: none;
  text-align: left;
}

.cl-dropdown.open .cl-dropdown-panel {
  display: block;
}

.cl-dropdown-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 18, 18, 0.1);
}

.cl-dropdown-reset {
  font-size: 1.15rem;
  color: var(--clh-charcoal);
  opacity: 0.55;
  text-decoration: underline;
}

.cl-dropdown-apply {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clh-cream);
  background: var(--clh-charcoal);
  border: none;
  border-radius: 100px;
  padding: 8px 16px;
  cursor: pointer;
}

.cl-filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cl-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cl-filter-option.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cl-filter-option input[type="checkbox"] {
  display: none;
}

.cl-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(18, 18, 18, 0.15);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.1s ease, border-color 0.1s ease;
}

.cl-filter-option.checked .cl-checkbox {
  background: var(--clh-charcoal);
  border-color: var(--clh-charcoal);
}

.cl-checkbox svg {
  width: 10px;
  height: 10px;
  opacity: 0;
}

.cl-filter-option.checked .cl-checkbox svg {
  opacity: 1;
}

.cl-filter-option-label {
  font-size: 1.35rem;
  color: var(--clh-charcoal);
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cl-filter-option-count {
  font-size: 1.15rem;
  color: var(--clh-charcoal);
  opacity: 0.5;
}

.cl-info-tip {
  position: relative;
  display: inline-flex;
  color: var(--clh-charcoal);
  opacity: 0.45;
  cursor: help;
}

.cl-info-tip svg {
  width: 13px;
  height: 13px;
  display: block;
}

.cl-info-tip-bubble {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background: var(--clh-charcoal);
  color: var(--clh-cream);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 20;
}

.cl-info-tip-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--clh-charcoal);
}

.cl-info-tip:hover .cl-info-tip-bubble,
.cl-info-tip:focus .cl-info-tip-bubble {
  opacity: 1;
}

/* ---------- SHOP BY STYLE PILLS (always visible, not a dropdown) ---------- */

.clh-styles {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.clh-style-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 100px;
  background: #ffffff;
  color: var(--clh-charcoal);
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.clh-style-pill:hover {
  border-color: var(--clh-gold);
}

.clh-style-pill.active {
  background: var(--clh-charcoal);
  color: var(--clh-cream);
  border-color: var(--clh-charcoal);
}

/* ---------- MOBILE ---------- */

@media screen and (max-width: 749px) {
  .clh-wrap {
    padding: 32px 0 35px;
  }

  .clh-wrap::after {
    height: 55px;
  }
}
  .clh-title {
    font-size: 2.6rem;
  }

  .clh-desc {
    font-size: 1.35rem;
  }

  .clh-search {
    height: 50px;
  }

  .clh-search button {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
  }

  .clh-styles {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    margin: 0 -18px;
    padding: 0 18px;
  }

  .clh-styles::-webkit-scrollbar {
    display: none;
  }

  .clh-style-pill {
    flex-shrink: 0;
  }
}
