/* =========================================================
   DELALI SUPPLY — DESIGN SYSTEM
   Concept: the site is built like a shipping manifest / label
   run — perforated tear-strips, corner registration marks,
   mono SKU/spec data, and live label-preview mockups instead
   of stock photography. Two business units share one system,
   split by accent: GOLD for gloves, NAVY for labels.
   ========================================================= */

:root {
  --ink: #17140f;
  --ink-soft: #423b30;
  --paper: #faf6ee;
  --paper-deep: #f1e6cf;
  --paper-line: #ddccaa;
  --white: #ffffff;

  --gold: #a9741d;
  --gold-deep: #7c5313;
  --gold-pale: #f6e6bd;

  --navy: #1c2b3a;
  --navy-deep: #101a24;
  --navy-pale: #dfe7ee;

  --green-ok: #2f6b45;
  --green-pale: #e3efe4;
  --red-err: #a5311f;
  --red-pale: #f7e5e1;

  --muted: #706a5c;

  --radius: 16px;
  --radius-sm: 9px;
  --shadow-sm: 0 4px 14px rgba(23, 20, 15, 0.08);
  --shadow: 0 22px 54px rgba(23, 20, 15, 0.14);
  --shadow-lg: 0 30px 70px rgba(23, 20, 15, 0.22);

  --font-display: "Barlow Semi Condensed", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-size: 16.5px;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 26px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  color: var(--ink);
}
h1 { font-size: clamp(38px, 5vw, 58px); line-height: 1.02; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.08; }
h3 { font-size: 21px; line-height: 1.2; }

p { margin: 0 0 1em; color: var(--ink-soft); }
.plain { color: var(--ink-soft); }

.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }

/* ---------- eyebrow / manifest labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold-deep);
  display: inline-block;
}
.eyebrow.navy { color: var(--navy); }
.eyebrow.navy::before { background: var(--navy); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

/* ---------- perforation divider (signature motif) ---------- */
.perf {
  height: 22px;
  background:
    radial-gradient(circle, var(--paper) 3px, transparent 3.2px) 0 50% / 22px 22px repeat-x,
    var(--paper-line);
  position: relative;
}
.perf::before, .perf::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 26px;
  background: var(--paper);
}
.perf::before { left: 0; }
.perf::after { right: 0; }
.perf.on-ink { background: radial-gradient(circle, var(--navy-deep) 3px, transparent 3.2px) 0 50% / 22px 22px repeat-x, var(--paper-line); }
.perf.on-ink::before, .perf.on-ink::after { background: var(--navy-deep); }

/* ---------- registration / crop marks on cards ---------- */
.reg-card {
  position: relative;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: var(--white);
}
.reg-card::before, .reg-card::after,
.reg-card .rc-c2::before, .reg-card .rc-c2::after { content: none; }
.reg-mark {
  position: absolute;
  width: 14px; height: 14px;
  pointer-events: none;
}
.reg-mark.tl { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); border-top-left-radius: 6px; }
.reg-mark.tr { top: -1px; right: -1px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); border-top-right-radius: 6px; }
.reg-mark.bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); border-bottom-left-radius: 6px; }
.reg-mark.br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); border-bottom-right-radius: 6px; }
.reg-card.navy-marks .reg-mark { border-color: var(--navy) !important; }

/* =========================================================
   TOP BAR + NAV
   ========================================================= */
.top-bar {
  background: var(--ink);
  color: var(--paper-deep);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.top-bar .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 9px; padding-bottom: 9px; gap: 16px; flex-wrap: wrap;
}
.top-bar a { color: var(--gold-pale); }
.top-bar strong { color: #fff; }

.navbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--paper-line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; }
.logo .mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(155deg, var(--ink) 0%, var(--navy) 60%, var(--gold-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-pale); font-family: var(--font-mono); font-weight: 700; font-size: 13px;
}
.logo-img { height: 34px; width: auto; display: block; }
footer .logo-img { height: 30px; }
.primary { display: flex; align-items: center; gap: 28px; font-weight: 600; font-size: 15px; }
.primary a:not(.nav-cta):not(.cart-link) { position: relative; padding: 6px 0; }
.primary a:not(.nav-cta):not(.cart-link)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--gold-deep); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.primary a:not(.nav-cta):not(.cart-link):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--ink); color: #fff !important; padding: 11px 20px; border-radius: 999px;
  font-weight: 700; font-size: 14px; transition: transform .15s ease, background .15s ease;
}
.nav-cta:hover { background: var(--gold-deep); transform: translateY(-1px); }

