@import './fonts.css?v=20260826-003054';

:root {
  --catalog-bg:var(--page-shell-bg);
  --catalog-panel:var(--page-shell-panel);
  --catalog-line:var(--page-shell-accent);
  --catalog-text:var(--page-shell-text);
  --catalog-muted:rgba(245, 245, 247, .65);
  --catalog-accent:var(--page-shell-accent);
  --catalog-highlight:var(--page-shell-highlight);
  --catalog-status-new:#00e696;
  --catalog-status-available:#4da3ff;
  --catalog-status-updated:#ffd84d;
}

* { box-sizing:border-box; }

body.ProductCatalogPage {
  overflow-x:hidden;
  font-family:'Exo', sans-serif;
}

.ProductCatalogMain {
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
  padding:48px 0 72px;
}

.ProductCatalogHeader {
  margin-bottom:42px;
}

.ProductCatalogHeader h1 {
  margin:0 0 12px;
  color:var(--page-shell-accent);
  font-family:'Orbitron', sans-serif;
  font-size:clamp(2rem, 6vw, 4.2rem);
  font-weight:400;
  letter-spacing:0;
}

.ProductCatalogHeader p {
  margin:0;
  color:var(--catalog-muted);
  font-size:1.05rem;
  line-height:1.6;
}

.ProductCatalogSection {
  padding:28px 0;
  border-top:1px solid var(--catalog-line);
}

.ProductCatalogSection[hidden] {
  display:none;
}

.ProductCatalogSectionFilterPanel {
  margin:0;
  padding:18px 0 14px;
  border-top:1px solid var(--catalog-line);
}

.ProductCatalogSectionFilterPanel + .ProductCatalogSection {
  border-top:0;
}

.ProductCatalogSectionFilters {
  flex-wrap:nowrap;
  gap:6px 18px;
}

.ProductCatalogSectionHeader {
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}

.ProductCatalogSectionHeader h2 {
  margin:0;
  font-family:'Orbitron', sans-serif;
  font-size:1.35rem;
  font-weight:400;
  letter-spacing:0;
}

.ProductCatalogSectionHeader span {
  color:var(--catalog-muted);
  font-size:.78rem;
  text-transform:uppercase;
}

.ProductCatalogFilterPanel {
  margin:0 0 18px;
  padding:14px 0 16px;
  border-top:1px solid rgba(255, 255, 255, .12);
  border-bottom:1px solid rgba(255, 255, 255, .12);
}

.ProductCatalogFilterHeader {
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:20px;
  margin-bottom:12px;
}

.ProductCatalogFilterTitle {
  margin:0;
  color:var(--catalog-text);
  font-family:'Orbitron', sans-serif;
  font-size:.82rem;
}

.ProductCatalogFilterCount {
  color:var(--catalog-muted);
  font-size:.74rem;
  text-transform:uppercase;
}

.ProductCatalogLiveRegion {
  position:absolute;
  width:1px;
  height:1px;
  margin:-1px;
  padding:0;
  overflow:hidden;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
  border:0;
  white-space:nowrap;
}

.ProductCatalogFilters {
  display:flex;
  flex-wrap:wrap;
  gap:6px 18px;
}

.ProductCatalogFilters button {
  position:relative;
  flex:0 0 auto;
  padding:5px 0 8px;
  border:0;
  background:transparent;
  color:var(--catalog-muted);
  font:inherit;
  font-size:.9rem;
  cursor:pointer;
}

.ProductCatalogFilters button::after {
  content:'';
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  border-bottom:2px solid transparent;
}

.ProductCatalogFilters button:hover,
.ProductCatalogFilters button:focus-visible {
  color:var(--catalog-status-available);
}

.ProductCatalogFilters button:focus-visible {
  outline:1px solid var(--catalog-status-available);
  outline-offset:4px;
}

.ProductCatalogFilters button.active {
  color:var(--catalog-status-available);
}

.ProductCatalogFilters button.active::after {
  border-color:var(--catalog-status-available);
}

.ProductCatalogFilterOptionCount {
  margin-left:6px;
  color:var(--catalog-muted);
  font-size:.72rem;
}

.ProductCatalogFilterSelect {
  display:none;
}

.ProductCatalogAvailabilityToggle {
  display:flex;
  align-items:center;
  width:max-content;
  gap:8px;
  margin-top:12px;
  color:var(--catalog-text);
  font-size:.88rem;
  cursor:pointer;
}

