/* kundeservice-cube.css
 *
 * Visual identity for the Cube-flavoured kundeservice page. Deliberately
 * different from the Unaas stylesheet (kundeservice.css) on the
 * differentiators that matter to a side-by-side comparator:
 *   - Inter only, never Barlow Condensed
 *   - Sentence-case headlines, no uppercase
 *   - Single-column hero, pill nav, editorial numbering
 *   - Pill buttons (999px), 16px card radius (Unaas uses 4px sharp corners)
 *   - Paper-grey section backgrounds; white cards (Unaas alternates dark cards)
 *
 * All selectors are prefixed cs-* so this file can never collide with the
 * ks-* selectors in the Unaas stylesheet.
 */

.cs-shell,
.cs-shell *,
.cs-shell *::before,
.cs-shell *::after { box-sizing: border-box; }

.cs-shell {
  --cs-bg: #ffffff;
  --cs-paper: #f4f4f4;
  --cs-paper-2: #ebebeb;
  --cs-ink: #161616;
  --cs-ink-soft: #3a3a3a;
  --cs-muted: #737373;
  --cs-line: #e5e5e5;
  --cs-line-strong: #d6d6d6;
  --cs-accent: #3b6ef5;
  --cs-accent-deep: #2956d8;
  --cs-accent-soft: #e6edff;
  --cs-pill: #1a1a1a;

  color: var(--cs-ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--cs-bg);
}

.cs-shell h1,
.cs-shell h2,
.cs-shell h3 { margin: 0; }
.cs-shell p { margin: 0; }
/* Note: previously `.cs-shell a { color: inherit }` was here. It was
   meant to keep links from showing default browser blue, but its
   specificity (0,1,1) won over `.cs-pill-btn { color: #fff }` (0,1,0)
   and made the white "Kontakt kundeservice" button text invisible
   inside the dark order-result card. Every <a> we render in the Cube
   template has its own explicit color (cs-qa-card, cs-channel,
   cs-pill-btn, cs-q .cs-ans a, etc.) so the inherited reset isn't
   needed and removing it fixes the button. */

.cs-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.cs-wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

.cs-link-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--cs-accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

/* ============================================================
 * Hero
 * ============================================================ */
.cs-hero {
  background: var(--cs-paper);
  padding: 64px 0 72px;
  text-align: center;
}
.cs-eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cs-muted);
  font-weight: 600;
  margin-bottom: 14px;
}
.cs-shell .cs-hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 0 0 14px;
  color: var(--cs-ink);
}
.cs-hero h1 .cs-accent { color: var(--cs-accent); }
/* Bumped specificity (.cs-shell .cs-hero p.cs-hero-lede) + !important
   on text-align to win unconditionally. Multiple staging rounds showed
   the inherited text-align: center on .cs-hero wasn't reaching this <p>,
   most likely because the surrounding storefront CSS (Shopify theme on
   the real customer surface, or some other rule we haven't pinpointed)
   sets `p { text-align: left }` with comparable specificity earlier in
   the cascade. The single-class rule that worked locally lost on
   staging — heavy-handed but it's the right tool here. */
.cs-shell .cs-hero p.cs-hero-lede {
  font-size: 16px;
  color: var(--cs-ink-soft);
  max-width: 54ch;
  margin: 0 auto 28px;
  line-height: 1.6;
  text-align: center !important;
  text-wrap: pretty;
}

/* Search */
.cs-search {
  margin: 32px auto 0;
  max-width: 620px;
  position: relative;
}
.cs-search input {
  width: 100%;
  padding: 16px 24px 16px 50px;
  border: 1px solid var(--cs-line-strong);
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  background: var(--cs-bg);
  color: var(--cs-ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.cs-search input:focus {
  border-color: var(--cs-accent);
  box-shadow: 0 0 0 4px var(--cs-accent-soft);
}
/* Pin placeholder color + force opacity 1 — Firefox defaults to 0.54
   opacity on placeholders, and any external stylesheet (Shopify theme,
   normalize.css, etc.) that hides placeholders will lose against this. */
.cs-search input::placeholder {
  color: var(--cs-muted);
  opacity: 1;
}
.cs-search-ic {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cs-muted);
}
.cs-search-meta {
  display: none;
  margin-top: 16px;
  font-size: 13px;
  color: var(--cs-muted);
}
.cs-search-meta.on { display: block; }
.cs-search-meta strong { color: var(--cs-ink); }

/* ============================================================
 * Search suggestions dropdown
 *
 * Replaces the previous "filter the FAQ list as you type" behaviour,
 * which was invisible above the fold (the FAQ list lives well below
 * the hero, after the quick-action cards and the order-lookup card).
 * The new pattern: type → matching questions appear directly under
 * the search input → click one to open + scroll-to that FAQ.
 * ============================================================ */
.cs-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: var(--cs-bg);
  border: 1px solid var(--cs-line);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10), 0 2px 6px rgba(0, 0, 0, 0.04);
  max-height: 60vh;
  overflow-y: auto;
  padding: 6px;
  z-index: 30;
  /* Prevent the dropdown from being too wide on big monitors —
     visually anchored to the search box. */
  max-width: 100%;
}
.cs-suggestions[hidden] { display: none; }

