/*!********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/ZyMall/assets/styles/catalog.scss ***!
  \********************************************************************************************************************************/
.product-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: transparent;
  border-radius: 0;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: var(--midnight);
  min-width: 0;
  width: 100%;
}
.product-item:hover {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
}
.product-item__rank {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--stone-light);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.product-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.product-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.product-item__text {
  flex: 1;
  min-width: 0;
}
.product-item__text h4 {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-item__text p {
  font-size: 13px;
  color: var(--stone);
  margin: 2px 0 0;
}
.product-item__action {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  flex-shrink: 0;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.6);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s, background 0.3s, border-color 0.3s;
}
.product-item:hover .product-item__action {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.all-catalog {
  padding-top: 20px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.catalog-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-deep);
  background: var(--teal-frost);
  border: 1px solid var(--teal-mist);
  transition: all 0.2s;
  text-decoration: none;
}
.filter-tag:hover, .filter-tag.active {
  background: var(--teal-deep);
  color: #fff;
  border-color: var(--teal-deep);
}
.filter-tag .remove {
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
}
.filter-tag .remove:hover {
  opacity: 1;
}

.catalog-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.catalog-sort label {
  font-size: 13px;
  color: var(--stone);
}
.catalog-sort select {
  padding: 6px 28px 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff url("data:image/svg+xml,%3Csvg width=%2710%27 height=%276%27 viewBox=%270 0 10 6%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1l4 4 4-4%27 stroke=%27%236B7280%27 fill=%27none%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E") no-repeat right 10px center;
  -webkit-appearance: none;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--midnight);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.catalog-sort select:focus {
  border-color: var(--teal-bright);
}

.catalog-count {
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 16px;
}

.catalog-search-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--midnight);
}
.catalog-search-info span {
  flex: 0 1 auto;
}
.catalog-search-info strong {
  font-weight: 600;
  flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}
.catalog-search-info .clear {
  font-size: 12px;
  color: var(--teal);
  text-decoration: none;
  flex: 0 1 auto;
  margin-top: 3px;
}
.catalog-search-info .clear:hover {
  text-decoration: underline;
}

.catalog-empty {
  text-align: center;
  padding: 60px 20px;
}
.catalog-empty .emoji {
  font-size: 48px;
  margin-bottom: 12px;
}
.catalog-empty h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.catalog-empty p {
  font-size: 14px;
  color: var(--stone);
}

.category-children {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 20px;
}
.category-children::-webkit-scrollbar {
  display: none;
}
.category-children a {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--stone);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.2s;
  white-space: nowrap;
}
.category-children a:hover {
  color: var(--teal);
  border-color: var(--teal-light);
}

/*# sourceMappingURL=catalog.css.map*/