.ProductCatalogAvailabilityToggle input {
  width:18px;
  height:18px;
  margin:0;
  accent-color:var(--catalog-status-available);
  cursor:pointer;
}

.ProductCatalogAvailabilityToggle input:focus-visible {
  outline:2px solid var(--catalog-status-available);
  outline-offset:3px;
}

.ProductCatalogFilterEmpty {
  margin-top:18px;
}

.ProductCatalogGroup {
  margin-top:36px;
}

.ProductCatalogFilterPanel + .ProductCatalogGroup,
.ProductCatalogSectionHeader + .ProductCatalogGroup,
.ProductCatalogGroup[hidden] + .ProductCatalogGroup:not([hidden]) {
  margin-top:18px;
}

.ProductCatalogGroup[hidden] {
  display:none;
}

.ProductCatalogGroupHeader {
  position:relative;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
  padding-bottom:12px;
}

.ProductCatalogGroupHeader::after {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:72px;
  border-bottom:2px solid var(--catalog-accent);
}

.ProductCatalogGroupHeader h3 {
  margin:0;
  color:var(--catalog-accent);
  font-family:'Orbitron', sans-serif;
  font-size:1.05rem;
  font-weight:400;
  letter-spacing:0;
}

.ProductCatalogGroupHeader span {
  color:var(--catalog-muted);
  font-size:.75rem;
  text-transform:uppercase;
}

.ProductCatalogGrid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap:12px;
}

.ProductCatalogItem {
  display:grid;
  min-height:168px;
  padding:20px;
  border:2px solid var(--catalog-line);
  border-radius:7px;
  background:var(--catalog-panel);
  color:inherit;
  text-decoration:none;
  transition:border-color .2s, transform .2s;
}

.ProductCatalogItem[hidden] {
  display:none;
}

.ProductCatalogItem:hover,
.ProductCatalogItem:focus-visible {
  border-color:var(--catalog-highlight);
  outline:none;
  transform:translateY(-2px);
}

.ProductCatalogItemHeader {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.ProductCatalogItem h3 {
  margin:0;
  font-size:1.15rem;
}

.ProductCatalogStatus {
  flex:0 0 auto;
  padding:4px 7px;
  border:1px solid rgba(255, 255, 255, .2);
  border-radius:3px;
  color:var(--catalog-muted);
  font-size:.68rem;
  text-transform:uppercase;
}

.ProductCatalogStatus.new {
  border-color:var(--catalog-status-new);
  color:var(--catalog-status-new);
}

.ProductCatalogStatus.available {
  border-color:var(--catalog-status-available);
  color:var(--catalog-status-available);
}

.ProductCatalogStatus.updated {
  border-color:var(--catalog-status-updated);
  color:var(--catalog-status-updated);
}

.ProductCatalogItem p {
  margin:14px 0 18px;
  color:var(--catalog-muted);
  line-height:1.5;
}

.ProductCatalogMeta {
  align-self:end;
  color:var(--catalog-highlight);
  font-size:.8rem;
}

.ProductCatalogEmpty {
  margin:0;
  padding:28px 20px;
  border:1px dashed var(--catalog-line);
  border-radius:7px;
  color:var(--catalog-muted);
  text-align:center;
}

@media (max-width:600px) {
  .ProductCatalogMain { width:min(100% - 24px, 1120px); padding-top:32px; }
  .ProductCatalogSectionHeader { align-items:flex-start; flex-direction:column; gap:5px; }
  .ProductCatalogFilterPanel { padding:12px 0 16px; }
  .ProductCatalogFilterHeader { margin-bottom:10px; }
  .ProductCatalogFilters { display:none; }
  .ProductCatalogSectionFilters { display:flex; }
  .ProductCatalogFilterSelect {
    display:block;
    width:100%;
    min-height:44px;
    padding:9px 12px;
    border:1px solid var(--catalog-status-available);
    border-radius:5px;
    background:var(--catalog-panel);
    color:var(--catalog-text);
    font:inherit;
  }
  .ProductCatalogFilterSelect:focus-visible {
    outline:2px solid var(--catalog-status-available);
    outline-offset:3px;
  }
  .ProductCatalogAvailabilityToggle { margin-top:14px; }
}
