/* [project]/components/ShopFilters.module.css [app-client] (css) */
.ShopFilters-module__h_x41W__filtersShell {
  width: 100%;
}

.ShopFilters-module__h_x41W__topRow {
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: .5rem;
  display: flex;
}

.ShopFilters-module__h_x41W__titleWrap {
  flex-shrink: 0;
  padding-top: 1.5rem;
}

.ShopFilters-module__h_x41W__searchWrapper {
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  position: relative;
}

.ShopFilters-module__h_x41W__searchRow {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.ShopFilters-module__h_x41W__inputWrapper {
  flex: 1;
  align-items: center;
  display: flex;
  position: relative;
}

.ShopFilters-module__h_x41W__searchIcon {
  pointer-events: none;
  color: #a3a3a3;
  position: absolute;
  right: 0;
}

.ShopFilters-module__h_x41W__searchInput {
  width: 100%;
  font-size: 1rem;
  font-family: var(--font-inter), sans-serif;
  letter-spacing: .02em;
  background: none;
  border: none;
  border-bottom: 1px solid #a3a3a3;
  border-radius: 0;
  outline: none;
  padding: .5rem 1.5rem .5rem 0;
}

.ShopFilters-module__h_x41W__inlineClear {
  cursor: pointer;
  color: #a3a3a3;
  font-size: .75rem;
  font-family: var(--font-inter), sans-serif;
  background: none;
  border: none;
  padding: .25rem;
  position: absolute;
  right: 20px;
}

.ShopFilters-module__h_x41W__searchBtn {
  display: none;
}

.ShopFilters-module__h_x41W__dropdown {
  z-index: 100;
  background: #fff;
  border: 1px solid #d6d3cb;
  border-top: none;
  max-height: 400px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow-y: auto;
  box-shadow: 0 8px 24px #00000014;
}

.ShopFilters-module__h_x41W__dropdownLoading {
  text-align: center;
  color: #a3a3a3;
  letter-spacing: .08em;
  padding: 1.5rem;
  font-size: .75rem;
}

.ShopFilters-module__h_x41W__dropdownItem {
  cursor: pointer;
  width: 100%;
  font-family: var(--font-inter), sans-serif;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid #f0ede8;
  align-items: center;
  gap: .75rem;
  padding: 0;
  transition: background .15s;
  display: flex;
}

.ShopFilters-module__h_x41W__dropdownItem:active, .ShopFilters-module__h_x41W__dropdownViewAll:active {
  background: #f5f5f5;
}

.ShopFilters-module__h_x41W__dropdownThumb {
  aspect-ratio: 1;
  background: #f5f5f5;
  flex-shrink: 0;
  width: clamp(2.25rem, 12vw, 6rem);
  display: block;
  position: relative;
  overflow: hidden;
}

.ShopFilters-module__h_x41W__dropdownThumbImage {
  object-fit: cover;
}

.ShopFilters-module__h_x41W__dropdownInfo {
  flex-direction: column;
  flex: 1;
  gap: .25rem;
  min-width: 0;
  padding: .75rem 1rem .75rem 0;
  display: flex;
}

.ShopFilters-module__h_x41W__dropdownName {
  color: #2c2c2c;
  letter-spacing: -.01em;
  font-size: .8125rem;
  font-weight: 600;
}

.ShopFilters-module__h_x41W__dropdownPrice {
  color: #6e6e6e;
  font-feature-settings: "tnum";
  font-size: .75rem;
  font-weight: 700;
}

.ShopFilters-module__h_x41W__dropdownViewAll {
  cursor: pointer;
  width: 100%;
  font-family: var(--font-inter), sans-serif;
  letter-spacing: .06em;
  color: #6e6e6e;
  text-align: center;
  background: none;
  border: none;
  padding: .875rem 1rem;
  font-size: .6875rem;
  font-weight: 600;
  transition: background .15s;
}

.ShopFilters-module__h_x41W__dropdownEmpty {
  text-align: center;
  color: #a3a3a3;
  padding: 1.5rem;
  font-size: .8125rem;
}

.ShopFilters-module__h_x41W__filterBar {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
  display: flex;
}

.ShopFilters-module__h_x41W__filterLeft, .ShopFilters-module__h_x41W__filterRight {
  gap: 1.25rem;
  display: flex;
}

.ShopFilters-module__h_x41W__filterBtn {
  letter-spacing: .1em;
  cursor: pointer;
  font-size: .6875rem;
  font-weight: 400;
  font-family: var(--font-inter), sans-serif;
  color: #a3a3a3;
  background: none;
  border: none;
  padding: .25rem 0;
  transition: color .2s;
}

.ShopFilters-module__h_x41W__filterBtnActive {
  color: #2c2c2c;
  font-weight: 700;
}

@media (max-width: 768px) {
  .ShopFilters-module__h_x41W__topRow {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .ShopFilters-module__h_x41W__titleWrap {
    padding-top: 0;
  }

  .ShopFilters-module__h_x41W__searchWrapper {
    max-width: none;
    margin-left: 0;
  }

  .ShopFilters-module__h_x41W__filterBar {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    margin-bottom: 1.25rem;
  }

  .ShopFilters-module__h_x41W__filterLeft, .ShopFilters-module__h_x41W__filterRight {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: .75rem;
    width: 100%;
    padding-bottom: .25rem;
    overflow-x: auto;
  }

  .ShopFilters-module__h_x41W__filterLeft::-webkit-scrollbar {
    display: none;
  }

  .ShopFilters-module__h_x41W__filterRight::-webkit-scrollbar {
    display: none;
  }

  .ShopFilters-module__h_x41W__filterBtn {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: .625rem;
  }

  .ShopFilters-module__h_x41W__filterRight {
    border-top: 1px solid var(--border-light);
    padding-top: .5rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .ShopFilters-module__h_x41W__dropdownItem:hover, .ShopFilters-module__h_x41W__dropdownViewAll:hover {
    background: #f5f5f5;
  }
}

/* [project]/components/Pagination.module.css [app-client] (css) */
.Pagination-module___XjRuG__pagination {
  border-top: 1px solid var(--border-strong);
  justify-content: center;
  align-items: center;
  gap: .25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
}

.Pagination-module___XjRuG__arrow {
  cursor: pointer;
  width: 32px;
  height: 32px;
  font-size: .75rem;
  font-family: var(--font-sans);
  color: var(--text);
  transition: opacity var(--transition);
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.Pagination-module___XjRuG__arrow:active:not(:disabled) {
  opacity: .5;
}

.Pagination-module___XjRuG__arrow:disabled {
  opacity: .2;
  cursor: default;
  pointer-events: none;
}

.Pagination-module___XjRuG__page {
  min-width: 32px;
  height: 32px;
  font-size: .6875rem;
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: .04em;
  cursor: pointer;
  color: var(--text-sub);
  transition: all var(--transition);
  background: none;
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  padding: 0 .25rem;
  display: inline-flex;
}

.Pagination-module___XjRuG__page:active {
  color: var(--text);
  border-color: var(--border-soft);
}

.Pagination-module___XjRuG__active {
  color: var(--accent-inv);
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 700;
}

.Pagination-module___XjRuG__active:active {
  color: var(--accent-inv);
  border-color: var(--accent);
}

.Pagination-module___XjRuG__ellipsis {
  min-width: 32px;
  height: 32px;
  font-size: .6875rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: .1em;
  -webkit-user-select: none;
  user-select: none;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

@media (hover: hover) and (pointer: fine) {
  .Pagination-module___XjRuG__arrow:hover:not(:disabled) {
    opacity: .5;
  }

  .Pagination-module___XjRuG__page:hover {
    color: var(--text);
    border-color: var(--border-soft);
  }

  .Pagination-module___XjRuG__active:hover {
    color: var(--accent-inv);
    border-color: var(--accent);
  }
}

/* [project]/components/ResponsiveProductImage.module.css [app-client] (css) */
.ResponsiveProductImage-module__VnXzyG__image {
  object-fit: cover;
  width: 100%;
}

.ResponsiveProductImage-module__VnXzyG__fill {
  height: 100%;
}

.ResponsiveProductImage-module__VnXzyG__autoHeight {
  height: auto;
}

/* [project]/app/shop/page.module.css [app-client] (css) */
.page-module__-msXra__pageShell {
  min-height: calc(100dvh - var(--header-h)  - var(--footer-h));
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.page-module__-msXra__titleRow {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: .5rem;
  display: flex;
}

.page-module__-msXra__pageTitle {
  letter-spacing: 0 em;
  text-transform: uppercase;
  margin: 0;
  font-size: clamp(1rem, 2dvw, .9rem);
  font-weight: 400;
  line-height: 1;
}

.page-module__-msXra__resultCount {
  letter-spacing: .15em;
  color: var(--text-muted);
  white-space: nowrap;
  font-size: .75rem;
  font-weight: 600;
}

.page-module__-msXra__divider {
  margin-bottom: 1.5rem;
}

.page-module__-msXra__empty {
  text-align: center;
  border: 1px solid var(--border-strong);
  padding: 8rem 0;
}

.page-module__-msXra__emptyTitle {
  letter-spacing: .2em;
  color: var(--text-muted);
  font-size: 1.25rem;
  font-weight: 700;
}

.page-module__-msXra__emptySub {
  color: var(--text-muted);
  margin-top: .5rem;
  font-size: .875rem;
}

.page-module__-msXra__pagination {
  border-top: 1px solid var(--border-strong);
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
}

.page-module__-msXra__pageBtn {
  letter-spacing: .12em;
  font-size: .6875rem;
  font-weight: 600;
  font-family: var(--font-inter), sans-serif;
  color: var(--text);
  text-decoration: none;
}

.page-module__-msXra__pageBtnDisabled {
  opacity: .3;
  cursor: default;
  pointer-events: none;
}

.page-module__-msXra__pageInfo {
  font-size: .75rem;
  font-weight: 500;
  font-family: var(--font-inter), monospace;
  letter-spacing: .1em;
  color: var(--text-sub);
}

@media (max-width: 768px) {
  .page-module__-msXra__titleRow {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-module__-msXra__empty {
    padding: 5rem 1rem;
  }

  .page-module__-msXra__pagination {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

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