/* Help / FAQ page */
.help-hero {
  background: #0b1f3a;
  color: #fff;
  text-align: center;
  padding: 2.75rem 1.25rem 2.5rem;
}

.help-brand {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  font-weight: 600;
  opacity: 0.9;
}

.help-title {
  margin: 0.55rem 0 1.35rem;
  font-family: var(--font-display);
  font-size: var(--fs-title);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
}

.help-search {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: min(100%, 420px);
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,0.55);
  padding: 0.75rem 1rem;
  background: transparent;
}

.help-search-ico {
  font-size: 1.1rem;
  opacity: 0.85;
}

.help-search input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
  outline: none;
  min-width: 0;
}

.help-search input::placeholder {
  color: rgba(255,255,255,0.7);
}

.help-cats-bar {
  background: #eceae6;
  text-align: center;
  padding: 0.95rem 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.help-main {
  padding: 2.5rem 0 3.5rem;
  background: #fff;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem 1.75rem;
}

.help-card {
  text-align: center;
}

.help-card-title {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.help-card-title::after {
  content: '';
  display: block;
  width: 100%;
  max-width: 220px;
  height: 1px;
  background: #d5d1cb;
  margin: 0.75rem auto 0;
}

.help-card-list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.help-q {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.35;
  padding: 0.15rem 0.25rem;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.help-q:hover,
.help-q.open {
  color: var(--navy-mid);
  text-decoration: underline;
}

.help-a {
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  background: #f6f4f1;
  border-radius: 10px;
  font-size: 0.86rem;
  color: var(--muted);
  text-align: left;
  line-height: 1.45;
}

.help-empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem 1rem;
}

@media (max-width: 900px) {
  .help-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 1.25rem; }
}

@media (max-width: 560px) {
  .help-grid { grid-template-columns: 1fr; }
  .help-hero { padding: 2.1rem 1rem 1.85rem; }
}

/* —— Help article detail (REISS-style) —— */
.help-article-top {
  background: #f3f1ed;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.help-article-top-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.help-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.86rem;
  color: var(--muted);
}

.help-crumb a { color: var(--navy); font-weight: 600; }

.help-article-search {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.45rem 0.75rem;
  min-width: min(100%, 260px);
}

.help-article-search input {
  border: 0;
  outline: none;
  font-size: 16px;
  width: 100%;
  background: transparent;
}

.help-article-titlebar {
  background: #eceae6;
  text-align: center;
  padding: 1.1rem 1rem;
  border-bottom: 1px solid var(--line);
}

.help-article-titlebar h1 {
  margin: 0;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}

.help-article-main {
  background: #fff;
  padding: 0;
}

.help-article-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.6fr);
  min-height: 420px;
}

.help-article-side {
  background: #f3f1ed;
  padding: 1.5rem 1.25rem 2rem;
  border-right: 1px solid var(--line);
}

.help-article-side h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.help-side-list {
  display: grid;
  gap: 0.15rem;
}

.help-side-list a {
  display: block;
  padding: 0.7rem 0.75rem;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.35;
  border-radius: 4px;
}

.help-side-list a:hover {
  background: rgba(11, 31, 58, 0.05);
}

.help-side-list a.active {
  background: #e4e0da;
  font-weight: 600;
}

.help-article-content {
  padding: 1.75rem 1.5rem 2.5rem;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.65;
}

.help-article-content h2 {
  margin: 1.5rem 0 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.help-article-content h2:first-child { margin-top: 0; }

.help-article-content p { margin: 0 0 0.9rem; }
.help-article-content ul {
  margin: 0 0 1rem;
  padding-inline-start: 1.2rem;
}
.help-article-content ul.help-bullets {
  list-style: disc;
  padding-inline-start: 1.35rem;
  display: grid;
  gap: 0.85rem;
}
.help-article-content ul.help-bullets li {
  padding-left: 0.15rem;
}
.help-article-content ol.help-steps {
  margin: 0.75rem 0 1.25rem;
  padding-inline-start: 1.35rem;
  display: grid;
  gap: 0.65rem;
}
.help-article-content ol.help-steps li {
  padding-left: 0.15rem;
}
.help-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.25rem;
  border: 1px solid #e4e0da;
}
.help-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 480px;
}
.help-table th,
.help-table td {
  border-bottom: 1px solid #e4e0da;
  padding: 0.75rem 0.85rem;
  text-align: left;
  vertical-align: top;
}
.help-table th {
  background: #f3f1ed;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.help-table tr:last-child td { border-bottom: 0; }
.help-article-content a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

.help-article-extra {
  background: #f7f5f2;
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
}

.help-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.help-extra-grid h3 {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}

.help-extra-links {
  display: grid;
  gap: 0.45rem;
}

.help-extra-links a {
  color: var(--navy);
  font-size: 0.92rem;
}

.help-extra-links .muted,
.help-extra-links span.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .help-article-layout { grid-template-columns: 1fr; }
  .help-article-side {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .help-extra-grid { grid-template-columns: 1fr; }
}

/* Size guides */
.size-hero .size-hero-lead {
  margin: -0.5rem auto 1.1rem;
  max-width: 28rem;
  opacity: 0.85;
  font-size: 0.95rem;
}
.size-unit-toggle {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.45);
  overflow: hidden;
}
.size-unit-toggle button {
  border: 0;
  background: transparent;
  color: #fff;
  min-height: 40px;
  padding: 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.size-unit-toggle button.active {
  background: #fff;
  color: var(--navy);
}
.size-guides-main { background: #fff; padding-top: 1.5rem; }
.size-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.size-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  min-height: 42px;
  padding: 0 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--navy);
}
.size-tabs button.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.size-section-title {
  margin: 2rem 0 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}
.size-section-title:first-child { margin-top: 0; }
.size-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 0.85rem;
}
.size-petite-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}
.size-petite-grid h3 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  color: var(--navy);
}
.size-petite-grid ul {
  margin: 0;
  padding-inline-start: 1.1rem;
  color: var(--ink);
  font-size: 0.9rem;
  display: grid;
  gap: 0.35rem;
}
.size-table th { white-space: nowrap; }

@media (max-width: 700px) {
  .size-petite-grid { grid-template-columns: 1fr; }
}

/* Help section hub (Reiss-style list) */
.help-hub-main {
  background: #fff;
  padding: 0 0 3.5rem;
}

.help-hub-narrow {
  max-width: 820px;
  padding-top: 0.5rem;
}

.help-hub-block {
  margin-top: 1.75rem;
}

.help-hub-bar {
  margin: 0;
  background: #eceae6;
  text-align: center;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-bottom: 0;
}

.help-hub-list {
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-top: 0;
}

.help-hub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 31, 58, 0.12);
  font-size: 0.98rem;
  line-height: 1.35;
}

.help-hub-link:last-child {
  border-bottom: 0;
}

.help-hub-link:hover {
  background: #faf9f7;
  color: var(--navy);
}

.help-hub-chevron {
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.help-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.25rem;
}

.help-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.help-table th,
.help-table td {
  border: 1px solid rgba(11, 31, 58, 0.14);
  padding: 0.7rem 0.85rem;
  text-align: left;
}

.help-table th {
  background: #f3f1ed;
  font-weight: 600;
}


