/* =========================================================
   ThetaSound Catalog UX Pro v7
========================================================= */

.theta-catalog-ux-pro {
  max-width: 1180px;
  margin: 0 auto 34px;
  padding: 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(155,232,255,.08), transparent 36%),
    rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}

.theta-catalog-mainbar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.theta-catalog-count {
  color: #9be8ff !important;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.theta-catalog-search-inline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-radius: 999px;
  background: rgba(3,3,5,.72);
  border: 1px solid rgba(155,232,255,.22);
  overflow: hidden;
}

.theta-catalog-search-pro {
  width: 100%;
  min-height: 48px;
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  padding: 0 20px !important;
  outline: none !important;
  box-shadow: none !important;
}

.theta-catalog-search-pro::placeholder {
  color: rgba(255,255,255,.42);
}

.theta-catalog-reset {
  height: 36px;
  margin-right: 6px;
  border: 1px solid rgba(155,232,255,.24);
  background: rgba(255,255,255,.055);
  color: #fff;
  border-radius: 999px;
  padding: 0 14px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: .25s ease;
}

.theta-catalog-reset:hover {
  color: #9be8ff;
  border-color: rgba(155,232,255,.72);
  box-shadow: 0 0 22px rgba(155,232,255,.15);
}

.theta-catalog-filter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.theta-catalog-filter-group {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  gap: 14px;
}

.theta-catalog-filter-label {
  color: rgba(255,255,255,.58) !important;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding-top: 9px;
}

.theta-catalog-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.theta-catalog-filter-pill {
  border: 1px solid rgba(155,232,255,.18);
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.78);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: .22s ease;
}

.theta-catalog-filter-pill:hover,
.theta-catalog-filter-pill.is-active {
  color: #9be8ff;
  border-color: rgba(155,232,255,.72);
  background: rgba(155,232,255,.10);
  box-shadow: 0 0 22px rgba(155,232,255,.13);
}

.theta-catalog-no-results {
  display: none;
  max-width: 1180px;
  margin: 20px auto 0;
  padding: 30px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
}

.theta-catalog-no-results strong {
  display: block;
  color: #fff !important;
  font-size: 22px;
  margin-bottom: 8px;
}

.theta-catalog-no-results span {
  color: #aeb0c2 !important;
}

.theta-no-results .theta-catalog-no-results {
  display: block;
}

.theta-catalog-mode-tracks .theta-track-searchbar {
  display: none !important;
}

.theta-track-row {
  position: relative;
}

.theta-track-tag {
  cursor: pointer;
}

.theta-track-tag:hover {
  color: #fff !important;
  border-color: rgba(155,232,255,.72) !important;
  box-shadow: 0 0 18px rgba(155,232,255,.16);
}

.theta-track-row:not(.is-hidden) {
  animation: thetaCatalogRowIn .18s ease both;
}

@keyframes thetaCatalogRowIn {
  from {
    opacity: .35;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width: 900px) {
  .theta-catalog-mainbar {
    grid-template-columns: 1fr;
  }

  .theta-catalog-filter-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .theta-catalog-filter-label {
    padding-top: 0;
  }

  .theta-catalog-search-inline {
    grid-template-columns: 1fr;
    border-radius: 18px;
    padding-bottom: 8px;
  }

  .theta-catalog-reset {
    margin: 0 8px;
  }
}


/* v6 collapsible filters */
.theta-catalog-filter-toggle-row {
  margin-top: 12px;
}

.theta-catalog-filter-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(155,232,255,.20);
  background: rgba(255,255,255,.035);
  color: #fff;
  padding: 0 15px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.theta-catalog-filter-toggle:hover,
.theta-catalog-filter-toggle[aria-expanded="true"] {
  color: #9be8ff;
  border-color: rgba(155,232,255,.62);
  box-shadow: 0 0 24px rgba(155,232,255,.10);
}

.theta-catalog-active-filters {
  color: rgba(255,255,255,.52);
  font-size: 10px;
}

.theta-catalog-filter-grid[hidden] {
  display: none !important;
}

.theta-catalog-filter-grid {
  margin-top: 16px;
}


/* =========================================================
   v7 Netflix Search
========================================================= */

.theta-catalog-search-inline {
  overflow: visible !important;
}

.theta-catalog-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 40;
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(155,232,255,.12), transparent 34%),
    rgba(8,8,14,.96);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 26px 80px rgba(0,0,0,.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.theta-catalog-suggestions[hidden] {
  display: none !important;
}

.theta-catalog-suggestion {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: .2s ease;
}

.theta-catalog-suggestion:hover {
  background: rgba(155,232,255,.08);
}

.theta-catalog-suggestion span {
  color: #9be8ff !important;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.theta-catalog-suggestion strong {
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
}

.theta-track-row[data-search-score]::after {
  content: attr(data-search-score);
  display: none;
}
