/*
 * Tools hub (/tools/): horizontal section jump bar (HTML from seovideo-tools plugin).
 * Component namespace: sve-tools-strip*
 */

.sve-tools-strip {
  width: 100%;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.98) 0%, rgba(8, 8, 10, 0.98) 100%);
  box-sizing: border-box;
}

.sve-tools-strip__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: safe center;
  align-items: center;
  gap: 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 10px var(--gap) 12px;
  padding-left: max(var(--gap), env(safe-area-inset-left));
  padding-right: max(var(--gap), env(safe-area-inset-right));
  list-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.sve-tools-strip__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.sve-tools-strip__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 1px;
  height: 1rem;
  margin: 0 6px;
  background: rgba(255, 255, 255, 0.14);
}

.sve-tools-strip__link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 245, 247, 0.82);
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 4px;
  border-bottom: none;
  text-decoration: none;
  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}

.sve-tools-strip__link:hover,
.sve-tools-strip__link:focus-visible {
  color: var(--color-text);
  background-color: rgba(255, 255, 255, 0.06);
  outline: none;
}

.sve-tools-strip__link:visited {
  color: rgba(245, 245, 247, 0.82);
}

/* Plugin-native layout (/video-seo-tools/* standalone HTML): strip sits inside .seovideo-tools-native main */
.seovideo-tools-native .sve-tools-strip {
  margin-bottom: 1rem;
}
