/* Thin contact bar above main navigation — include after page stylesheet */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-white, #ffffff);
}

.top-bar {
  background: var(--color-dark, #1C2B42);
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  min-height: 36px;
  padding: 6px var(--container-padding, 24px);
}

.top-bar__link {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.top-bar__link:hover {
  text-decoration: underline;
  color: #fff;
}

@media (max-width: 480px) {
  .top-bar__inner {
    flex-direction: column;
    gap: 6px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

/* Shared: “See More Reviews” below review grid (all pages) */
.reviews-more {
  text-align: center;
  margin-top: 32px;
}

.btn--reviews-more {
  min-width: 200px;
}
