.catalog-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(4, minmax(130px, .75fr)) auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 15px;
  padding: 18px;
  background: #181818;
  border: 1px solid var(--line);
}

.catalog-tools label {
  display: grid;
  gap: 7px;
}

.catalog-tools label > span {
  color: #858585;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.catalog-tools input,
.catalog-tools select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  color: #f7f5ef;
  background: #0c0c0c;
  border: 1px solid #343434;
  border-radius: 0;
  outline: none;
}

.catalog-tools input:focus,
.catalog-tools select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.catalog-tools select option { color: #fff; background: #111; }
.catalog-search { position: relative; }

.catalog-reset {
  height: 44px;
  padding: 0 15px;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  font-weight: 800;
}

.catalog-reset:hover { color: #090909; background: var(--gold); }

.catalog-results {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
}

.catalog-results b { color: #f7f5ef; }
.product { padding-bottom: 54px; }
.store-stock { display: block; margin-top: 6px; color: #87c79e; font-size: 11px; font-weight: 700; }
.store-stock.low { color: var(--gold); }
.store-stock.empty { color: #e86d67; }
.product.out-of-stock .product-visual img { filter: grayscale(1); opacity: .52; }
.product button:disabled { cursor: not-allowed; color: #777; border-color: #555; opacity: .6; }

.catalog-empty {
  grid-column: 1 / -1;
  min-height: 210px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px dashed #383838;
  color: var(--muted);
}

.catalog-empty strong { color: #fff; font-family: Montserrat, sans-serif; font-size: 22px; }
.catalog-empty p { margin: 7px 0 0; color: var(--muted); font-weight: 400; }
.detail-stock { margin: -14px 0 18px; color: #87c79e; font-size: 13px; font-weight: 800; }
.detail-stock.low { color: var(--gold); }
.detail-stock.empty { color: #e86d67; }

@media (max-width: 1120px) {
  .catalog-tools { grid-template-columns: repeat(3, 1fr); }
  .catalog-search { grid-column: span 2; }
}

@media (max-width: 768px) {
  .catalog-tools {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 12px;
    margin: 0 0 12px;
    border-radius: 10px;
  }
  .catalog-search { grid-column: 1 / -1; }
  .catalog-tools label > span { font-size: 8px; }
  .catalog-tools input,
  .catalog-tools select { height: 42px; font-size: 12px; }
  .catalog-reset { width: 100%; height: 42px; }
  .catalog-results { margin-bottom: 13px; font-size: 11px; }
  .product { padding-bottom: 48px; }
  .store-stock { font-size: 10px; }
}
