.page-products .site-main {
  max-width: none;
  padding: 0;
}

.products-category__icon-img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  transition: filter 0.15s ease;
}

.products-category--active .products-category__icon-img {
  /* Uploaded icons are <img>; tint to match --color-primary (#0066ff) */
  filter: brightness(0) saturate(100%) invert(27%) sepia(98%) saturate(7426%) hue-rotate(212deg) brightness(102%) contrast(101%);
}

.products-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 3rem;
}

.products-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  color: #777;
  font-size: 0.86rem;
}

.products-breadcrumb a:hover {
  color: #111;
}

.products-breadcrumb__home svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linejoin: round;
}

.products-breadcrumb__sep {
  color: #bbb;
}

.products-breadcrumb__current {
  color: #111;
  font-weight: 600;
}

.products-categories {
  position: relative;
  margin-bottom: 2rem;
}

.products-categories__track {
  list-style: none;
  margin: 0;
  padding: 0.15rem 2.5rem;
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.products-categories__track::-webkit-scrollbar {
  display: none;
}

.products-categories__track > li {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.products-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 6.5rem;
  min-height: 6.5rem;
  padding: 0.85rem 0.5rem;
  border: 1px solid #ececec;
  border-radius: 1rem;
  background: #fff;
  color: #444;
  transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.products-category:hover {
  border-color: #d0d0d0;
  color: #111;
}

.products-category--active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(0, 102, 255, 0.08);
}

.products-category--active:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.products-category__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
}

.products-category__icon svg {
  width: 1.65rem;
  height: 1.65rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-category__label {
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.35;
}

.products-categories__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid #ececec;
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.products-categories__nav svg {
  width: 0.95rem;
  height: 0.95rem;
}

.products-categories__nav--prev {
  right: 0;
}

.products-categories__nav--next {
  left: 0;
}

.products-categories__dots {
  display: none;
}

.products-categories__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #d8d8d8;
}

.products-categories__dot--active {
  background: var(--color-primary);
}

.products-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.35rem 0.65rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #ececec;
}

.products-header__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  line-height: 1.6;
}

.products-header__desc {
  margin: 0;
  color: #888;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.6;
}

.products-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  overflow: visible;
}

.products-toolbar__filters-btn,
.products-toolbar__select,
.products-toolbar__sort {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #333;
  padding: 0.55rem 0.95rem;
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
  white-space: nowrap;
}

a.products-toolbar__select {
  text-decoration: none;
}

.products-toolbar__filters-btn svg,
.products-toolbar__sort svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-toolbar__filters-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-primary);
  display: none;
}

.products-toolbar__filters-dot.is-visible {
  display: inline-block;
}

.products-toolbar__filters-btn--active {
  border-color: rgba(0, 102, 255, 0.35);
}

.products-filter-form {
  position: relative;
  z-index: 40;
  margin-bottom: 0;
}

.products-filter-control {
  position: static;
}

.products-toolbar__select.is-active,
a.products-toolbar__select.is-active {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.products-toolbar__sort-wrap {
  position: relative;
  margin-inline-start: auto;
}

.products-toolbar__sort-menu {
  position: fixed;
  z-index: 1100;
  min-width: 10rem;
  padding: 0.35rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.products-toolbar__sort-option {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 0.55rem;
  color: #333;
  font-size: 0.84rem;
}

.products-toolbar__sort-option:hover,
.products-toolbar__sort-option.is-active {
  background: rgba(0, 102, 255, 0.08);
  color: var(--color-primary);
}

.products-filter-popover {
  position: fixed;
  z-index: 1100;
  width: min(18rem, calc(100vw - 1.5rem));
  max-height: min(24rem, calc(100vh - 6rem));
  padding: 0.85rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: auto;
}

.products-filter-popover--category {
  width: min(20rem, 85vw);
}

.products-filter-popover__title,
.products-filter-panel__heading {
  margin: 0 0 0.65rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #111;
}

.products-filter-popover__options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-height: 14rem;
  overflow-y: auto;
}

.products-filter-option {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #444;
  cursor: pointer;
}

.products-filter-option--child {
  padding-inline-start: 1rem;
}

.products-filter-option input {
  flex-shrink: 0;
}

.products-filter-popover__empty {
  margin: 0;
  color: #888;
  font-size: 0.8rem;
}

.products-filter-price-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.products-filter-price-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: #666;
}

.products-filter-price-field input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.55rem;
  padding: 0.45rem 0.55rem;
  font: inherit;
  font-size: 0.82rem;
}

.products-filter-popover__actions,
.products-filter-panel__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.75rem;
}