.cs-suggestion {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: background 0.12s;
}
.cs-suggestion:hover,
.cs-suggestion:focus,
.cs-suggestion.active {
  background: var(--cs-paper);
  outline: none;
}
.cs-suggestion-cat {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cs-muted);
  margin-bottom: 4px;
}
.cs-suggestion-q {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--cs-ink);
  line-height: 1.35;
}
.cs-suggestion mark {
  background: var(--cs-accent-soft);
  color: var(--cs-accent-deep);
  padding: 0 2px;
  border-radius: 2px;
  font-weight: 600;
}
.cs-suggestion-empty {
  padding: 18px 14px;
  font-size: 13.5px;
  color: var(--cs-muted);
  text-align: center;
}
.cs-suggestion-empty strong { color: var(--cs-ink); font-weight: 600; }

/* ============================================================
 * Quick action cards
 * ============================================================ */
.cs-actions { padding: 48px 0 16px; }
.cs-actions-grid {
  display: grid;
  /* auto-fit instead of a hardcoded 3-col grid: when only two of the three
     conditional cards render (e.g. no sparePartsUrl), they expand to
     fill the row instead of leaving a dead third column. minmax(280px,…)
     guarantees readability at narrow widths. */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.cs-qa-card {
  background: var(--cs-paper);
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  color: var(--cs-ink);
  transition: background .15s, transform .15s;
  display: block;
}
.cs-qa-card:hover {
  background: var(--cs-paper-2);
  transform: translateY(-2px);
}
.cs-qa-ic {
  width: 42px;
  height: 42px;
  background: var(--cs-bg);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--cs-accent);
}
.cs-qa-ic svg { width: 20px; height: 20px; }
.cs-qa-ttl {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.005em;
  margin-bottom: 4px;
}
.cs-qa-desc {
  font-size: 13.5px;
  color: var(--cs-muted);
  line-height: 1.5;
}
.cs-qa-arrow {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cs-ink);
  font-size: 13px;
  font-weight: 500;
}
.cs-qa-arrow svg { width: 14px; height: 14px; transition: transform .2s; }
.cs-qa-card:hover .cs-qa-arrow { color: var(--cs-accent); }
.cs-qa-card:hover .cs-qa-arrow svg { transform: translateX(3px); }

/* ============================================================
 * Order lookup card (horizontal)
 * ============================================================ */
.cs-order { padding: 32px 0 16px; }
.cs-order-card {
  background: var(--cs-bg);
  border: 1px solid var(--cs-line);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: center;
}
.cs-order-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cs-order-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cs-accent);
  animation: cs-pulse 2s ease-in-out infinite;
}
@keyframes cs-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,110,245,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(59,110,245,0); }
}
.cs-order-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cs-muted);
}
.cs-shell .cs-order-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.cs-order-desc {
  font-size: 14px;
  color: var(--cs-muted);
  margin: 0;
  line-height: 1.5;
}
.cs-order-form {
  display: flex;
  gap: 8px;
}
.cs-order-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid var(--cs-line-strong);
  border-radius: 999px;
  background: var(--cs-bg);
  color: var(--cs-ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.cs-order-form input:focus {
  border-color: var(--cs-accent);
  box-shadow: 0 0 0 4px var(--cs-accent-soft);
}
.cs-order-form input::placeholder {
  color: var(--cs-muted);
  opacity: 1;
}
.cs-order-form button {
  padding: 14px 22px;
  background: var(--cs-pill);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .15s;
  white-space: nowrap;
}
.cs-order-form button:hover { background: var(--cs-accent); }
.cs-order-form button:disabled { opacity: .55; cursor: not-allowed; }

.cs-order-hint {
  font-size: 12px;
  color: var(--cs-muted);
  margin-top: 10px;
  line-height: 1.5;
}
.cs-order-loading {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--cs-muted);
}
.cs-order-loading.on { display: inline-flex; }
.cs-order-loading .cs-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cs-accent);
  animation: cs-blink 1.2s infinite;
}
.cs-order-loading .cs-dot:nth-child(2) { animation-delay: .15s; }
.cs-order-loading .cs-dot:nth-child(3) { animation-delay: .3s; }
@keyframes cs-blink { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }

.cs-order-result {
  display: none;
  margin-top: 14px;
  padding: 16px 18px;
  background: var(--cs-paper);
  border: 1px solid var(--cs-line);
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--cs-ink);
}
.cs-order-result.on { display: block; }
.cs-order-result .cs-ref { color: var(--cs-accent-deep); font-weight: 600; }

