/* ============================================================
   Reusable Section Header Bar
   Centered title + optional right-aligned link button
   Usage: {% render 'section-header-bar', title: "My Title", link_label: "View All", link_url: "/collections/all" %}
   ============================================================ */

.section-header-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 3;
}

.section-header-bar__title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  margin: 0;
  text-align: center;
}

.section-header-bar__link {
  position: absolute;
  right: 2rem;
  color: #111;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 0.45rem 1rem;
  border-radius: 3px;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.section-header-bar__link:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: #111;
}
