/* Shop filter tabs — load on shop page only */

.shop-ui-wrap {
  margin-top: 20px;
}

.shop-ui-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.shop-ui-tab {
  font-family: Orbitron, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(141, 75, 255, 0.35);
  background: rgba(141, 75, 255, 0.1);
  color: var(--text-main, #f6f8ff);
  cursor: pointer;
  transition: all 0.25s ease;
}

.shop-ui-tab:hover {
  border-color: rgba(0, 245, 255, 0.5);
  box-shadow: 0 0 14px rgba(0, 245, 255, 0.15);
}

.shop-ui-tab-active {
  border-color: rgba(0, 245, 255, 0.65);
  background: linear-gradient(130deg, rgba(0, 245, 255, 0.18), rgba(141, 75, 255, 0.28));
  box-shadow: 0 0 16px rgba(0, 245, 255, 0.2);
}

.shop-ui-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
}

@media (max-width: 980px) {
  .shop-ui-grid {
    grid-template-columns: 1fr;
  }
}

.shop-ui-card {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.shop-ui-card[hidden] {
  display: none !important;
}

.shop-ui-badge {
  display: inline-block;
  margin-top: 8px;
  font-family: Orbitron, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan, #00f5ff);
  opacity: 0.85;
}
