/* Reborne Universe switch (Women / Men / Kids) */

.universe-switch {
  display: flex;
}

.universe-switch__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.1rem;
  margin: 0 0.9rem;
  color: inherit;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0.6;
  transition: opacity 0.15s ease;
}

.universe-switch__item:first-child {
  margin-left: 0;
}

.universe-switch__item:hover,
.universe-switch__item:focus-visible {
  color: inherit;
  opacity: 1;
}

/* Active universe: underlined */
.universe-switch__item.is-active {
  opacity: 1;
  font-weight: 700;
}

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

/* Mobile bar below the header */
.universe-switch--mobile {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.universe-switch--mobile .universe-switch__container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.universe-switch--mobile .universe-switch__item {
  margin: 0 0.75rem;
  font-size: 0.95rem;
}
