/**
 * For the full copyright and license information, please view the
 * LICENSE.md file that was distributed with this source code.
 */
/* ps_searchbar.css */

/* Universe scope tabs (Women / Men / Kids) inside the search dropdown */
.ps-searchbar__universes {
  display: flex;
  gap: 1.25rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ps-searchbar__universe {
  position: relative;
  padding: 0.15rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.15s ease;
}

.ps-searchbar__universe:hover,
.ps-searchbar__universe:focus-visible {
  opacity: 1;
}

.ps-searchbar__universe.is-active {
  opacity: 1;
  font-weight: 700;
}

.ps-searchbar__universe.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: currentColor;
}
