/* src/styles/reset.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

html {
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Avenir, Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--paper, #fff);
  color: var(--ink, #111114);
  --buncss-light: initial;
  --buncss-dark: ;
  color-scheme: light dark;
  display: flex;
  font-synthesis: none;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  flex-direction: column;
  height: 100%;
  font-weight: 400;
}

@media (prefers-color-scheme: dark) {
  body {
    --buncss-light: ;
    --buncss-dark: initial;
  }
}

main {
  display: flex;
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items:  center;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
}

p {
  max-width: 1280px;
  font-size: 1.2rem;
}

a {
  color: var(--accent, #c8102e);
  font-size: inherit;
  position: relative;
  text-decoration: none;
  font-weight: 500;
}

button {
  color: inherit;
  cursor: pointer;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: .5rem;
  margin: 2rem 0;
  padding: .6rem 1.2rem;
  transition: border-color .25s;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 2px 4px #0000001a;
}

button:hover {
  border-color: var(--line-strong, #c3c3ca);
}

button:focus {
  outline: 4px auto -webkit-focus-ring-color;
}

button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

code {
  background-color: #ffffff14;
  border: 1px solid #ffffff1a;
  border-radius: .375rem;
  padding: .2rem .5rem;
  font-family: SF Mono, SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
  font-size: .875em;
}

@media (max-width: 480px) {
  main {
    padding: 1rem;
  }

  p {
    font-size: 1rem;
  }

  a {
    font-size: 1.2rem;
  }
}

@media (prefers-color-scheme: light) {
  body {
    background-color: var(--paper, #fff);
    color: var(--ink, #111114);
  }

  code {
    background-color: #0000000f;
    border-color: #0000001a;
  }
}

/* src/styles/support-shared.css */
.account-pop .account-report, .a-staff-pop .a-staff-report {
  display: flex;
  color: var(--ink);
  font: 500 .88rem / 1.2 var(--body);
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 9px;
  align-items:  center;
  gap: .5rem;
  width: 100%;
  margin: 0;
  padding: .6rem .7rem;
}

.account-pop .account-report:hover, .a-staff-pop .a-staff-report:hover {
  background: var(--paper-2);
}

.report-scrim {
  position: fixed;
  z-index: 120;
  display: flex;
  overflow-y: auto;
  backdrop-filter: blur(2px);
  background: #0a0a0c8c;
  justify-content: center;
  align-items:  flex-start;
  padding: 4vh 1rem;
  inset: 0;
}

.report-dialog {
  display: flex;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 16px;
  flex-direction: column;
  width: min(38rem, 100%);
  box-shadow: 0 40px 90px -30px #0000008c;
}

.report-head {
  display: flex;
  border-bottom: 1px solid var(--hairline);
  justify-content: space-between;
  align-items:  center;
  gap: 1rem;
  padding: 1rem 1.1rem;
}

.report-head h2 {
  font: 700 1.05rem / 1.2 var(--body);
  letter-spacing: -.01em;
  margin: 0;
}

.report-x {
  color: var(--ink-mid);
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 1.4rem;
  line-height: 1;
}

.report-x:hover {
  color: var(--ink);
}

.report-body {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1.1rem;
}

.report-lede {
  color: var(--ink-mid);
  margin: 0;
  font-size: .85rem;
}

.report-restored {
  border: 1px solid var(--hairline);
  background: var(--paper-2);
  color: var(--ink-mid);
  border-radius: 9px;
  margin: 0;
  padding: .5rem .65rem;
  font-size: .78rem;
  font-weight: 600;
}

.report-capture {
  display: flex;
  border: 1px solid var(--hairline);
  background: var(--paper-2);
  border-radius: 12px;
  flex-direction: column;
  gap: .6rem;
  padding: .8rem;
}

.report-capture-head {
  display: flex;
  justify-content: space-between;
  align-items:  flex-start;
  gap: .75rem;
}

.report-capture-head strong {
  display: block;
  font-size: .85rem;
}

.report-capture-head span {
  display: block;
  color: var(--ink-mid);
  margin-top: .15rem;
  font-size: .75rem;
  line-height: 1.45;
}

.report-rec {
  display: inline-flex;
  background: color-mix(in srgb, var(--magenta) 14%, transparent);
  color: var(--magenta);
  font: 700 .68rem / 1 var(--mono);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 999px;
  flex: none;
  align-items:  center;
  gap: .35rem;
  padding: .2rem .5rem;
}

.report-rec:before {
  content: "";
  background: var(--magenta);
  border-radius: 50%;
  width: .4rem;
  height: .4rem;
}

.report-capture-live {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.report-marker {
  display: flex;
  gap: .4rem;
}

.report-marker input {
  border: 1px solid var(--line);
  background: var(--field);
  color: var(--ink);
  font: 400 .82rem / 1.3 var(--body);
  border-radius: 8px;
  flex: 1;
  min-width: 0;
  padding: .45rem .55rem;
}

.report-capture-foot {
  display: flex;
  color: var(--ink-mid);
  justify-content: space-between;
  align-items:  center;
  gap: .5rem;
  font-size: .75rem;
}

.report-audit {
  color: var(--ink-mid);
  margin: 0;
  font-size: .75rem;
  line-height: 1.5;
}

.report-btn {
  display: inline-flex;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font: 600 .8rem / 1 var(--body);
  cursor: pointer;
  border-radius: 9px;
  align-items:  center;
  gap: .4rem;
  padding: .5rem .8rem;
}

.report-btn:hover:not(:disabled) {
  background: var(--magenta);
  border-color: var(--magenta);
}

.report-btn.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: none;
}

.report-btn.ghost:hover:not(:disabled) {
  background: var(--paper-2);
  border-color: var(--line-strong);
  color: var(--ink);
}

.report-btn.danger {
  background: var(--magenta);
  border-color: var(--magenta);
  color: #fff;
}

.report-btn:disabled {
  opacity: .5;
  cursor: default;
}

.report-file {
  position: relative;
  overflow: hidden;
}

.report-file input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  inset: 0;
}

.report-chips {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: .35rem;
  margin: 0;
  padding: 0;
}

.report-chips li {
  background: var(--paper-3);
  color: var(--ink-mid);
  font: 500 .7rem / 1.4 var(--mono);
  border-radius: 999px;
  padding: .2rem .5rem;
}

.report-chips li:before {
  content: "✓ ";
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}

.report-field, .report-grid label {
  display: flex;
  font: 600 .78rem / 1.3 var(--body);
  color: var(--ink-mid);
  flex-direction: column;
  gap: .3rem;
}

.report-field input, .report-field textarea, .report-grid input {
  border: 1px solid var(--line);
  background: var(--field);
  color: var(--ink);
  font: 400 .9rem / 1.45 var(--body);
  resize: vertical;
  border-radius: 9px;
  width: 100%;
  padding: .55rem .65rem;
}