.products-filter-popover__apply,
.products-filter-panel__apply {
  border: 0;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  padding: 0.45rem 0.95rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.products-filter-panel {
  position: relative;
  z-index: 35;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.products-filter-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.products-filter-panel__section {
  min-width: 0;
}

.products-filter-panel__sort-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.products-active-filters--empty {
  display: none;
}

.products-filter-tag {
  text-decoration: none;
}

.products-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  color: #777;
}

.product-card__price--compare {
  text-decoration: line-through;
  color: #999;
  font-size: 0.78rem;
  font-weight: 600;
}

.product-card__price--sale {
  color: #e53935;
}

.products-toolbar__dropdowns {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.products-toolbar__sort {
  margin-inline-start: 0;
}

.products-active-filters {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.products-active-filters__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.products-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f8f8f8;
  color: #444;
  padding: 0.35rem 0.7rem;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}

.products-filter-tag svg {
  width: 0.75rem;
  height: 0.75rem;
}

.products-active-filters__clear {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: none;
  color: var(--color-primary);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.products-active-filters__clear:hover {
  color: var(--color-primary);
  opacity: 0.85;
}

.products-active-filters__clear svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linejoin: round;
}

.products-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem 0.85rem;
  border: 1px solid #ececec;
  border-radius: 1rem;
  background: #fff;
  min-width: 0;
}

.product-card__media-stage {
  position: relative;
}

.product-card__media-link {
  display: block;
  color: inherit;
}

.product-card__body-link {
  display: block;
  min-width: 0;
  color: inherit;
}

.product-card__body-link:hover .product-card__title {
  color: var(--color-primary);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  min-width: 0;
}

.product-card__wishlist {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #666;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.product-card__wishlist svg {
  width: 1rem;
  height: 1rem;
}

.product-card__wishlist.is-active {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
}

.product-card__wishlist.is-active svg path {
  fill: currentColor;
  stroke: currentColor;
}

.product-card__badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.product-card__badge--new {
  background: var(--color-primary);
}

.product-card__badge--popular {
  background: #111;
}

.product-card__badge--off {
  background: #e53935;
}

.product-card__badge--out-of-stock {
  background: #757575;
  color: #fff;
}

.product-card__tags {
  position: absolute;
  inset-inline-start: 0.45rem;
  inset-inline-end: 0.45rem;
  bottom: 0.45rem;
  z-index: 2;
  pointer-events: none;
}

.product-card__tags-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card__tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(228, 228, 231, 0.95);
  color: #52525b;
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
  pointer-events: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__tag:hover {
  background: #fff;
  color: #18181b;
}

.product-card__tag--active {
  background: rgba(0, 102, 255, 0.1);
  border-color: rgba(0, 102, 255, 0.25);
  color: var(--color-primary);
}

.product-card__tag--active:hover {
  background: rgba(0, 102, 255, 0.14);
  color: var(--color-primary-hover);
}

/* Optional: visually de-emphasize unavailable products */
.product-card--out-of-stock .product-card__media {
  opacity: 0.72;
}

.product-card--out-of-stock .product-card__cart {
  opacity: 0.45;
  pointer-events: none;
}

.product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 12rem;
  padding: 0.65rem;
  border-radius: 0.75rem;
  background: #f7f7f8;
  color: #aaa;
}

.product-card__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.product-card__media svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke-width: 1.4;
  stroke-linejoin: round;
}

.product-card__title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #111;
  line-height: 1.55;
}

.product-card__subtitle {
  margin: 0;
  color: #777;
  font-size: 0.78rem;
  line-height: 1.5;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.product-card__rating-value {
  display: inline;
  font-size: 0.78rem;
  font-weight: 600;
  color: #111;
}

.product-card__stars {
  display: inline-flex;
  gap: 0.05rem;
  align-items: center;
  color: #f5b301;
}

.product-card__star {
  width: 0.8rem;
  height: 0.8rem;
  flex-shrink: 0;
}

.product-card__star path {
  fill: currentColor;
}

.product-card__star--full {
  color: #f5b301;
}

.product-card__star--empty,
.product-card__stars--empty .product-card__star {
  color: #e0e0e0;
}

.product-card__star--half {
  position: relative;
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  color: #e0e0e0;
}

.product-card__star--half svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-card__star-half-fill {
  color: #f5b301;
  clip-path: inset(0 50% 0 0);
}

.product-card__stars svg {
  width: 0.8rem;
  height: 0.8rem;
}

.product-card__reviews {
  color: #999;
  font-size: 0.75rem;
}

.product-card__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.product-card__price {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
}

.product-card__price span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #666;
}

.product-card__cart-form {
  display: contents;
}

.product-card__cart {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  border: 0;
  border-radius: 0.55rem;
  background: rgba(0, 102, 255, 0.1);
  color: var(--color-primary);
  cursor: pointer;
}

.product-card__cart svg {
  width: 1rem;
  height: 1rem;
}

.products-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 2rem;
}

.products-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.65rem;
  border: 1px solid #ececec;
  border-radius: 0.55rem;
  background: #fff;
  color: #444;
  font-size: 0.88rem;
}