.cart-link { position: relative; display: flex; align-items: center; gap: 8px; font-weight: 700; }
.cart-link svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: -8px; right: -12px;
  background: var(--gold-deep); color: #fff;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 3px;
}
.cart-count[data-empty="true"] { display: none; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-gold { background: var(--gold-deep); color: #fff; }
.btn-gold:hover { background: var(--gold); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); padding: 10px 6px; }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 30px; font-size: 16.5px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none !important; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 78px 0 54px;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(23,20,15,0.035) 0 1px, transparent 1px 68px);
  pointer-events: none;
}
.hero-copy { max-width: 700px; position: relative; margin-bottom: 44px; }
.hero-lede { font-size: 19px; max-width: 560px; }
.hero-contact { font-size: 15px; margin-top: 20px; color: var(--ink-soft); }
.hero-contact a { color: var(--gold-deep); font-weight: 700; }
.hero-actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

/* ---------- trust pill row (immediate, above-the-fold trust signals) ---------- */
.trust-row {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
  margin: 24px 0 4px; padding: 0;
}
.trust-row li {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--paper-line); border-radius: 999px;
  padding: 8px 14px 8px 11px; font-family: var(--font-mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: .02em; color: var(--ink-soft); box-shadow: var(--shadow-sm);
}
.trust-row svg { width: 15px; height: 15px; color: var(--gold-deep); flex-shrink: 0; }

/* ---------- hero product spotlight cards ---------- */
.hero-products { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative; }
.hero-product-card {
  display: block; background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease;
}
.hero-product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.hpc-visual { padding: 24px 24px 0; }
.hpc-visual .mock-frame { padding: 20px; }
.hpc-body { padding: 18px 24px 26px; }
.hpc-body h3 { margin-bottom: 6px; }
.hpc-body p { font-size: 14.5px; margin-bottom: 14px; }
.hpc-cta { font-weight: 700; font-size: 14.5px; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; transition: color .15s ease; }
.hero-product-card:hover .hpc-cta { color: var(--gold-deep); }

.unit-card.text-only .unit-body { padding: 30px 32px; }

/* =========================================================
   TRUST STRIP
   ========================================================= */


/* =========================================================
   SECTIONS
   ========================================================= */