/* Result head: kicker + status + status dot */
.cs-result-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cs-line);
  margin-bottom: 12px;
}
.cs-result-titles { min-width: 0; flex: 1; }
.cs-result-kicker {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cs-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.cs-result-status {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--cs-ink);
}

.cs-result-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.cs-result-meta > div {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
}
.cs-result-meta > div span:first-child { color: var(--cs-muted); }
.cs-result-meta > div span:last-child  { color: var(--cs-ink); font-weight: 500; }

.cs-result-track {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 11px 16px;
  background: var(--cs-accent);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  transition: background .15s;
}
.cs-result-track:hover { background: var(--cs-accent-deep); }

/* Status dots reused inside order result */
.cs-status-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cs-muted);
  flex: 0 0 10px;
  margin-top: 4px;
}
.cs-status-dot--wait   { background: #f2c14e; }
.cs-status-dot--active { background: var(--cs-accent); }
.cs-status-dot--done   { background: #16a34a; }
.cs-status-dot--error  { background: #ef4444; }

/* Order/service progress timeline */
.cs-timeline {
  display: flex;
  align-items: flex-start;
  margin-top: 4px;
}
.cs-tl-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 4px;
}
.cs-tl-line {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--cs-line-strong);
  z-index: 0;
}
.cs-tl-dot {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--cs-bg);
  border: 2px solid var(--cs-line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-tl-step--done .cs-tl-line,
.cs-tl-step--done .cs-tl-dot {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}
.cs-tl-step--now .cs-tl-dot {
  background: var(--cs-accent);
  border-color: var(--cs-accent);
  box-shadow: 0 0 0 4px var(--cs-accent-soft);
}
.cs-tl-label {
  margin-top: 8px;
  font-size: 10.5px;
  color: var(--cs-muted);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.2;
}
.cs-tl-step--done .cs-tl-label { color: var(--cs-ink-soft); }
.cs-tl-step--now  .cs-tl-label { color: var(--cs-ink); font-weight: 700; }

/* ============================================================
 * Category pill tabs
 * ============================================================ */
.cs-cat-tabs-wrap { padding: 32px 0 0; }
.cs-cat-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding: 6px;
  background: var(--cs-paper);
  border-radius: 999px;
  /* Full-width segmented bar (was width: fit-content + auto margins).
     Each pill below shares the row equally via flex: 1 1 0. */
  width: 100%;
}
.cs-cat-tabs a {
  /* flex: 1 1 0 — every pill claims an equal share of the row. When
     wrap kicks in on narrow screens the bottom row fills the same way. */
  flex: 1 1 0;
  min-width: 0;
  padding: 9px 14px;
  text-decoration: none;
  color: var(--cs-ink-soft);
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 999px;
  transition: background .15s, color .15s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.cs-cat-tabs a:hover { color: var(--cs-ink); }
.cs-cat-tabs a.active {
  background: var(--cs-bg);
  color: var(--cs-ink);
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.cs-cat-tabs .cs-count {
  font-size: 11px;
  color: var(--cs-muted);
  background: var(--cs-bg);
  padding: 1px 7px;
  border-radius: 999px;
  font-weight: 600;
}
.cs-cat-tabs a.active .cs-count {
  background: var(--cs-accent);
  color: #fff;
}

/* ============================================================
 * FAQ list (numbered editorial)
 *
 * CSS multi-column instead of grid: Grid anchors row heights to the
 * tallest item in each row, so a 2-item category sitting next to a
 * 4-item category leaves a visible gap below the shorter one. Multi-
 * column lets each category flow independently and balances the
 * columns naturally — no empty space below short categories.
 *
 * `break-inside: avoid` keeps each category section together (header +
 * accordion items) instead of letting it split across columns.
 * ============================================================ */
.cs-faq {
  padding: 48px 0 80px;
  column-count: 1;
  column-gap: 48px;
}
@media (min-width: 980px) {
  .cs-faq { column-count: 2; }
}
.cs-cat {
  break-inside: avoid;
  margin-bottom: 40px;
  scroll-margin-top: 24px;
}
.cs-cat:last-of-type { margin-bottom: 0; }
.cs-cat-head {
  margin-bottom: 14px;
  padding: 0 4px 12px;
  border-bottom: 1px solid var(--cs-line);
}
.cs-shell .cs-cat-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0;
  line-height: 1.2;
  color: var(--cs-ink);
}
.cs-cat-body { padding: 0 4px; }

/* Accordion */
.cs-q {
  border-bottom: 1px solid var(--cs-line);
}
.cs-q[hidden] { display: none; }
.cs-q summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 4px;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 16px;
  align-items: center;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--cs-ink);
  transition: color .12s;
}
.cs-q summary::-webkit-details-marker { display: none; }
.cs-q summary:hover { color: var(--cs-accent); }
.cs-q summary .cs-qtxt { line-height: 1.4; }
.cs-q summary .cs-chev {
  justify-self: end;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cs-paper);
  color: var(--cs-ink);
  display: grid;
  place-items: center;
  transition: background .2s, transform .25s, color .15s;
}
.cs-q[open] summary .cs-chev {
  background: var(--cs-accent);
  color: #fff;
  transform: rotate(180deg);
}
.cs-q summary:hover .cs-chev {
  background: var(--cs-ink);
  color: #fff;
}
.cs-q summary .cs-chev svg { width: 14px; height: 14px; }

