/* [project]/components/BackToTop.module.css [app-client] (css) */
.BackToTop-module__5cXveq__backToTop {
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  background: #54565a;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: opacity .25s, transform .25s, background .15s;
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 24px;
  transform: translateY(8px);
  box-shadow: 0 2px 12px #0003;
}

.BackToTop-module__5cXveq__visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.BackToTop-module__5cXveq__backToTop:hover {
  background: #e4002b;
}

.BackToTop-module__5cXveq__backToTop:focus-visible {
  outline-offset: 3px;
  outline: 2px solid #e4002b;
}

@media (max-width: 767.98px) {
  .BackToTop-module__5cXveq__backToTop {
    width: 42px;
    height: 42px;
    bottom: 16px;
    right: 16px;
  }
}

/* [project]/app/(storefront)/brands/brands.module.css [app-client] (css) */
.brands-module__P5Pvlq__searchBand {
  background: var(--gs-light-gray);
  width: calc(100% + 2rem);
  margin: 0 -1rem 24px;
  padding: 24px 0;
}

.brands-module__P5Pvlq__searchBandInner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem;
}

.brands-module__P5Pvlq__searchInputWrap {
  align-items: center;
  display: flex;
  position: relative;
}

.brands-module__P5Pvlq__searchInput {
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  flex: 1;
  height: 52px;
  padding: 12px 80px 12px 20px;
  font-size: 18px;
  transition: border-color .15s;
}

.brands-module__P5Pvlq__searchInput:focus {
  border-color: var(--gs-red);
}

.brands-module__P5Pvlq__searchIcons {
  align-items: center;
  gap: 6px;
  display: flex;
  position: absolute;
  right: 12px;
}

.brands-module__P5Pvlq__searchIcon {
  pointer-events: none;
  color: var(--gs-charcoal);
  transition: color .15s;
}

.brands-module__P5Pvlq__searchIcons:hover .brands-module__P5Pvlq__searchIcon {
  color: var(--gs-red);
}

.brands-module__P5Pvlq__clearBtn {
  color: var(--gs-charcoal);
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 4px;
  line-height: 1;
  transition: color .15s;
  display: flex;
}

.brands-module__P5Pvlq__clearBtn:hover {
  color: var(--gs-red);
}

.brands-module__P5Pvlq__browseLabel {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gs-charcoal);
  margin-bottom: 8px;
  font-size: .82rem;
  font-weight: 600;
}

.brands-module__P5Pvlq__letterBar {
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin-bottom: 36px;
  display: flex;
}

.brands-module__P5Pvlq__letterLink {
  color: var(--gs-charcoal);
  padding: 4px 2px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color .12s;
  display: inline-block;
}

.brands-module__P5Pvlq__letterLink:hover {
  color: var(--gs-red);
  text-decoration: underline;
}

.brands-module__P5Pvlq__letterLinkActive {
  color: var(--gs-red);
  font-weight: 700;
  text-decoration: underline;
}

.brands-module__P5Pvlq__brandItem {
  color: var(--gs-charcoal);
  border-radius: 4px;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  text-decoration: none;
  transition: color .15s;
  display: flex;
}

.brands-module__P5Pvlq__brandItem:hover {
  color: var(--gs-red);
}

.brands-module__P5Pvlq__brandItemName {
  font-size: .9rem;
  font-weight: 600;
}

.brands-module__P5Pvlq__brandGroupLetter {
  color: var(--gs-charcoal);
  letter-spacing: .04em;
  border-bottom: 2px solid #ede9e6;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  scroll-margin-top: 200px;
  font-size: 1.1rem;
  font-weight: 800;
  transition: background-color .4s, padding-left .3s;
}

.brands-module__P5Pvlq__letterHighlight {
  border-bottom-color: var(--gs-charcoal);
  background-color: #f0eeec;
  border-bottom-width: 3px;
}

@media (max-width: 768px) {
  .brands-module__P5Pvlq__brandGroupLetter {
    scroll-margin-top: 130px;
  }
}

.brands-module__P5Pvlq__emptyState {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 60px 20px;
}

.brands-module__P5Pvlq__emptyStateIcon {
  color: var(--gs-charcoal);
  margin-bottom: 16px;
}

.brands-module__P5Pvlq__emptyStateHeading {
  color: var(--gs-charcoal);
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 700;
}

.brands-module__P5Pvlq__emptyStateText {
  color: #6b6b6b;
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
}

.brands-module__P5Pvlq__emptyStateRetry {
  background: var(--gs-red);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  margin-top: 16px;
  padding: 10px 24px;
  font-size: .85rem;
  font-weight: 600;
  transition: opacity .15s;
}

.brands-module__P5Pvlq__emptyStateRetry:hover {
  opacity: .9;
}

.brands-module__P5Pvlq__pageWrap {
  padding-top: 48px;
  padding-bottom: 48px;
}

.brands-module__P5Pvlq__noResults {
  color: var(--gs-charcoal);
  margin-top: 16px;
}

/*# sourceMappingURL=_134k5-h._.css.map*/