section { padding: 84px 0; }
section.tight { padding: 48px 0; }
section.light { background: var(--paper-deep); }
section.ink { background: var(--navy-deep); color: var(--paper); }
section.ink h2, section.ink h3 { color: #fff; }
section.ink p { color: #c9d3dc; }

.section-heading { max-width: 640px; margin-bottom: 48px; }
.section-heading.centered { max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- unit / business cards ---------- */
.unit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.unit-card {
  background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease;
  display: flex; flex-direction: column;
}
.unit-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.unit-visual { padding: 30px 30px 0; }
.unit-body { padding: 26px 30px 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.unit-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 14px; }
.unit-tags span {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .03em; text-transform: uppercase;
  background: var(--paper-deep); border: 1px solid var(--paper-line); border-radius: 999px; padding: 5px 11px; color: var(--ink-soft);
}
.unit-card .btn { margin-top: auto; align-self: flex-start; }

/* =========================================================
   LABEL PREVIEW MOCKUPS (signature element)
   ========================================================= */
.mock-frame {
  background: repeating-linear-gradient(135deg, #ede1c4 0 2px, #e7d8b3 2px 4px);
  border-radius: var(--radius); padding: 26px;
  display: flex; align-items: center; justify-content: center;
}

/* Case label (gloves) */
.case-label {
  width: 100%; max-width: 320px; background: #fff; color: var(--ink);
  border: 2px solid var(--ink); border-radius: 6px; padding: 16px 18px;
  font-family: var(--font-mono); box-shadow: 0 10px 24px rgba(0,0,0,.16);
}
.case-label .cl-top { display: flex; justify-content: space-between; font-size: 10.5px; letter-spacing: .08em; border-bottom: 1px solid var(--ink); padding-bottom: 8px; margin-bottom: 8px; }
.case-label h4 { font-family: var(--font-display); font-size: 24px; margin: 0 0 2px; letter-spacing: -0.01em; }
.case-label .cl-sub { font-size: 11px; letter-spacing: .06em; color: var(--muted); margin-bottom: 10px; }
.case-label .cl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; font-size: 12px; margin-bottom: 12px; }
.case-label .cl-grid div span { display: block; }
.case-label .cl-grid .k { font-size: 9.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.case-label .cl-grid .v { font-weight: 700; font-size: 13.5px; }
.barcode {
  height: 34px; margin-top: 4px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 3px, var(--ink) 3px 4px, transparent 4px 7px, var(--ink) 7px 10px, transparent 10px 12px);
}

/* Thermal shipping label */
.ship-label {
  width: 100%; max-width: 300px; aspect-ratio: 4 / 6; background: #fff; color: var(--ink);
  border: 2px solid var(--ink); border-radius: 4px; padding: 14px;
  font-family: var(--font-mono); box-shadow: 0 10px 24px rgba(0,0,0,.16);
  display: flex; flex-direction: column;
}
.ship-label .sl-row { display: flex; justify-content: space-between; font-size: 9.5px; letter-spacing: .05em; }
.ship-label .sl-size { font-family: var(--font-display); font-size: 30px; font-weight: 800; text-align: center; margin: 6px 0; }
.ship-label hr { border: none; border-top: 1.5px solid var(--ink); margin: 8px 0; width: 100%; }
.ship-label .sl-addr { font-size: 10px; line-height: 1.4; margin-bottom: 8px; }
.ship-label .sl-addr b { display: block; font-size: 12px; }
.ship-label .barcode { flex: 1; min-height: 46px; }
.ship-label .sl-track { font-size: 9px; text-align: center; margin-top: 6px; letter-spacing: .1em; }

/* =========================================================
   PRODUCT PAGE (spec / configurator layout)
   ========================================================= */
.product-hero { padding-top: 40px; }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: .03em; margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--gold-deep); }
.product-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.product-visual { position: sticky; top: 100px; }
.product-title-row { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.badge {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; font-weight: 700;
}
.badge.gold { background: var(--gold-pale); color: var(--gold-deep); }
.badge.navy { background: var(--navy-pale); color: var(--navy); }
.badge.ok { background: var(--green-pale); color: var(--green-ok); }

.price-row { display: flex; align-items: baseline; gap: 10px; margin: 18px 0 6px; }
.price-now { font-family: var(--font-display); font-size: 40px; font-weight: 800; }
.price-unit { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.price-note { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }

/* option pickers */
.opt-group { margin-bottom: 24px; }
.opt-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: flex; justify-content: space-between; }
.opt-label b { color: var(--ink); text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 700; }
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  border: 1.5px solid var(--paper-line); background: var(--white); border-radius: var(--radius-sm);
  padding: 10px 16px; font-weight: 700; font-size: 14px; cursor: pointer; transition: border-color .15s ease, background .15s ease;
}
.swatch:hover { border-color: var(--ink); }
.swatch[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }
.swatch.color-dot { display: inline-flex; align-items: center; gap: 8px; }
.color-chip { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(0,0,0,.2); }

.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--paper-line); border-radius: var(--radius-sm); overflow: hidden; }
.qty-stepper button { background: var(--paper-deep); border: none; width: 40px; height: 44px; font-size: 18px; font-weight: 700; cursor: pointer; }
.qty-stepper button:hover { background: var(--gold-pale); }
.qty-stepper input { width: 68px; text-align: center; border: none; font-family: var(--font-mono); font-size: 15px; font-weight: 700; height: 44px; background: #fff; }

.price-break-table { width: 100%; border-collapse: collapse; margin: 10px 0 26px; font-size: 14px; }
.price-break-table th, .price-break-table td {
  border: 1px solid var(--paper-line); padding: 10px 12px; text-align: left; font-family: var(--font-mono); font-size: 13.5px;
}
.price-break-table th { background: var(--paper-deep); font-weight: 700; letter-spacing: .02em; }
.price-break-table tr.active td { background: var(--gold-pale); font-weight: 700; }

.add-row { display: flex; gap: 12px; align-items: center; margin: 22px 0 8px; flex-wrap: wrap; }
.line-total { font-family: var(--font-mono); font-size: 14px; color: var(--muted); }
.line-total b { color: var(--ink); font-size: 17px; }

.reassure-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 10px; font-size: 14.5px; }
.reassure-list li { display: flex; gap: 10px; align-items: flex-start; }
.reassure-list svg { flex-shrink: 0; margin-top: 2px; color: var(--green-ok); }

/* spec sheet tabs */
.spec-tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--paper-line); margin: 60px 0 26px; }
.spec-tab { padding: 12px 18px; font-weight: 700; font-size: 14.5px; cursor: pointer; border-bottom: 2px solid transparent; color: var(--muted); }
.spec-tab[aria-selected="true"] { color: var(--ink); border-color: var(--gold-deep); }
.spec-panel { display: none; }
.spec-panel.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.spec-table tr:not(:last-child) td { border-bottom: 1px solid var(--paper-line); }
.spec-table td { padding: 12px 4px; }
.spec-table td:first-child { color: var(--muted); font-family: var(--font-mono); font-size: 12.5px; width: 40%; text-transform: uppercase; letter-spacing: .03em; }
.spec-table td:last-child { font-weight: 600; }