.cs-q .cs-ans {
  padding: 4px 4px 22px;
  color: var(--cs-ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 72ch;
}
.cs-q .cs-ans p { margin: 0 0 10px; }
.cs-q .cs-ans p:last-child { margin-bottom: 0; }
.cs-q .cs-ans a {
  color: var(--cs-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.cs-q .cs-ans ul { margin: 6px 0 12px; padding-left: 18px; }
.cs-q .cs-ans ul li { margin-bottom: 4px; }
.cs-q .cs-ans strong { color: var(--cs-ink); font-weight: 600; }
.cs-q .cs-ans .cs-inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 9px 18px;
  background: var(--cs-pill);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s;
}
.cs-q .cs-ans .cs-inline-cta:hover { background: var(--cs-accent); }
.cs-q mark {
  background: var(--cs-accent-soft);
  color: var(--cs-accent-deep);
  padding: 1px 3px;
  border-radius: 3px;
  font-weight: 600;
}

/* Empty state */
.cs-empty {
  display: none;
  padding: 48px 24px;
  text-align: center;
  background: var(--cs-paper);
  border-radius: 16px;
  /* Span all columns in the multi-column FAQ list. Without this the
     "no results" card would render in just one column and look broken. */
  column-span: all;
}
.cs-empty.on { display: block; }
.cs-shell .cs-empty h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.cs-empty p { color: var(--cs-muted); margin: 0 0 18px; font-size: 14px; }
.cs-empty-actions { display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* Pill buttons (shared) */
.cs-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--cs-pill);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, transform .12s;
}
.cs-pill-btn:hover {
  background: var(--cs-accent);
  transform: translateY(-1px);
}
.cs-pill-btn--outline {
  background: transparent;
  color: var(--cs-ink);
  border: 1px solid var(--cs-line-strong);
}
.cs-pill-btn--outline:hover {
  background: var(--cs-ink);
  color: var(--cs-bg);
  border-color: var(--cs-ink);
}

/* ============================================================
 * Contact band
 * ============================================================ */
.cs-contact {
  background: var(--cs-paper);
  padding: 64px 0;
}
.cs-contact-head { text-align: center; margin-bottom: 36px; }
.cs-shell .cs-contact h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.015em;
  margin: 0;
}
.cs-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.cs-channel {
  background: var(--cs-bg);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: var(--cs-ink);
  transition: transform .12s, box-shadow .15s;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cs-channel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.cs-channel-ic {
  width: 48px;
  height: 48px;
  background: var(--cs-accent-soft);
  color: var(--cs-accent);
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
}
.cs-channel-ic svg { width: 22px; height: 22px; }
.cs-channel-body { flex: 1; min-width: 0; }
.cs-channel-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--cs-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.cs-channel-val {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1.2;
  color: var(--cs-ink);
  word-break: break-word;
}
.cs-channel-hint {
  font-size: 12.5px;
  color: var(--cs-muted);
  margin-top: 4px;
}
.cs-channel-arrow {
  color: var(--cs-muted);
  transition: transform .2s, color .15s;
  flex: 0 0 auto;
}
.cs-channel:hover .cs-channel-arrow {
  transform: translateX(4px);
  color: var(--cs-accent);
}

/* ============================================================
 * Responsive
 *
 * Mobile-first. The base styles above target small screens; these
 * @media min-width blocks promote the layout for wider viewports.
 * ============================================================ */

/* The 2-column FAQ promotion is now declared inline above (.cs-faq's
   own min-width media query), since CSS multi-column replaced grid. */

@media (max-width: 980px) {
  .cs-order-card { grid-template-columns: 1fr; gap: 20px; }
  .cs-channels { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .cs-hero { padding: 48px 0 56px; }
  .cs-shell .cs-hero h1 { font-size: 32px; }
  .cs-search input { padding: 14px 18px 14px 46px; font-size: 14.5px; }
  .cs-order-card { padding: 24px; }
  .cs-cat-tabs { padding: 4px; }
  .cs-cat-tabs a { padding: 8px 14px; font-size: 13px; }
  .cs-shell .cs-contact h2,
  .cs-shell .cs-visit-title { font-size: 26px; }
}