.products-pagination__btn--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.products-pagination__btn--arrow svg {
  width: 0.95rem;
  height: 0.95rem;
}

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .products-page {
    padding: 0.85rem 1rem 2rem;
  }

  .products-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.8rem;
  }

  .products-categories {
    margin-bottom: 1.5rem;
  }

  .products-categories__nav {
    width: 1.75rem;
    height: 1.75rem;
  }

  .products-categories__track {
    padding: 0.15rem 2rem;
    gap: 0.65rem;
  }

  .products-categories__track > li {
    display: flex;
  }

  .products-category {
    width: 5.5rem;
    height: 6.5rem;
    min-height: 6.5rem;
    justify-content: flex-start;
    padding: 0.65rem 0.35rem 0.5rem;
    border-radius: 0.85rem;
  }

  .products-category__icon svg {
    width: 1.4rem;
    height: 1.4rem;
  }

  .products-category__label {
    flex: 1;
    display: -webkit-box;
    width: 100%;
    min-height: 2.7em;
    max-height: 2.7em;
    overflow: hidden;
    font-size: 0.7rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .products-categories__dots {
    display: none;
  }

  .products-header {
    justify-content: center;
    margin-bottom: 1rem;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .products-header__title {
    width: 100%;
    text-align: center;
    font-size: 1.35rem;
    line-height: 1.5;
  }

  .products-header__desc {
    display: none;
  }

  .products-toolbar {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    overflow: visible;
  }

  .products-toolbar__filters-btn,
  .products-toolbar__sort {
    flex: 1;
    width: auto;
    min-width: 0;
    justify-content: center;
    border-radius: 0.85rem;
    padding: 0.75rem 0.65rem;
    font-size: 0.82rem;
  }

  .products-toolbar__dropdowns {
    display: none;
  }

  .products-toolbar__sort-wrap {
    flex: 1;
    width: auto;
    min-width: 0;
  }

  .products-toolbar__sort {
    width: 100%;
    justify-content: center;
    border-radius: 0.85rem;
    padding: 0.75rem 0.65rem;
    font-size: 0.82rem;
  }

  .products-filter-panel__grid {
    grid-template-columns: 1fr;
  }

  .products-toolbar__sort span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .products-active-filters {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
  }

  .products-active-filters__clear {
    align-self: auto;
    flex-shrink: 0;
    color: var(--color-primary);
    font-size: 0.8rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .product-card {
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.45rem 0.65rem 0.65rem;
  }

  .product-card__wishlist {
    top: 0.45rem;
    left: 0.45rem;
    width: 1.65rem;
    height: 1.65rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  }

  .product-card__wishlist svg {
    width: 0.9rem;
    height: 0.9rem;
  }

  .product-card__media {
    width: 100%;
    height: 8.5rem;
    padding: 0.5rem;
    border-radius: 0.65rem;
  }

  .product-card__media svg {
    width: 2rem;
    height: 2rem;
  }

  .product-card__body {
    gap: 0.3rem;
    padding-top: 0;
    align-items: center;
    text-align: center;
  }

  .product-card__badge {
    top: 0.45rem;
    right: 0.45rem;
    padding: 0.16rem 0.5rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #fff;
    background: var(--color-primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  }

  .product-card__badge--new,
  .product-card__badge--popular,
  .product-card__badge--off {
    color: #fff;
  }

  .product-card__badge--new {
    background: var(--color-primary);
  }

  .product-card__badge--popular {
    background: #111;
  }

  .product-card__badge--off {
    background: #e53935;
  }

  .product-card__badge--out-of-stock {
    background: #757575;
    color: #fff;
  }

  .product-card__tags {
    inset-inline-start: 0.35rem;
    inset-inline-end: 0.35rem;
    bottom: 0.35rem;
  }

  .product-card__tag {
    font-size: 0.6rem;
    padding: 0.16rem 0.45rem;
  }

  .product-card--out-of-stock .product-card__media {
    opacity: 0.72;
  }

  .product-card--out-of-stock .product-card__cart {
    opacity: 0.45;
    pointer-events: none;
  }

  .product-card__title {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .product-card__subtitle {
    display: none;
  }

  .product-card__rating {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.2rem 0.3rem;
  }

  .product-card__rating-value {
    display: inline;
    font-size: 0.72rem;
  }

  .product-card__stars svg {
    width: 0.68rem;
    height: 0.68rem;
  }

  .product-card__reviews {
    font-size: 0.68rem;
  }

  .product-card__footer {
    width: 100%;
    margin-top: auto;
    padding-top: 0.25rem;
  }

  .product-card__price {
    font-size: 0.8rem;
  }

  .product-card__price span {
    font-size: 0.62rem;
  }

  .product-card__cart {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 0.5rem;
  }

  .product-card__cart svg {
    width: 0.9rem;
    height: 0.9rem;
  }

  .products-pagination__btn--active {
    background: #f0f0f0;
    border-color: #e5e7eb;
    color: #111;
  }
}

@media (max-width: 480px) {
  .products-category {
    width: 5rem;
    height: 6rem;
    min-height: 6rem;
  }

  .products-toolbar__filters-btn,
  .products-toolbar__sort {
    font-size: 0.78rem;
    padding: 0.7rem 0.5rem;
  }

  .product-card__media {
    height: 7.5rem;
  }

  .product-card__title {
    font-size: 0.74rem;
  }
}
