/* [project]/src/design-system/Container/Container.module.css [app-client] (css) */
.Container-module__V7bQUq__container {
  width: 100%;
  padding-inline: var(--rb-gutter);
  margin-inline: auto;
}

.Container-module__V7bQUq__default {
  max-width: var(--rb-container);
}

.Container-module__V7bQUq__narrow {
  max-width: var(--rb-container-narrow);
}

.Container-module__V7bQUq__full {
  max-width: none;
}

.Container-module__V7bQUq__bleed {
  padding-inline: 0;
}

/* [project]/src/design-system/Badge/Badge.module.css [app-client] (css) */
.Badge-module__tFvXSW__badge {
  align-items: center;
  gap: var(--rb-space-1);
  border-radius: var(--rb-radius-xs);
  font-family: var(--rb-font-display);
  font-size: var(--rb-text-xs);
  font-weight: var(--rb-fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--rb-tracking-wide);
  padding: 4px 10px;
  line-height: 1;
  display: inline-flex;
}

.Badge-module__tFvXSW__t-sale {
  background: var(--rb-ruby);
  color: var(--rb-white);
}

.Badge-module__tFvXSW__t-new {
  background: var(--rb-white);
  color: var(--rb-ink-on-light);
}

.Badge-module__tFvXSW__t-gold {
  background: var(--rb-gold);
  color: var(--rb-ink-on-light);
}

.Badge-module__tFvXSW__t-neutral {
  background: var(--rb-surface-3);
  color: var(--rb-ink-muted);
}

/* [project]/src/design-system/Skeleton/Skeleton.module.css [app-client] (css) */
.Skeleton-module__hVSmsq__skeleton {
  background: var(--rb-surface-3);
  position: relative;
  overflow: hidden;
}

.Skeleton-module__hVSmsq__skeleton:after {
  content: "";
  animation: Skeleton-module__hVSmsq__shimmer 1.4s var(--rb-ease) infinite;
  background: linear-gradient(90deg, #fff0 0%, #ffffff0f 50%, #fff0 100%);
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
}

@keyframes Skeleton-module__hVSmsq__shimmer {
  100% {
    transform: translateX(100%);
  }
}

/* [project]/src/design-system/Avatar/Avatar.module.css [app-client] (css) */
.Avatar-module__ZYOtkq__avatar {
  border-radius: var(--rb-radius-pill);
  transition: background-color .25s var(--rb-ease);
  flex: none;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  overflow: hidden;
}

.Avatar-module__ZYOtkq__t-dark {
  color: var(--rb-ink);
  background: #ffffff1a;
}

.Avatar-module__ZYOtkq__t-dark:hover {
  background: #ffffff40;
}

.Avatar-module__ZYOtkq__t-light {
  color: var(--rb-ink-on-light);
  background: #0000000d;
}

.Avatar-module__ZYOtkq__t-light:hover {
  background: #0000001a;
}

.Avatar-module__ZYOtkq__avatar svg {
  fill-opacity: .25;
  transition: fill-opacity .25s var(--rb-ease);
}

.Avatar-module__ZYOtkq__avatar:hover svg {
  fill-opacity: .5;
}

.Avatar-module__ZYOtkq__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: scale .15s var(--rb-ease);
}

.Avatar-module__ZYOtkq__avatar:hover .Avatar-module__ZYOtkq__img {
  scale: 1.1;
}

/* [project]/src/components/catalog/catalog.css [app-client] (css) */
.rb-catalog-screen {
  background: var(--rb-surface-invert);
  color: var(--rb-ink-on-light);
  min-height: 100vh;
  padding: 150px var(--rb-space-6) var(--rb-space-20);
  justify-content: center;
  display: flex;
}

.rb-catalog-container {
  align-items: flex-start;
  gap: var(--rb-space-12);
  flex: 1;
  max-width: 1700px;
  display: flex;
}

.rb-filter-panel {
  gap: var(--rb-space-8);
  scrollbar-width: thin;
  flex-direction: column;
  flex-shrink: 0;
  width: 280px;
  max-height: calc(100vh - 160px);
  display: flex;
  position: sticky;
  top: 120px;
  overflow-y: auto;
}