.faq-item { border-bottom: 1px solid var(--paper-line); padding: 18px 0; }
.faq-q { font-weight: 700; font-size: 16px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-a { margin-top: 10px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.chev { transition: transform .15s ease; }

/* industry / use-case grid */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-card { background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius-sm); padding: 22px 20px; }
.industry-card .ic-num { font-family: var(--font-mono); font-size: 12px; color: var(--gold-deep); font-weight: 700; margin-bottom: 8px; }

/* why grid */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius); padding: 28px 24px; }
.tag-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-pale); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }

/* founders */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: center; }
blockquote { font-family: var(--font-display); font-size: 27px; font-weight: 700; line-height: 1.2; margin: 0 0 18px; color: var(--ink); }
.founders-sign { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.founders-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.founders-img { width: 100%; height: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }

/* contact strip */
.contact-strip {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  background: var(--ink); color: #fff; border-radius: var(--radius); padding: 34px 36px;
}
.contact-strip p { color: var(--paper-deep); margin: 4px 0 0; }
.contact-strip strong { font-family: var(--font-display); font-size: 22px; font-weight: 700; }

/* =========================================================
   CART PAGE
   ========================================================= */
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.manifest-head {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 40px; gap: 10px; padding: 12px 18px;
  font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted);
  border-bottom: 1px solid var(--ink);
}
.cart-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 40px; gap: 10px; align-items: center;
  padding: 18px; border-bottom: 1px solid var(--paper-line); background: var(--white);
}
.cart-row .ci-name { display: flex; gap: 14px; align-items: center; }
.ci-thumb { width: 56px; height: 56px; border-radius: 8px; background: var(--paper-deep); border: 1px solid var(--paper-line); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ci-thumb svg { width: 26px; height: 26px; color: var(--gold-deep); }
.ci-title { font-weight: 700; font-size: 15px; }
.ci-variant { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin-top: 2px; }
.ci-remove { background: none; border: none; cursor: pointer; color: var(--muted); }
.ci-remove:hover { color: var(--red-err); }
.cart-empty { text-align: center; padding: 70px 20px; border: 1px dashed var(--paper-line); border-radius: var(--radius); }

.summary-card { background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius); padding: 26px; position: sticky; top: 100px; }
.summary-line { display: flex; justify-content: space-between; font-size: 15px; padding: 9px 0; border-bottom: 1px solid var(--paper-line); }
.summary-line.total { border-bottom: none; font-weight: 700; font-size: 19px; padding-top: 16px; }
.summary-line span:last-child { font-family: var(--font-mono); }
.trust-mini { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--muted); margin-top: 18px; }
.trust-mini li { list-style: none; display: flex; gap: 8px; align-items: center; }

/* =========================================================
   FORMS
   ========================================================= */
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 13.5px; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--paper-line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* checkout status pages */
.status-hero { text-align: center; padding: 110px 0; }
.status-icon { width: 74px; height: 74px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 26px; }
.status-icon.ok { background: var(--green-pale); color: var(--green-ok); }
.status-icon.cancel { background: var(--red-pale); color: var(--red-err); }

/* =========================================================
   FOOTER
   ========================================================= */
footer { background: var(--navy-deep); color: var(--paper-deep); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 34px; }
footer h3 { color: #fff; font-size: 22px; }
footer h4 { color: #fff; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; font-family: var(--font-mono); margin-bottom: 14px; }
footer a { display: block; color: var(--paper-deep); font-size: 14.5px; margin-bottom: 9px; }
footer a:hover { color: var(--gold-pale); }
.copyright { font-size: 13px; color: #8b94a0; padding-top: 24px; font-family: var(--font-mono); }

/* mobile cta bar */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; background: var(--ink); }
.mobile-cta-bar a { flex: 1; text-align: center; padding: 15px; color: #fff; font-weight: 700; font-size: 14.5px; }
.mobile-cta-bar a:first-child { border-right: 1px solid rgba(255,255,255,.15); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero-products, .product-grid, .split, .cart-layout { grid-template-columns: 1fr; }
  .product-visual { position: static; margin-bottom: 10px; }
  .unit-grid, .why-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .summary-card { position: static; }
}
@media (max-width: 720px) {
  .primary { display: none; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 54px; }
  .price-break-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price-break-table thead, .price-break-table tbody { display: table; min-width: 480px; }
  .why-grid, .industry-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .manifest-head { display: none; }
  .cart-row { grid-template-columns: 1fr; gap: 10px; }
  .contact-strip { flex-direction: column; align-items: flex-start; }
}