.report-field input:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 1px;
}

.report-field textarea:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 1px;
}

.report-grid input:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 1px;
}

.report-field input[aria-invalid="true"] {
  border-color: var(--magenta);
}

.report-field small {
  color: var(--ink-mid);
  font: 400 .72rem / 1.45 var(--body);
}

.report-field small.bad {
  color: var(--magenta);
}

.report-evidence {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.report-files {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: .3rem;
  margin: 0;
  padding: 0;
}

.report-files li {
  display: flex;
  color: var(--ink-mid);
  align-items:  center;
  gap: .5rem;
  font-size: .78rem;
}

.report-files span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.report-files button {
  color: var(--ink-mid);
  cursor: pointer;
  background: none;
  border: 0;
}

.report-files button:hover {
  color: var(--magenta);
}

.report-error {
  color: var(--magenta);
  margin: 0;
  font-size: .8rem;
}

.report-foot {
  display: flex;
  border-top: 1px solid var(--hairline);
  justify-content: flex-end;
  gap: .5rem;
  padding: .85rem 1.1rem;
}

.report-done .report-btn {
  margin-top: .4rem;
}

.report-done {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items:  center;
  gap: .6rem;
  padding: 2rem 1.5rem;
}

.report-done p {
  color: var(--ink-mid);
  max-width: 26rem;
  margin: 0;
  font-size: .88rem;
  line-height: 1.55;
}

.report-ref {
  font-family: var(--mono);
  letter-spacing: .08em;
}

.report-ref strong {
  color: var(--ink);
}

@media (max-width: 640px) {
  .report-scrim {
    padding: 0;
  }

  .report-dialog {
    border: 0;
    border-radius: 0;
    width: 100%;
    min-height: 100dvh;
  }

  .report-grid {
    grid-template-columns: 1fr;
  }
}

.cap-overlay {
  position: fixed;
  z-index: 200;
  inset: 0;
}

.cap-layer {
  position: absolute;
  inset: 0;
}

.cap-prep {
  pointer-events: none;
}

.cap-toolbar {
  pointer-events: auto;
  position: absolute;
  display: flex;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 12px;
  align-items:  center;
  gap: .6rem;
  max-width: min(44rem, 100vw - 2rem);
  padding: .6rem .75rem;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 24px 60px -20px #00000080;
}

.cap-toolbar-text {
  color: var(--ink-mid);
  font-size: .8rem;
  line-height: 1.4;
}

.cap-freeze, .cap-cancel, .cap-attach, .cap-tool {
  border: 1px solid var(--line);
  color: var(--ink);
  font: 600 .78rem / 1 var(--body);
  cursor: pointer;
  background: none;
  border-radius: 9px;
  flex: none;
  padding: .45rem .75rem;
}

.cap-freeze, .cap-attach {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.cap-freeze:hover, .cap-attach:hover {
  background: var(--magenta);
  border-color: var(--magenta);
}

.cap-tool:hover:not(:disabled), .cap-cancel:hover {
  background: var(--paper-2);
}

.cap-tool:disabled {
  opacity: .4;
  cursor: default;
}

.cap-tool.on {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.cap-select {
  cursor: crosshair;
}

.cap-frozen {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.cap-highlight, .cap-selection {
  position: absolute;
  border: 2px solid var(--magenta);
  background: color-mix(in srgb, var(--magenta) 12%, transparent);
  pointer-events: none;
}

.cap-tag, .cap-dims {
  position: absolute;
  background: var(--ink);
  color: var(--paper);
  font: 500 .68rem / 1.4 var(--mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  border-radius: 6px;
  max-width: 60vw;
  padding: .15rem .4rem;
}

.cap-dims {
  top: -1.4rem;
  right: 0;
}

.cap-hint {
  position: absolute;
  background: var(--ink);
  color: var(--paper);
  pointer-events: none;
  border-radius: 999px;
  padding: .5rem .8rem;
  font-size: .78rem;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.cap-annot {
  position: absolute;
  display: flex;
  background: #0a0a0cd1;
  flex-direction: column;
  gap: .6rem;
  padding: 1rem;
  inset: 0;
}

.cap-annot-bar, .cap-annot-foot {
  display: flex;
  background: var(--card);
  border-radius: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:  center;
  gap: .75rem;
  padding: .55rem .7rem;
}

.cap-tools, .cap-annot-actions {
  display: flex;
  align-items:  center;
  gap: .35rem;
}

.cap-sep {
  background: var(--hairline);
  width: 1px;
  height: 1.2rem;
  margin: 0 .25rem;
}

.cap-swatch {
  cursor: pointer;
  border: 2px solid #0000;
  border-radius: 50%;
  width: 1.35rem;
  height: 1.35rem;
}

.cap-swatch.on {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px var(--card);
}

.cap-annot-stage {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items:  center;
  min-height: 0;
}

.cap-annot-canvas {
  background: var(--paper);
  cursor: crosshair;
  touch-action: none;
  border-radius: 8px;
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 30px 70px -25px #000000b3;
}

/* src/styles/platform-theme.css */
body.theme-cbs-platform {
  --paper: #f7f3eb;
  --paper-2: #f0ebe1;
  --paper-3: #e8e1d5;
  --card: #fffdf8;
  --card-2: #f8f3ea;
  --field: #fffdf8;
  --ink: #17142b;
  --ink-mid: #615d70;
  --ink-soft: #17142b24;
  --line: #17142b24;
  --line-strong: #17142b61;
  --accent: #6c4cff;
  --cyan: #2abf9f;
  --magenta: #6c4cff;
  --violet: #6c4cff;
  --mint: #2abf9f;
  --gold: #f3b646;
  --header-bg: #f7f3ebf0;
  --display: "Space Grotesk", Inter, sans-serif;
  background: radial-gradient(circle at 88% 8%, #6c4cff1f, transparent 25rem), var(--paper);
  color: var(--ink);
  overflow-x: clip;
  width: 100%;
  min-width: 0;
}

html[data-theme="dark"] body.theme-cbs-platform {
  --paper: #100e1a;
  --paper-2: #171424;
  --paper-3: #211d31;
  --card: #191625;
  --card-2: #211d31;
  --field: #1d192b;
  --ink: #f5f2ff;
  --ink-mid: #b8b1cc;
  --ink-soft: #f5f2ff29;
  --line: #f5f2ff24;
  --line-strong: #f5f2ff61;
  --accent: #9b87ff;
  --cyan: #48d6b7;
  --magenta: #9b87ff;
  --violet: #9b87ff;
  --mint: #48d6b7;
  --gold: #f5c45f;
  --header-bg: #100e1af0;
  background: radial-gradient(circle at 88% 8%, #9b87ff2b, transparent 25rem), var(--paper);
  --buncss-light: ;
  --buncss-dark: initial;
  color-scheme: dark;
}

.theme-cbs-platform .platform-header {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--paper) 91%, transparent);
  backdrop-filter: blur(18px);
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.theme-cbs-platform .cbs-brand-mark {
  background: none;
  border: 0;
  border-radius: .8rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
}

.theme-cbs-platform .brand-word {
  font-family: var(--display);
  letter-spacing: -.035em;
  text-transform: none;
  font-weight: 700;
}

.theme-cbs-platform .brand-sub {
  color: var(--ink-mid);
}

.theme-cbs-platform .site-nav {
  gap: clamp(1rem, 2.4vw, 2rem);
}

.theme-cbs-platform .site-nav a {
  letter-spacing: 0;
  text-transform: none;
  font-family: Inter, sans-serif;
  font-size: .78rem;
  font-weight: 700;
}

.theme-cbs-platform .site-nav .platform-nav-cta {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  padding: .7rem 1rem;
}

.theme-cbs-platform .shop-footer {
  --line: #fff3;
  --line-strong: #ffffff6b;
  color: #fff;
  background: #17142b;
}

.theme-cbs-platform .shop-footer .foot-name, .theme-cbs-platform .shop-footer .foot-col h4 {
  color: #fff;
}

.theme-cbs-platform .shop-footer .foot-tag, .theme-cbs-platform .shop-footer .foot-contact, .theme-cbs-platform .shop-footer .foot-col a, .theme-cbs-platform .shop-footer .newsletter-pitch, .theme-cbs-platform .shop-footer .foot-copy {
  color: #c4c1cf;
}

.theme-cbs-platform .shop-footer .foot-col a:hover {
  color: #8ee3cf;
}

@media (max-width: 680px) {
  .theme-cbs-platform .brand-sub, .theme-cbs-platform .site-nav a:not(.platform-nav-cta) {
    display: none;
  }
}

/* src/styles/print-theme.css */
:root {
  --paper: #fff;
  --paper-2: #f6f6f7;
  --paper-3: #ececee;
  --ink: #111114;
  --ink-soft: #6b6b7333;
  --ink-mid: #6b6b73;
  --line: #1111141f;
  --line-strong: #1111146b;
  --cyan: #6b6b73;
  --magenta: #c8102e;
  --yellow: #b45309;
  --card: #fff;
  --card-2: #fafafb;
  --field: #fff;
  --dot: #1111140d;
  --shadow: #1111141a;
  --header-bg: #fffffff7;
  --accent: var(--magenta);
  --gold: var(--cyan);
  --surface: var(--card);
  --border: var(--line);
  --hairline: #e6e6e9;
  --display: "Anton", "Inter", sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
}

html[data-theme="dark"] {
  --paper: #0d0d0f;
  --paper-2: #141417;
  --paper-3: #1c1c20;
  --ink: #f2f2f4;
  --ink-soft: #a1a1aa33;
  --ink-mid: #a1a1aa;
  --line: #f2f2f424;
  --line-strong: #f2f2f46b;
  --cyan: #a1a1aa;
  --magenta: #e2394f;
  --yellow: #e0a33f;
  --card: #141417;
  --card-2: #1c1c20;
  --field: #17171a;
  --dot: #f2f2f40d;
  --shadow: #0009;
  --header-bg: #0d0d0ff7;
  --hairline: #2a2a30;
  --buncss-light: ;
  --buncss-dark: initial;
  color-scheme: dark;
}

html[data-store-id] {
  --paper: var(--store-background);
  --paper-2: color-mix(in srgb, var(--store-background) 94%, var(--store-foreground));
  --paper-3: color-mix(in srgb, var(--store-background) 88%, var(--store-foreground));
  --ink: var(--store-foreground);
  --ink-mid: color-mix(in srgb, var(--store-foreground) 68%, var(--store-background));
  --line: color-mix(in srgb, var(--store-foreground) 16%, transparent);
  --line-strong: color-mix(in srgb, var(--store-foreground) 44%, transparent);
  --cyan: var(--store-primary);
  --magenta: var(--store-secondary);
  --accent: var(--store-accent);
  --card: color-mix(in srgb, var(--store-background) 96%, white);
  --card-2: var(--paper-2);
  --field: var(--card);
  --dot: color-mix(in srgb, var(--store-foreground) 6%, transparent);
  --header-bg: color-mix(in srgb, var(--store-background) 96%, transparent);
}

html[data-theme="dark"][data-store-id] {
  --paper: color-mix(in srgb, var(--store-foreground) 88%, black);
  --paper-2: color-mix(in srgb, var(--store-foreground) 76%, black);
  --paper-3: color-mix(in srgb, var(--store-foreground) 64%, black);
  --ink: color-mix(in srgb, var(--store-background) 88%, white);
  --ink-mid: color-mix(in srgb, var(--store-background) 68%, white);
  --line: color-mix(in srgb, var(--store-background) 17%, transparent);
  --line-strong: color-mix(in srgb, var(--store-background) 42%, transparent);
  --cyan: color-mix(in srgb, var(--store-primary) 58%, white);
  --magenta: color-mix(in srgb, var(--store-secondary) 58%, white);
  --accent: color-mix(in srgb, var(--store-accent) 68%, white);
  --card: color-mix(in srgb, var(--store-foreground) 78%, black);
  --card-2: var(--paper-3);
  --field: var(--card);
  --dot: color-mix(in srgb, var(--store-background) 6%, transparent);
  --header-bg: color-mix(in srgb, var(--paper) 96%, transparent);
}

html {
  --buncss-light: initial;
  --buncss-dark: ;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body.theme-print {
  background-color: var(--paper);
  background-image: radial-gradient(var(--dot) 1px, transparent 1.6px);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  background-size: 7px 7px;
  min-height: 100vh;
  line-height: 1.5;
}

.site-header {
  position: sticky;
  z-index: 20;
  display: flex;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid var(--ink);
  justify-content: space-between;
  align-items:  center;
  gap: 1.25rem;
  padding: .85rem clamp(1rem, 4vw, 2.75rem);
  top: 0;
}

.brand {
  display: flex;
  text-decoration: none;
  color: var(--ink);
  align-items:  center;
  gap: .55rem;
}

.brand-mark {
  object-fit: contain;
  align-self:  center;
  width: auto;
  height: 34px;
}

html[data-theme="dark"] .brand-mark {
  background: #fff;
  border-radius: 999px;
  padding: 2px 5px;
}

.brand-word {
  font-family: var(--display);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 1.18rem;
  line-height: 1;
}

.brand-sub {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-mid);
  font-size: .62rem;
}

.site-nav {
  display: flex;
  order: 2;
  align-items:  center;
  gap: clamp(.75rem, 1.8vw, 1.5rem);
}

.site-nav a {
  position: relative;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .16em;
  text-decoration: none;
  white-space: nowrap;
  color: var(--ink);
  padding: .2rem 0;
  font-size: .74rem;
}

.site-nav a:hover, .site-nav a.on {
  color: var(--magenta);
}

.site-nav a.on:after {
  content: "";
  position: absolute;
  background: var(--magenta);
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
}

.header-actions {
  display: flex;
  order: 3;
  align-items:  center;
  gap: .6rem;
}

.header-signin {
  display: inline-flex;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 999px;
  justify-content: center;
  align-items:  center;
  min-height: 2.5rem;
  padding: .55rem 1rem;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
}

.header-signin:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.auth-menu, .header-theme-menu {
  position: relative;
  display: inline-flex;
}

.header-theme {
  display: inline-grid;
  border: 1.5px solid var(--line-strong);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  border-radius: 999px;
  place-items:  center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
}

.header-theme svg {
  width: 1.05rem;
  height: 1.05rem;
}

.header-theme:hover, .header-theme.on {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, var(--card));
  color: var(--accent);
}

.header-theme-pop {
  position: absolute;
  z-index: 45;
  display: grid;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  text-align: left;
  border-radius: 1rem;
  gap: 1rem;
  width: min(19rem, 100vw - 1.5rem);
  padding: 1rem;
  top: calc(100% + .7rem);
  right: 0;
  box-shadow: 0 24px 60px -24px #00000073;
}

.header-theme-pop > div:first-child {
  display: grid;
  gap: .2rem;
}

.header-theme-pop strong {
  font-size: .92rem;
}

.header-theme-pop > div:first-child span {
  color: var(--ink-mid);
  font-size: .75rem;
}

.header-theme-pop .theme-seg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.header-theme-pop .theme-seg button {
  justify-content: center;
}

.auth-pop {
  position: absolute;
  z-index: 45;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  text-align: left;
  border-radius: 1rem;
  width: min(22rem, 100vw - 1.5rem);
  padding: 1.1rem;
  top: calc(100% + .7rem);
  right: 0;
  box-shadow: 0 24px 60px -24px #00000073;
}

.auth-pop-head {
  display: flex;
  justify-content: space-between;
  align-items:  start;
  gap: 1rem;
  margin-bottom: .9rem;
}

.auth-pop-head > div {
  display: grid;
  gap: .15rem;
}

.auth-pop-head strong {
  font: 700 1rem / 1.2 var(--body);
}

.auth-pop-head span, .auth-pop-help {
  color: var(--ink-mid);
  font: 500 .75rem / 1.45 var(--body);
}

.auth-signin-form, .auth-signin-form label {
  display: grid;
  gap: .45rem;
}

.auth-signin-form {
  gap: .85rem;
}

.auth-signin-form label span {
  color: var(--ink);
  font: 700 .78rem / 1.2 var(--body);
}

.auth-signin-form input {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: 500 .9rem / 1.2 var(--body);
  border-radius: .65rem;
  width: 100%;
  min-height: 2.8rem;
  padding: .68rem .78rem;
}

.auth-signin-form input:focus-visible {
  border-color: var(--magenta);
  outline: 3px solid color-mix(in srgb, var(--magenta) 20%, transparent);
}

.auth-signin-submit, .auth-signin-google {
  display: flex;
  font: 800 .84rem / 1.2 var(--body);
  cursor: pointer;
  border-radius: .68rem;
  justify-content: center;
  align-items:  center;
  width: 100%;
  min-height: 2.9rem;
}

.auth-signin-submit {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.auth-signin-submit:hover {
  border-color: var(--magenta);
  background: var(--magenta);
  color: #fff;
}

.auth-signin-submit:disabled {
  cursor: wait;
  opacity: .7;
}

.auth-signin-google {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  gap: .6rem;
}

.auth-signin-google:hover {
  border-color: var(--ink-mid);
}

.auth-signin-google img {
  width: 1.1rem;
  height: 1.1rem;
}

.auth-signin-error {
  background: color-mix(in srgb, #b42318 12%, var(--card));
  color: #b42318;
  font: 600 .76rem / 1.4 var(--body);
  border-radius: .55rem;
  margin: 0;
  padding: .65rem .7rem;
}

[data-theme="dark"] .auth-signin-error {
  color: #ffb4ab;
}

.auth-pop-divider {
  display: flex;
  color: var(--ink-mid);
  font: 600 .7rem / 1 var(--body);
  align-items:  center;
  gap: .65rem;
  margin: .9rem 0;
}

.auth-pop-divider:before, .auth-pop-divider:after {
  background: var(--line);
  content: "";
  flex: 1;
  height: 1px;
}

.auth-pop-help {
  margin: .75rem 0 0;
}

@media (max-width: 640px) {
  .auth-pop {
    right: -.25rem;
  }
}

.cart-menu {
  position: relative;
}

.header-actions .cart {
  display: inline-flex;
  border: 1.5px solid var(--ink);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  align-items:  center;
  gap: .45rem;
  padding: .45rem .85rem;
  transition: background .15s, color .15s;
  font-size: .74rem;
}

.header-actions .cart-icon {
  flex: none;
  width: 1.05rem;
  height: 1.05rem;
}

@media (max-width: 480px) {
  .header-actions .cart-label {
    display: none;
  }

  .header-actions .cart {
    padding: .45rem .6rem;
  }
}

.header-actions .cart:hover, .header-actions .cart.on {
  background: var(--ink);
  color: var(--paper);
}

.cart-count {
  background: var(--magenta);
  color: #fff;
  display: inline-flex;
  border-radius: 999px;
  justify-content: center;
  align-items:  center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 .3rem;
  font-size: .66rem;
  font-style: normal;
}

.theme-seg {
  display: inline-flex;
  border: 1.5px solid var(--line-strong);
  background: var(--paper-2);
  border-radius: 999px;
  gap: .15rem;
  padding: .15rem;
}

.theme-seg button {
  display: inline-flex;
  color: var(--ink-mid);
  font: 500 .72rem / 1 var(--body);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 999px;
  align-items:  center;
  gap: .3rem;
  margin: 0;
  padding: .3rem .6rem;
  transition: background .15s, color .15s;
}

.theme-seg button svg {
  width: .9rem;
  height: .9rem;
}

.theme-seg button:hover {
  color: var(--ink);
}

.theme-seg button.on {
  background: var(--ink);
  color: var(--paper);
}

.theme-compact {
  display: inline-grid;
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--card) 84%, transparent);
  color: var(--ink);
  cursor: pointer;
  border-radius: 50%;
  place-items:  center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  transition: background .15s, border-color .15s, transform .15s;
}

.theme-compact:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, var(--card));
  transform: translateY(-1px);
}

.theme-compact svg {
  width: 1rem;
  height: 1rem;
}

.google-btn {
  display: inline-flex;
  align-items:  center;
  gap: .6rem;
}

.google-btn img {
  width: 1.1rem;
  height: 1.1rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--ink-mid);
  font-size: .7rem;
}

.eyebrow:before {
  content: "✕ ";
  color: var(--cyan);
}

.ink-cyan {
  color: var(--ink);
}

.ink-magenta {
  color: var(--magenta);
}

.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  padding: .85rem 1.4rem;
  transition: transform .12s, background .18s, color .18s;
  font-size: .8rem;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.btn-secondary {
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-ghost {
  color: var(--ink);
  background: none;
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.crop {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  border: 2px solid var(--ink);
  width: 16px;
  height: 16px;
}

.crop.tl {
  border-bottom: 0;
  border-right: 0;
  top: 10px;
  left: 10px;
}

.crop.tr {
  border-bottom: 0;
  border-left: 0;
  top: 10px;
  right: 10px;
}

.crop.bl {
  border-top: 0;
  border-right: 0;
  bottom: 10px;
  left: 10px;
}

.crop.br {
  border-top: 0;
  border-left: 0;
  bottom: 10px;
  right: 10px;
}

.proof-loading {
  position: absolute;
  display: flex;
  font-family: var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: .8rem;
  font-size: .75rem;
  inset: 0;
}

.reg-dot {
  border: 2px solid var(--ink);
  border-top-color: var(--magenta);
  animation: .9s linear infinite reg-spin;
  border-radius: 50%;
  width: 26px;
  height: 26px;
}

@keyframes reg-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  display: flex;
  border-top: 1.5px solid var(--ink);
  font-family: var(--mono);
  letter-spacing: .08em;
  color: var(--ink-mid);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:  center;
  gap: .6rem 1.5rem;
  padding: 1.6rem clamp(1rem, 4vw, 2.75rem);
  font-size: .72rem;
}

.foot-reg {
  color: var(--cyan);
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.foot-links a {
  color: var(--ink-mid);
  text-decoration: none;
}

.foot-links a:hover {
  color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

.promo-bar {
  display: block;
  text-align: center;
  background: var(--ink, #111114);
  color: var(--paper, #f6f6f7);
  text-decoration: none;
  letter-spacing: .01em;
  padding: .5rem 1rem;
  font-size: .82rem;
  font-weight: 600;
}

a.promo-bar:hover {
  background: var(--accent, #c8102e);
  color: #fff;
}

html[data-theme="dark"] .promo-bar {
  background: var(--paper-3);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.newsletter {
  margin: 0;
}

.newsletter-row {
  display: flex;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  align-items: stretch;
  height: 2.6rem;
}

.newsletter-row input {
  color: var(--ink);
  font: 500 .88rem / 1 var(--body);
  background: none;
  border: 0;
  border-radius: 0;
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0 .75rem;
}

.newsletter-row input::placeholder {
  color: var(--ink-mid);
  opacity: .8;
}

.newsletter-row input:focus-visible {
  outline: none;
}

.newsletter-row:focus-within {
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--magenta) 35%, transparent);
}

.newsletter-row button {
  border: 0;
  border-left: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  margin: 0;
  padding: 0 1rem;
  transition: background .15s;
  font-size: .68rem;
  font-weight: 700;
}

.newsletter-row button:hover {
  background: var(--accent);
}

.newsletter-done {
  color: var(--accent);
  margin: 0;
  font-size: .86rem;
  font-weight: 600;
}

.newsletter-error {
  color: #c8102e;
  margin: .35rem 0 0;
  font-size: .76rem;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  width: 1px;
  height: 1px;
}

.pwa-install {
  border: 1.5px solid var(--gold, #6b6b73);
  color: var(--gold, #6b6b73);
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border-radius: 7px;
  padding: .4rem .7rem;
  font-size: .8rem;
  font-weight: 700;
}

.pwa-install:hover {
  background: var(--gold, #6b6b73);
  color: #fff;
}

.notify-toggle {
  border: 1.5px solid var(--accent, #c8102e);
  color: var(--accent, #c8102e);
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border-radius: 7px;
  padding: .4rem .7rem;
  font-size: .8rem;
  font-weight: 700;
}

.notify-toggle:hover {
  background: var(--accent, #c8102e);
  color: #fff;
}

.notify-toggle:disabled {
  opacity: .5;
  cursor: default;
}

.bnpl-note {
  display: flex;
  color: var(--muted, #6b6b73);
  flex-wrap: wrap;
  align-items:  center;
  gap: .5rem;
  margin: .7rem 0 0;
  font-size: .8rem;
  line-height: 1.4;
}

.bnpl-pill {
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent, #c8102e);
  white-space: nowrap;
  border-radius: 999px;
  padding: 2px 7px;
  font-size: .62rem;
  font-weight: 800;
}

.skip-link {
  position: absolute;
  z-index: 1000;
  background: var(--ink, #111114);
  color: #fff;
  border-radius: 0 0 8px;
  padding: .6rem 1rem;
  font-weight: 700;
  top: 0;
  left: -9999px;
}

.skip-link:focus {
  left: 0;
}

.account-export {
  color: var(--muted, #6b6b73);
  text-decoration: underline;
  font-size: .78rem;
}

.consent-banner {
  position: fixed;
  z-index: 900;
  display: flex;
  background: var(--card);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: 0 8px 30px var(--shadow);
  border-radius: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:  center;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto;
  padding: .9rem 1.1rem;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

.consent-banner p {
  flex: 1;
  min-width: 220px;
  margin: 0;
  font-size: .84rem;
  line-height: 1.45;
}

.consent-actions {
  display: flex;
  gap: .5rem;
}

.consent-accept, .consent-reject {
  font: inherit;
  cursor: pointer;
  border: 1.5px solid var(--ink);
  border-radius: 7px;
  padding: .5rem 1rem;
  font-size: .82rem;
  font-weight: 700;
}

.consent-accept {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.consent-reject {
  color: var(--ink);
  background: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.shop-footer {
  border-top: 1.5px solid var(--ink);
  background: var(--card);
  color: var(--ink);
  margin: 4rem 0 0;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1.3fr;
  gap: 2rem clamp(1.5rem, 4vw, 3.5rem);
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.4rem clamp(1rem, 4vw, 2.75rem) 2rem;
}

.shop-footer .foot-brand {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.shop-footer .foot-name {
  font-family: var(--display);
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.shop-footer .foot-tag {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink-mid);
  font-size: .64rem;
}

.shop-footer .foot-contact {
  color: var(--ink-mid);
  margin-top: .6rem;
  font-size: .86rem;
  font-style: normal;
  line-height: 1.6;
}

.shop-footer .foot-contact a {
  font: inherit;
  border-bottom: 1px dashed var(--line-strong);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
}

.shop-footer .foot-contact a.foot-map {
  color: var(--ink-mid);
}

.shop-footer .foot-contact a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.shop-footer .foot-col {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.shop-footer .foot-col h4 {
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink);
  margin: 0 0 .4rem;
  padding-bottom: .4rem;
  font-size: .64rem;
  font-weight: 700;
}

.shop-footer .foot-col a {
  color: var(--ink-mid);
  text-decoration: none;
  transition: color .15s;
  font-size: .88rem;
  line-height: 1.4;
}

.shop-footer .foot-col a:hover {
  color: var(--accent);
}

.foot-signup .newsletter-pitch {
  color: var(--ink-mid);
  margin: 0 0 .6rem;
  font-size: .86rem;
  line-height: 1.5;
}

.foot-bar {
  border-top: 1px solid var(--line);
  display: flex;
  border-top: 1px solid var(--line);
  align-items:  center;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: .9rem clamp(1rem, 4vw, 2.75rem) 1.1rem;
}

.foot-stitch {
  border-top: 2px dashed var(--line-strong);
  flex: 1;
  height: 0;
}

.shop-footer .foot-copy {
  font-family: var(--mono);
  letter-spacing: .08em;
  color: var(--ink-mid);
  white-space: nowrap;
  font-size: .66rem;
}

@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .foot-bar {
    flex-wrap: wrap;
  }

  .foot-stitch {
    flex-basis: 100%;
    order: -1;
  }

  .shop-footer .foot-copy {
    white-space: normal;
  }
}

.account-menu {
  position: relative;
  display: inline-flex;
}

.avatar {
  display: inline-flex;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  background: none;
  border-radius: 999px;
  justify-content: center;
  align-items:  center;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  padding: 0;
  transition: background .15s, color .15s;
  font-size: 1.1rem;
}

.avatar.in {
  background: var(--ink);
  color: var(--paper);
}

.avatar:hover, .avatar[aria-expanded="true"] {
  background: var(--magenta);
  border-color: var(--magenta);
  color: #fff;
}

.account-pop {
  position: absolute;
  z-index: 40;
  display: flex;
  border: 1px solid var(--line);
  background: var(--card);
  text-align: left;
  border-radius: 14px;
  flex-direction: column;
  min-width: 13rem;
  padding: .4rem;
  top: calc(100% + .6rem);
  right: 0;
  box-shadow: 0 20px 50px -20px #00000073;
}

.avatar img {
  object-fit: cover;
  border-radius: 999px;
  width: 100%;
  height: 100%;
}

.avatar span {
  font: 700 .95rem / 1 var(--body);
}

.account-who {
  display: flex;
  border-bottom: 1px solid var(--hairline);
  flex-direction: column;
  gap: .1rem;
  margin-bottom: .2rem;
  padding: .55rem .7rem .6rem;
}

.account-who strong {
  font: 600 .9rem / 1.2 var(--body);
  color: var(--ink);
}

.account-who span {
  font: 400 .74rem / 1.3 var(--body);
  color: var(--ink-mid);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-theme {
  display: flex;
  font: 500 .88rem / 1.2 var(--body);
  color: var(--ink);
  justify-content: space-between;
  align-items:  center;
  gap: .8rem;
  padding: .45rem .7rem;
}

.account-theme .theme-seg button span {
  display: none;
}

.account-pop .account-signin img {
  width: 1.05rem;
  height: 1.05rem;
  margin-right: .2rem;
}

.account-pop a, .account-pop .theme-row, .account-pop .pwa-install {
  display: flex;
  color: var(--ink);
  font: 500 .88rem / 1.2 var(--body);
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 9px;
  justify-content: space-between;
  align-items:  center;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: .6rem .7rem;
}

.account-pop a:hover, .account-pop .theme-row:hover, .account-pop .pwa-install:hover {
  background: var(--paper-2);
}

.account-pop .account-signin {
  color: var(--ink);
  justify-content: flex-start;
  font-weight: 600;
}

.account-pop .account-signout {
  border-top: 1px solid var(--hairline);
  color: var(--ink-mid);
  border-radius: 0 0 9px 9px;
  margin-top: .2rem;
}

@media (max-width: 1279px) {
  .brand-sub {
    display: none;
  }
}

@media (max-width: 1139px) {
  .brand-word {
    font-size: 1rem;
  }

  .header-actions {
    gap: .5rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
    gap: .5rem .75rem;
  }

  .site-nav {
    overflow-x: auto;
    scrollbar-width: none;
    order: 3;
    gap: 1.1rem;
    width: 100%;
    padding-bottom: .1rem;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.checkout-actions button {
  margin: 0;
}

.cta-ghost {
  border: 1.5px solid var(--ink, #111114);
  color: var(--ink, #111114);
  font: inherit;
  cursor: pointer;
  background: none;
  border-radius: 8px;
  padding: .7rem 1rem;
  font-weight: 700;
}

.cta-ghost:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.ink-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.ink-chip {
  display: inline-flex;
  border: 1.5px solid var(--line);
  font-family: var(--mono);
  background: var(--paper);
  border-radius: 999px;
  align-items:  center;
  gap: .35rem;
  padding: .2rem .55rem;
  font-size: .7rem;
}

.ink-chip i {
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  width: .75rem;
  height: .75rem;
}

.pms-request-input {
  border: 1.5px solid var(--line-strong);
  background: var(--field);
  font-family: var(--mono);
  width: 100%;
  padding: .5rem .6rem;
  font-size: .78rem;
}

.foot-contact {
  color: var(--ink-mid);
  margin: .5rem 0 .75rem;
  font-size: .8rem;
  font-style: normal;
  line-height: 1.6;
}

.foot-contact a {
  color: var(--ink);
}

.header-actions .cart {
  cursor: pointer;
  margin: 0;
}

.cart-pop {
  position: absolute;
  z-index: 40;
  border: 1px solid var(--line);
  background: var(--card);
  text-align: left;
  border-radius: 14px;
  width: min(380px, 100vw - 2rem);
  padding: .9rem 1rem 1rem;
  top: calc(100% + .6rem);
  right: 0;
  box-shadow: 0 20px 50px -20px #00000073;
}

.cart-pop-empty {
  color: var(--ink-mid);
  margin: 0;
  font-size: .86rem;
}

.cart-pop-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 0 0 .75rem;
  padding: 0;
}

.cart-pop-list li {
  display: grid;
  grid-template-columns: .9rem minmax(0, 1fr) auto auto;
  align-items:  center;
  gap: .6rem;
  font-size: .84rem;
}

.cart-pop-chip {
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  width: .9rem;
  height: .9rem;
}

.cart-pop-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cart-pop-main strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .86rem;
}

.cart-pop-main small {
  color: var(--ink-mid);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .72rem;
}

.cart-pop-qty {
  font-family: var(--mono);
  color: var(--ink-mid);
  font-size: .74rem;
}

.cart-pop-price {
  white-space: nowrap;
  font-size: .84rem;
  font-weight: 700;
}

.cart-pop-more {
  color: var(--ink-mid);
  margin: -.3rem 0 .7rem;
  font-size: .74rem;
}

.cart-pop-foot {
  display: grid;
  grid-template-columns: 1fr auto auto;
  border-top: 1px solid var(--line);
  align-items:  center;
  gap: .5rem;
  padding-top: .75rem;
  font-size: .84rem;
}

.cart-pop-foot b {
  margin-left: .25rem;
}

.cart-pop-view, .cart-pop-checkout {
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  padding: .5rem .9rem;
  font-size: .8rem;
  font-weight: 600;
}

.cart-pop-view {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.cart-pop-checkout {
  background: var(--magenta);
  color: #fff;
}

.cart-pop-view:hover {
  background: var(--ink);
  color: var(--paper);
}

.cart-pop-checkout:hover {
  filter: brightness(1.08);
}

.cart-pop-empty {
  display: flex;
  color: var(--ink-mid);
  flex-direction: column;
  gap: .55rem;
  margin: 0;
  font-size: .86rem;
}

.cart-pop-empty strong {
  color: var(--ink);
  font-size: .95rem;
}

.cart-pop-empty p {
  margin: 0 0 .25rem;
  font-size: .84rem;
  line-height: 1.5;
}

.cart-pop-empty .cart-pop-checkout {
  display: block;
  text-align: center;
  font-size: .84rem;
}

.cart-pop-link {
  display: block;
  text-align: center;
  color: var(--ink-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: .78rem;
}

.cart-pop-link:hover {
  color: var(--ink);
}

.site-header button, .site-header .header-actions button, .site-header .cart-menu button {
  margin: 0;
}

.site-header {
  padding-top: .6rem;
  padding-bottom: .6rem;
}

.impersonation-bar {
  --impersonation-h: 2.1rem;
  position: sticky;
  z-index: 21;
  display: flex;
  min-height: var(--impersonation-h);
  background: var(--yellow, #b45309);
  color: #111114;
  font-family: var(--mono, monospace);
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 1.5px dashed #111114;
  justify-content: center;
  align-items:  center;
  gap: 1rem;
  padding: .35rem clamp(1rem, 4vw, 2.75rem);
  font-size: .72rem;
  top: 0;
}

.impersonation-bar strong {
  text-transform: none;
  letter-spacing: 0;
  font-size: .8rem;
}

.impersonation-bar a {
  color: inherit;
  text-decoration: none;
  border: 1.5px solid #111114;
  border-radius: 3px;
  flex: none;
  padding: .15rem .6rem;
  font-weight: 700;
}

.impersonation-bar a:hover {
  color: var(--yellow, #b45309);
  background: #111114;
}

html[data-theme="dark"] .impersonation-bar {
  color: var(--yellow, #e0a33f);
  border-bottom-color: var(--yellow, #e0a33f);
  background: #2a2a30;
}

html[data-theme="dark"] .impersonation-bar a {
  border-color: var(--yellow, #e0a33f);
}

html[data-theme="dark"] .impersonation-bar a:hover {
  background: var(--yellow, #e0a33f);
  color: #111114;
}

body:has(.impersonation-bar) .site-header {
  top: 2.1rem;
}

.app-update-banner {
  position: fixed;
  z-index: 100;
  display: flex;
  background: var(--paper, #fff);
  color: var(--ink, #111114);
  border: 1px solid var(--line, #e2e2e6);
  animation: .2s ease-out app-update-in;
  border-radius: 999px;
  align-items:  center;
  gap: 10px;
  max-width: calc(100vw - 32px);
  padding: 10px 12px 10px 14px;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 14px 36px #1111142e;
}

.app-update-icon {
  color: var(--accent, #c8102e);
}

.app-update-text {
  white-space: nowrap;
  font-size: .84rem;
  font-weight: 600;
}

.app-update-action {
  background: var(--accent, #c8102e);
  color: #fff;
  font: inherit;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  margin: 0;
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 700;
}

.app-update-action:disabled {
  cursor: not-allowed;
  opacity: .6;
}

@keyframes app-update-in {
  from {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

@media (max-width: 560px) {
  .app-update-banner {
    border-radius: 16px;
    flex-wrap: wrap;
    justify-content: center;
    bottom: 16px;
  }

  .app-update-text {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .impersonation-bar {
    gap: .6rem;
    font-size: .66rem;
  }

  .impersonation-bar span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* src/styles/content-shared.css */
.content-main {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) 1.2rem 3rem;
}

.theme-cbs-platform .content-main {
  text-align: left;
  width: min(1120px, 100% - 2rem);
  max-width: none;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(5rem, 10vw, 9rem);
}

.theme-cbs-platform .content-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.theme-cbs-platform .content-head h1 {
  letter-spacing: -.07em;
  max-width: 14ch;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 700;
  line-height: .9;
}

.theme-cbs-platform .content-body {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 1.5rem;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.theme-cbs-platform .content-body h2 {
  letter-spacing: -.035em;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
}

.content-head {
  margin-bottom: 1.6rem;
}

.content-head .eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  font-size: .72rem;
}

.content-head h1 {
  font-family: var(--display);
  color: var(--ink);
  margin: .3rem 0 0;
  font-size: clamp(2rem, 5vw, 3rem);
}

.content-body {
  color: var(--ink);
  line-height: 1.6;
}

.content-body h2 {
  font-family: var(--display);
  color: var(--ink);
  margin: 2rem 0 .8rem;
  font-size: 1.5rem;
}

.content-body h3 {
  color: var(--ink);
  margin: 1.4rem 0 .3rem;
  font-size: 1.05rem;
}

.content-body p {
  color: var(--ink-mid);
  margin: 0 0 .9rem;
}

.content-note {
  color: var(--ink-mid);
  font-size: .85rem;
}

.qa {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.size-table {
  border-collapse: collapse;
  width: 100%;
  margin: .6rem 0 .4rem;
  font-size: .92rem;
}

.size-table th, .size-table td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding: .55rem .6rem;
}

.size-table th {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-mid);
  font-size: .72rem;
}

.care-list {
  color: var(--ink-mid);
  padding-left: 1.1rem;
}

.care-list li {
  margin: .4rem 0;
}

.policy {
  margin-bottom: 1.4rem;
}

.site-footer {
  display: flex;
  border-top: 1.5px solid var(--ink);
  flex-wrap: wrap;
  align-items:  flex-start;
  gap: clamp(1.5rem, 6vw, 5rem);
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 2rem 1.4rem;
}

/* src/styles/indexes/support.css */
.sup-center, .sup-thread {
  text-align: left;
}

.sup-center {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 1.25rem;
}

.sup-intro {
  display: flex;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:  center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
}

.sup-intro p {
  color: var(--ink-mid);
  flex: 22rem;
  margin: 0;
  line-height: 1.6;
}

.sup-intro .btn-primary {
  cursor: pointer;
}

.sup-list h2, .sup-lookup h2 {
  font: 700 1.05rem / 1.2 var(--body);
  margin: 0 0 .75rem;
}

.sup-list ul {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: .5rem;
  margin: 0;
  padding: 0;
}

.sup-row {
  display: flex;
  border: 1px solid var(--border);
  background: var(--surface);
  color: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: .75rem;
  justify-content: space-between;
  align-items:  center;
  gap: 1rem;
  width: 100%;
  padding: .85rem 1rem;
}

.sup-row:hover {
  border-color: var(--line-strong);
}

.sup-row.needs-you {
  border-color: var(--magenta);
  box-shadow: inset 3px 0 0 var(--magenta);
}

.sup-row-main {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 0;
}

.sup-row-main strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sup-row-main small {
  color: var(--ink-mid);
  font-family: var(--mono);
  font-size: .72rem;
}

.sup-pill {
  background: var(--paper-3);
  color: var(--ink-mid);
  font: 600 .7rem / 1.5 var(--body);
  white-space: nowrap;
  border-radius: 999px;
  flex: none;
  padding: .2rem .55rem;
}

.sup-pill.check, .sup-pill.you {
  background: color-mix(in srgb, var(--magenta) 12%, transparent);
  color: var(--magenta);
}

.sup-pill.open {
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  color: var(--ink);
}

.sup-empty {
  color: var(--ink-mid);
  margin: 0;
}

.sup-thread {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 1.25rem;
}

.sup-back {
  color: var(--ink-mid);
  font: 500 .85rem / 1 var(--body);
  cursor: pointer;
  background: none;
  border: 0;
  align-self:  flex-start;
}

.sup-back:hover {
  color: var(--ink);
}

.sup-thread-head {
  display: flex;
  border-bottom: 1px solid var(--hairline);
  justify-content: space-between;
  align-items:  flex-start;
  gap: 1rem;
  padding-bottom: .85rem;
}

.sup-thread-head h2 {
  font: 700 1.3rem / 1.25 var(--body);
  letter-spacing: -.01em;
  margin: .15rem 0 0;
}

.sup-ref {
  font: 700 .72rem / 1 var(--mono);
  letter-spacing: .1em;
  color: var(--ink-mid);
}

.sup-meta {
  color: var(--ink-mid);
  margin: .3rem 0 0;
  font-size: .8rem;
}

.sup-msg {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: .75rem;
  padding: .85rem 1rem;
}

.sup-msg.shop {
  border-left: 3px solid var(--magenta);
  background: var(--paper-2);
}

.sup-msg header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: .4rem;
}

.sup-msg header strong {
  font-size: .85rem;
}

.sup-msg header span {
  color: var(--ink-mid);
  font-family: var(--mono);
  font-size: .7rem;
}

.sup-msg p {
  white-space: pre-wrap;
  margin: 0;
  line-height: 1.6;
}

.sup-msg-kind {
  display: inline-block;
  background: var(--paper-3);
  color: var(--ink-mid);
  font: 600 .68rem / 1.5 var(--body);
  border-radius: 999px;
  margin-bottom: .4rem;
  padding: .1rem .45rem;
}

.sup-aside {
  color: var(--ink-mid);
  margin: .5rem 0 0;
  font-size: .85rem;
  line-height: 1.55;
}

.sup-aside strong {
  color: var(--ink);
}

.sup-verdict {
  border: 1.5px solid var(--magenta);
  background: color-mix(in srgb, var(--magenta) 5%, var(--surface));
  border-radius: .9rem;
  padding: 1.1rem 1.25rem;
}

.sup-verdict h3 {
  font: 700 1.05rem / 1.25 var(--body);
  margin: 0 0 .35rem;
}

.sup-verdict p {
  color: var(--ink-mid);
  margin: 0 0 .75rem;
  line-height: 1.55;
}

.sup-verdict textarea, .sup-reply textarea {
  border: 1px solid var(--border);
  background: var(--field);
  color: var(--ink);
  font: 400 .92rem / 1.55 var(--body);
  resize: vertical;
  border-radius: .6rem;
  width: 100%;
  padding: .65rem .75rem;
}

.sup-verdict-actions {
  display: flex;
  justify-content: flex-end;
  gap: .5rem;
  margin-top: .75rem;
}

.sup-verdict-actions .btn-primary, .sup-verdict-actions .btn-ghost, .sup-reply .btn-primary {
  cursor: pointer;
  padding: .6rem 1.1rem;
  font-size: .75rem;
}

.sup-verdict-actions .btn-primary:disabled, .sup-reply .btn-primary:disabled {
  opacity: .5;
  cursor: default;
  box-shadow: none;
  transform: none;
}

.sup-reply {
  display: flex;
  flex-direction: column;
  align-items:  flex-end;
  gap: .6rem;
}

.sup-closed-note {
  color: var(--ink-mid);
  margin: 0;
  font-size: .85rem;
}

.sup-error {
  color: var(--magenta);
  margin: 0;
  font-size: .85rem;
}

.sup-lookup {
  display: flex;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 1rem;
  flex-direction: column;
  align-items:  flex-start;
  gap: .75rem;
  padding: 1.25rem;
}

.sup-lookup p {
  color: var(--ink-mid);
  margin: 0;
  line-height: 1.6;
}

.sup-lookup-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  width: 100%;
}

.sup-lookup label {
  display: flex;
  font: 600 .78rem / 1.3 var(--body);
  color: var(--ink-mid);
  flex-direction: column;
  gap: .3rem;
}

.sup-lookup input {
  border: 1px solid var(--border);
  background: var(--field);
  color: var(--ink);
  font: 400 .92rem / 1.4 var(--body);
  border-radius: .6rem;
  padding: .6rem .7rem;
}

.sup-lookup .btn-primary {
  cursor: pointer;
}

.sup-lookup .btn-primary:disabled {
  opacity: .5;
  cursor: default;
  box-shadow: none;
  transform: none;
}

@media (max-width: 640px) {
  .sup-lookup-fields {
    grid-template-columns: 1fr;
  }

  .sup-thread-head {
    flex-direction: column;
    gap: .5rem;
  }
}