.rb-filter-head, .rb-filter-apply, .rb-filter-scrim {
  display: none;
}

.rb-filter-group {
  gap: var(--rb-space-3);
  flex-direction: column;
  display: flex;
}

.rb-filter-group h4 {
  font-size: var(--rb-text-sm);
  font-weight: var(--rb-fw-bold);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.rb-filter-group ul {
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.rb-filter-check {
  align-items: center;
  gap: var(--rb-space-3);
  cursor: pointer;
  font-size: var(--rb-text-sm);
  font-weight: var(--rb-fw-light);
  opacity: .75;
  padding: 6px 0;
  transition: opacity .15s;
  display: flex;
}

.rb-filter-check:hover {
  opacity: 1;
}

.rb-filter-check.active {
  opacity: 1;
  font-weight: var(--rb-fw-regular);
}

.rb-filter-check input {
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  position: absolute;
}

.rb-filter-box {
  border: 1px solid var(--rb-line-on-light);
  border-radius: var(--rb-radius-xs);
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  transition: background .15s, border-color .15s;
  position: relative;
}

.rb-filter-box--radio {
  border-radius: var(--rb-radius-pill);
}

.rb-filter-check.active .rb-filter-box {
  background: var(--rb-ink-on-light);
  border-color: var(--rb-ink-on-light);
}

.rb-filter-check.active .rb-filter-box:after {
  content: "";
  border: solid var(--rb-surface-invert);
  border-width: 0 1.5px 1.5px 0;
  width: 5px;
  height: 8px;
  margin: auto;
  position: absolute;
  inset: 0;
  transform: translateY(-1px)rotate(45deg);
}

.rb-filter-check.active .rb-filter-box--radio:after {
  border-radius: var(--rb-radius-pill);
  background: var(--rb-surface-invert);
  border: 0;
  width: 5px;
  height: 5px;
  transform: none;
}

.rb-filter-check input:focus-visible + .rb-filter-box {
  outline: 2px solid var(--rb-ruby);
  outline-offset: 2px;
}

.rb-filter-label {
  align-items: center;
  gap: var(--rb-space-2);
  flex: 1;
  min-width: 0;
  display: flex;
}

.rb-filter-count {
  opacity: .45;
  font-variant-numeric: tabular-nums;
  font-size: var(--rb-text-xs);
}

.rb-filter-stars {
  color: var(--rb-ruby);
  letter-spacing: 1px;
}

.rb-filter-stars span {
  opacity: .25;
}

.rb-filter-more {
  cursor: pointer;
  color: inherit;
  font-family: var(--rb-font-body);
  font-size: var(--rb-text-xs);
  text-underline-offset: 3px;
  opacity: .6;
  background: none;
  border: 0;
  align-self: flex-start;
  padding: 2px 0;
  text-decoration: underline;
}

.rb-filter-more:hover {
  opacity: 1;
}

.rb-filter-price {
  align-items: center;
  gap: var(--rb-space-2);
  display: flex;
}

.rb-filter-price input {
  border: 1px solid var(--rb-line-on-light);
  border-radius: var(--rb-radius-sm);
  min-width: 0;
  color: inherit;
  font-family: var(--rb-font-body);
  font-size: var(--rb-text-sm);
  background: none;
  flex: 1;
  padding: 9px 12px;
}

.rb-filter-price input:focus-visible {
  border-color: var(--rb-ink-on-light);
  outline: none;
}

.rb-filter-price span {
  opacity: .4;
}

.rb-filter-active {
  gap: var(--rb-space-3);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.rb-filter-chips {
  gap: var(--rb-space-2);
  flex-wrap: wrap;
  display: flex;
}

.rb-filter-chip {
  align-items: center;
  gap: var(--rb-space-2);
  border: 1px solid var(--rb-line-on-light);
  border-radius: var(--rb-radius-pill);
  color: inherit;
  font-family: var(--rb-font-body);
  font-size: var(--rb-text-xs);
  cursor: pointer;
  background: none;
  padding: 5px 12px;
  transition: background .15s, color .15s;
  display: inline-flex;
}

.rb-filter-chip span {
  opacity: .5;
}

.rb-filter-chip:hover {
  background: var(--rb-ink-on-light);
  color: var(--rb-surface-invert);
}

.rb-filter-chip:hover span {
  opacity: .8;
}

.rb-filter-clear {
  cursor: pointer;
  color: var(--rb-ruby);
  font-family: var(--rb-font-body);
  font-size: var(--rb-text-xs);
  text-underline-offset: 3px;
  background: none;
  border: 0;
  padding: 0;
  text-decoration: underline;
}

.rb-filter-empty {
  font-size: var(--rb-text-sm);
  opacity: .5;
}

.rb-catalog-filters-toggle {
  align-items: center;
  gap: var(--rb-space-2);
  border: 1px solid var(--rb-line-on-light);
  border-radius: var(--rb-radius-pill);
  color: inherit;
  font-family: var(--rb-font-body);
  font-size: var(--rb-text-sm);
  cursor: pointer;
  background: none;
  padding: 8px 18px;
  display: none;
}

.rb-catalog-filters-toggle span {
  border-radius: var(--rb-radius-pill);
  background: var(--rb-ruby);
  min-width: 18px;
  height: 18px;
  color: var(--rb-white);
  font-variant-numeric: tabular-nums;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
  font-size: 11px;
  display: inline-flex;
}

.rb-catalog-results {
  gap: var(--rb-space-6);
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}

.rb-catalog-head {
  justify-content: space-between;
  align-items: center;
  gap: var(--rb-space-4);
  flex-wrap: wrap;
  display: flex;
}

.rb-catalog-count {
  font-size: var(--rb-text-sm);
  opacity: .6;
}

.rb-catalog-sort {
  align-items: center;
  gap: var(--rb-space-2);
  font-size: var(--rb-text-sm);
  display: flex;
}

.rb-catalog-sort span {
  opacity: .6;
}

.rb-catalog-sort select {
  font-family: var(--rb-font-body);
  font-size: var(--rb-text-sm);
  border: 1px solid var(--rb-line-on-light);
  border-radius: var(--rb-radius-pill);
  color: inherit;
  cursor: pointer;
  background: none;
  padding: 6px 10px;
}

.rb-catalog-grid {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 25px 2px;
  display: grid;
}

.rb-catalog-more {
  margin-top: var(--rb-space-8);
  border-radius: var(--rb-radius-pill);
  color: inherit;
  font-family: var(--rb-font-body);
  font-size: var(--rb-text-sm);
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: 1px solid;
  align-self: center;
  padding: 13px 40px;
  transition: background .2s, color .2s;
}

.rb-catalog-more:hover:not(:disabled) {
  background: var(--rb-ink-on-light);
  color: var(--rb-surface-invert);
}

.rb-catalog-more:disabled {
  opacity: .4;
  cursor: default;
}

.rb-catalog-empty {
  padding: var(--rb-space-20) 0;
  text-align: center;
  align-items: center;
  gap: var(--rb-space-3);
  flex-direction: column;
  display: flex;
}

.rb-catalog-empty h4 {
  font-size: var(--rb-text-md);
  font-weight: var(--rb-fw-medium);
}

.rb-catalog-empty p {
  font-size: var(--rb-text-sm);
  opacity: .6;
  max-width: 46ch;
}

.rb-catalog-empty button {
  margin-top: var(--rb-space-3);
  border-radius: var(--rb-radius-pill);
  color: inherit;
  font-family: var(--rb-font-body);
  font-size: var(--rb-text-sm);
  cursor: pointer;
  background: none;
  border: 1px solid;
  padding: 10px 28px;
}

.rb-tile {
  color: inherit;
  flex-direction: column;
  text-decoration: none;
  display: flex;
}

.rb-tile-image {
  aspect-ratio: 300 / 425;
  background: #0000000d;
  position: relative;
  overflow: hidden;
}

.rb-tile-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s var(--rb-ease, ease);
  display: block;
}

.rb-tile:hover .rb-tile-image img {
  transform: scale(1.04);
}

.rb-tile-image-empty {
  width: 100%;
  height: 100%;
  display: block;
}

.rb-tile-badge {
  background: var(--rb-sale);
  color: var(--rb-white);
  font-size: var(--rb-text-xs);
  font-weight: var(--rb-fw-medium);
  letter-spacing: .02em;
  border-radius: var(--rb-radius-xs);
  padding: 3px 8px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.rb-tile-body {
  flex-direction: column;
  gap: 13px;
  padding: 15px;
  display: flex;
}

.rb-tile-title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 13px;
  line-height: 130%;
  display: -webkit-box;
  overflow: hidden;
}

.rb-tile-brand {
  letter-spacing: .02em;
  opacity: .5;
  font-size: 12px;
  font-weight: 350;
  line-height: 95%;
}

.rb-tile-price {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.rb-tile-price h5 {
  letter-spacing: .02em;
  align-items: baseline;
  gap: var(--rb-space-2);
  font-size: 14px;
  font-weight: 350;
  display: flex;
}

.rb-tile-compare {
  opacity: .4;
  font-size: 12px;
}

.rb-tile-rating {
  letter-spacing: .02em;
  color: var(--rb-ruby);
  font-size: 12px;
}

.rb-tile-rating span {
  opacity: .55;
}

.rb-tile--loading .rb-tile-image {
  background: #0000000f;
}

.rb-tile-skel {
  border-radius: var(--rb-radius-xs);
  background: #00000014;
  height: 11px;
  display: block;
}

.rb-tile-skel--title {
  width: 85%;
}

.rb-tile-skel--price {
  width: 40%;
}

@media (prefers-reduced-motion: no-preference) {
  .rb-tile--loading .rb-tile-image, .rb-tile-skel {
    animation: 1.4s ease-in-out infinite rb-tile-pulse;
  }
}

@keyframes rb-tile-pulse {
  50% {
    opacity: .45;
  }
}

@media (max-width: 1000px) {
  .rb-catalog-screen {
    padding-top: 110px;
  }

  .rb-catalog-container {
    gap: var(--rb-space-6);
  }

  .rb-catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .rb-catalog-filters-toggle {
    display: inline-flex;
  }

  .rb-filter-panel {
    z-index: 60;
    width: min(340px, 88vw);
    height: 100%;
    max-height: none;
    padding: var(--rb-space-6);
    background: var(--rb-surface-invert);
    color: var(--rb-ink-on-light);
    transition: transform .28s var(--rb-ease, ease);
    position: fixed;
    inset: 0 auto 0 0;
    overflow-y: auto;
    transform: translateX(-100%);
    box-shadow: 0 0 60px #00000040;
  }

  .rb-filter-panel.is-open {
    transform: translateX(0);
  }

  .rb-filter-scrim {
    z-index: 59;
    background: #00000073;
    display: block;
    position: fixed;
    inset: 0;
  }

  .rb-filter-head {
    justify-content: space-between;
    align-items: center;
    gap: var(--rb-space-4);
    display: flex;
  }

  .rb-filter-head h3 {
    font-size: var(--rb-text-md);
    font-weight: var(--rb-fw-bold);
    text-transform: uppercase;
    letter-spacing: .04em;
  }

  .rb-filter-close {
    color: inherit;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 4px;
    font-size: 18px;
    line-height: 1;
  }

  .rb-filter-apply {
    padding-top: var(--rb-space-4);
    background: linear-gradient(to top, var(--rb-surface-invert) 70%, transparent);
    margin-top: auto;
    display: block;
    position: sticky;
    bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rb-filter-panel {
    transition: none;
  }
}

.rb-catalog-title {
  gap: var(--rb-space-3);
  flex-direction: column;
  display: flex;
}

.rb-catalog-title h1 {
  font-family: var(--rb-font-display);
  font-size: var(--rb-text-xl);
  font-weight: var(--rb-fw-bold);
  text-transform: uppercase;
  font-stretch: expanded;
  line-height: 120%;
}

.rb-bread {
  letter-spacing: .02em;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 350;
  display: flex;
}

.rb-bread span {
  opacity: .5;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.rb-bread .rb-bread-current {
  opacity: 1;
}

.rb-bread a {
  color: inherit;
  text-decoration: none;
}

.rb-bread a:hover {
  text-underline-offset: 3px;
  text-decoration: underline;
}

.rb-bread svg {
  opacity: .5;
}

/*# sourceMappingURL=src_14iag75._.css.map*/