/* CompanyStore B2B store.
   Palette sampled live from secondhq.com (DOM computed-style inspection,
   2026-09-03), not a redraw: the logo mark itself renders at #3401FF, page
   surfaces sit in a dark navy/slate range, secondary links run a cooler
   royal blue, and neutrals are cool slates rather than true greys. Token
   *names* are kept from the previous (CompanyStore) build so the rest of this file,
   and every page that references var(--brand) etc., did not need to change
   — only the values did. */

:root {
  --brand: #26890D;       /* Deloitte accessible green (buttons/links) */
  --brand-dark: #1C6B0A;
  --brand-deep: #046A38;
  --brand-bright: #86BC25;/* Deloitte signature green (accents) */
  --ink: #000000;         /* Deloitte black — hero/dark surfaces */
  --ink-soft: #1A1A1A;
  --grey: #8A8A8A;
  --off: #F7F7F7;
  --tint: #EAF3DF;        /* light green tint */
  --line: #E4E4E4;
  --muted: #4A4A4A;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(0, 0, 0, .07), 0 8px 24px rgba(0, 0, 0, .06);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: Manrope, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 15px;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--brand); }

/* secondhq.com sets headlines in Arboria, a licensed font we can't legally
   embed from a CDN. Sora is the closest freely-licensed match: a bold,
   geometric grotesque with the same squared, confident letterforms. */
h1, h2, h3, h4 { margin: 0 0 .5rem; font-family: Sora, Manrope, sans-serif; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; }
h1 { font-size: 2rem; }
h2 { font-size: 1.35rem; }
h3 { font-size: 1.05rem; }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.hidden { display: none !important; }
.muted { color: var(--muted); }
.small { font-size: .82rem; }
.mono { font-variant-numeric: tabular-nums; }
.right { text-align: right; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.row { display: flex; gap: 12px; align-items: center; }
.row-between { display: flex; gap: 12px; align-items: center; justify-content: space-between; }
.grow { flex: 1; }

/* ------------------------------------------------------------------ header */

.site-head {
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
}

.head-inner { display: flex; align-items: center; gap: 28px; height: 68px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { height: 20px; width: auto; display: block; }
.brand-sub { font-size: .78rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

.nav { display: flex; gap: 22px; flex: 1; }
.nav a { font-weight: 600; font-size: .92rem; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a.on, .nav a:hover { border-bottom-color: var(--brand); color: var(--ink); }

.head-right { display: flex; align-items: center; gap: 18px; }
.who { display: flex; align-items: center; gap: 12px; }
.who-name { font-size: .85rem; font-weight: 600; }
.link-quiet { font-size: .85rem; color: var(--muted); font-weight: 600; }
.link-quiet:hover { color: var(--brand); }

.cart-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  padding: 9px 16px; border-radius: var(--radius);
  font-weight: 700; font-size: .85rem;
}
.cart-btn:hover { background: var(--brand); color: #fff; }
.pill {
  background: var(--brand); color: #fff; border-radius: 999px;
  min-width: 20px; height: 20px; padding: 0 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800;
}
.cart-btn .pill { background: var(--brand); color: #fff; }

/* ------------------------------------------------------------------ footer */

.site-foot { border-top: 1px solid var(--line); margin-top: 64px; padding: 22px 0; background: var(--off); }
.foot-inner { display: flex; justify-content: space-between; font-size: .82rem; color: var(--muted); }

/* -------------------------------------------------------------------- hero */

.hero { background: var(--ink); color: #fff; padding: 52px 0 56px; }
.hero h1 { color: #fff; font-size: 2.4rem; max-width: 640px; }
.hero p { color: var(--grey); max-width: 560px; margin: 0; }
.hero .bar { width: 56px; height: 4px; background: var(--brand); margin-bottom: 20px; }
.hero-logo { height: 28px; width: auto; display: block; margin-bottom: 22px; }

/* Hero that is one piece of artwork rather than typeset copy over a photo. */
.hero-art { display: block; background: var(--ink); }
.hero-art img { display: block; width: 100%; height: auto; }
.hero-art .wrap { padding: 18px 0 4px; }

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 32px 0; }
.cat-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; background: #fff; transition: .15s;
}
.cat-card:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.cat-card h3 { margin-bottom: 2px; }
.cat-card .small { color: var(--muted); }

/* ------------------------------------------------------------------- cards */

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: #fff; display: flex; flex-direction: column;
  transition: .15s;
}
.card:hover { box-shadow: var(--shadow); border-color: var(--grey); }

.card-img {
  aspect-ratio: 1; background: var(--off);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: contain; }

.card-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-name { font-weight: 700; font-size: .92rem; line-height: 1.35; }
.card-sku { font-size: .72rem; color: var(--grey); font-weight: 600; letter-spacing: .04em; }
.card-price { font-weight: 800; font-size: 1.05rem; margin-top: auto; }
.card-price .from { font-size: .72rem; color: var(--muted); font-weight: 600; display: block; }
.card-moq { font-size: .74rem; color: var(--muted); font-weight: 600; }

.tag {
  display: inline-block; align-self: flex-start; background: var(--tint); color: var(--brand);
  border-radius: 4px; padding: 2px 7px; font-size: .68rem;
  font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
}

/* ----------------------------------------------------------------- product */

.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin: 32px 0; align-items: start; }
.pdp > * { min-width: 0; }
.pdp-img { background: var(--off); border-radius: var(--radius); aspect-ratio: 1; position: sticky; top: 88px; display: flex; align-items: center; justify-content: center; }
.pdp-img img { width: 92%; height: 92%; object-fit: contain; }

.spec-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.spec-table td { padding: 7px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table td:first-child { color: var(--muted); font-weight: 600; width: 38%; }

.tier-table { width: 100%; border-collapse: collapse; font-size: .88rem; margin-top: 8px; }
.tier-table th { text-align: left; font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: 8px 10px; border-bottom: 1px solid var(--line); }
.tier-table td { padding: 9px 10px; border-bottom: 1px solid var(--line); }
.tier-table tr.on { background: var(--tint); }
.tier-table tr.on td { font-weight: 800; }
.tier-table tr.on td:first-child::before { content: '▸ '; color: var(--brand); }

.size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-box {
  border: 1px solid var(--line); border-radius: 8px; padding: 8px;
  width: 74px; text-align: center;
}
.size-box.has { border-color: var(--ink); }
.size-box label { display: block; font-weight: 800; font-size: .78rem; margin-bottom: 5px; }
.size-box input { width: 100%; border: 0; text-align: center; font-family: inherit; font-weight: 700; font-size: .9rem; padding: 3px 0; background: var(--off); border-radius: 5px; }
.size-box input:focus { outline: 2px solid var(--brand); }

/* ------------------------------------------------------------------ inputs */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--brand); color: #fff; border: 0;
  padding: 12px 22px; border-radius: var(--radius);
  font-family: inherit; font-weight: 700; font-size: .92rem; cursor: pointer;
  transition: .15s;
}
.btn:hover { background: var(--brand-dark); color: #fff; }
.btn:disabled { background: var(--grey); cursor: not-allowed; }
.btn-dark { background: var(--ink); }
.btn-dark:hover { background: var(--ink-soft); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--off); color: var(--ink); border-color: var(--grey); }
.btn-sm { padding: 7px 13px; font-size: .8rem; }
.btn-block { width: 100%; }

label.field { display: block; margin-bottom: 14px; }
label.field > span { display: block; font-size: .78rem; font-weight: 700; margin-bottom: 5px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
label.field > span .req { color: var(--brand); }

input[type=text], input[type=email], input[type=password], input[type=tel],
input[type=number], input[type=date], select, textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 8px;
  font-family: inherit; font-size: .92rem; background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px var(--tint); }
textarea { min-height: 92px; resize: vertical; }
input[type=file] { font-size: .85rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-grid .full { grid-column: 1 / -1; }

/* ------------------------------------------------------------------ panels */

.panel { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; }
.panel + .panel { margin-top: 18px; }
.panel h2 { font-size: 1.05rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }

.note { background: var(--tint); border-left: 3px solid var(--brand); padding: 12px 14px; border-radius: 0 8px 8px 0; font-size: .87rem; }
.note-quiet { background: var(--off); border-left-color: var(--grey); }

.totals { width: 100%; border-collapse: collapse; }
.totals td { padding: 7px 0; }
.totals td:last-child { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
.totals tr.grand td { border-top: 2px solid var(--ink); padding-top: 12px; font-size: 1.2rem; font-weight: 800; }

/* ------------------------------------------------------------------- table */

.tbl { width: 100%; border-collapse: collapse; font-size: .88rem; }
.tbl th { text-align: left; font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: 10px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.tbl td { padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.tbl tbody tr:hover { background: var(--off); }
.tbl .num { text-align: right; font-variant-numeric: tabular-nums; }

.thumb { width: 52px; height: 52px; object-fit: contain; background: var(--off); border-radius: 6px; }

.qty-in { width: 76px; text-align: center; }

.status {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  background: var(--off); color: var(--muted); border: 1px solid var(--line);
}
.status.pending { background: var(--tint); color: var(--brand); border-color: #B6E1F7; }
.status.approved { background: var(--ink); color: #fff; border-color: var(--ink); }
.status.rejected { background: var(--brand); color: #fff; border-color: var(--brand); }
.status.closed { background: var(--off); color: var(--ink); border-color: var(--grey); }

/* ------------------------------------------------------------------- toast */

.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px);
  background: var(--ink); color: #fff; padding: 13px 20px;
  border-radius: var(--radius); font-weight: 600; font-size: .88rem;
  opacity: 0; transition: .25s; z-index: 100; max-width: 90vw;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast-error { background: var(--brand); }

/* -------------------------------------------------------------------- misc */

.crumbs { font-size: .8rem; color: var(--muted); margin: 20px 0 6px; font-weight: 600; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand); }

.page-head { margin: 8px 0 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }

.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.chip {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 6px 15px; font-size: .82rem; font-weight: 600; cursor: pointer;
  font-family: inherit; color: var(--ink);
}
.chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip:hover:not(.on) { border-color: var(--brand); color: var(--brand); }

.narrow { max-width: 460px; margin: 56px auto; }
.mid { max-width: 780px; margin: 0 auto; }

.empty { text-align: center; padding: 72px 20px; color: var(--muted); }
.empty h2 { color: var(--ink); }

.drop {
  border: 2px dashed var(--line); border-radius: var(--radius);
  padding: 26px; text-align: center; cursor: pointer; background: var(--off);
}
.drop:hover, .drop.over { border-color: var(--brand); background: var(--tint); }
.file-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .85rem; }

@media (max-width: 900px) {
  .grid, .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp, .form-grid { grid-template-columns: 1fr; }
  /* The image is sticky so it stays beside the buy panel on a wide screen.
     Once the grid is one column there is nothing beside it, so sticky just
     drags the image down over the copy underneath. */
  .pdp-img { position: static; top: auto; }
  .nav { display: none; }
  .head-inner { gap: 14px; }
}

/* Homepage promo banners, everything after the hero. */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin: 28px 0 0; }
.promo {
  min-height: 150px; border-radius: var(--radius); padding: 22px;
  display: flex; align-items: flex-end; color: #fff; background: var(--ink);
  background-size: cover; background-position: center;
}
.promo h3 { color: #fff; margin: 0 0 2px; }
.promo p { margin: 0; color: rgba(255, 255, 255, .82); }
.promo:hover { color: #fff; opacity: .93; }

/* ------------------------------------------------------------ filter bar */
.fbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end;
        background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
        box-shadow: var(--shadow); padding: 14px 16px; margin-bottom: 18px; }
.fbar-fld { display: flex; flex-direction: column; gap: 5px; }
.fbar-fld > span { font-size: .68rem; font-weight: 800; letter-spacing: .07em;
                   text-transform: uppercase; color: var(--muted); }
.fbar-fld input, .fbar-fld select { padding: 9px 11px; border: 1.5px solid var(--line);
  border-radius: 8px; font-family: inherit; font-size: .9rem; background: var(--off); color: var(--ink); }
.fbar-fld input:focus, .fbar-fld select:focus { outline: none; border-color: var(--brand);
  background: #fff; box-shadow: 0 0 0 3px rgba(0, 156, 222, .15); }
.fbar-fld #fq { min-width: 240px; }
.fbar-fld #fmoq { width: 90px; }
.fbar-range { display: flex; align-items: center; gap: 6px; }
.fbar-range input { width: 86px; }
.fbar-range i { color: var(--muted); font-style: normal; }
.fbar-count { font-size: .85rem; color: var(--muted); margin-bottom: 12px; }
@media (max-width: 720px) {
  .fbar { flex-direction: column; align-items: stretch; }
  .fbar-fld #fq { min-width: 0; width: 100%; }
  .fbar > .btn { margin-left: 0 !important; }
}

/* --------------------------------------------------------- kit builder */
.nav-kit { font-weight: 800; color: var(--brand-deep); }
.kit-form { display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end;
            background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
            box-shadow: var(--shadow); padding: 16px 18px; margin-bottom: 18px; }
.kit { border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
       box-shadow: var(--shadow); margin-bottom: 16px; overflow: hidden; }
.kit-head { display: flex; justify-content: space-between; align-items: center; gap: 12px;
            padding: 12px 16px; background: var(--off); border-bottom: 1px solid var(--line);
            flex-wrap: wrap; }
.kit-items { display: grid; gap: 12px; padding: 16px;
             grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.kit-item { border: 1px solid var(--line); border-radius: 10px; padding: 10px;
            text-align: center; position: relative; }
.kit-item img { width: 100%; height: 90px; object-fit: contain;
                background: var(--off); border-radius: 6px; display: block; }
.kit-item .kn { font-size: 12px; font-weight: 700; margin-top: 7px; line-height: 1.25;
                display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.kit-item .kp { font-size: 12px; color: var(--muted); margin-top: 3px; }
.kit-item .kx { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px;
                border-radius: 50%; border: 1px solid var(--line); background: #fff;
                color: #D93025; cursor: pointer; font-size: 12px; line-height: 1; }
.kit-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px;
            padding: 12px 16px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.kit-per { font-size: 1.05rem; font-weight: 800; }
.size-split { display: grid; gap: 10px; margin-top: 12px;
              grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); }
.size-split label { display: flex; flex-direction: column; gap: 4px; font-size: .75rem;
                    font-weight: 700; color: var(--muted); }
.size-split input { padding: 7px 9px; border: 1.5px solid var(--line); border-radius: 8px;
                    font-family: inherit; }
.note-warn { border-left: 3px solid #D93025; }

/* ------------------------------------------------- kit item actions + picker */
.kit-item .kit-acts { display: flex; gap: 6px; margin-top: 8px; }
.kit-rep { flex: 1; border: 1px solid var(--line); background: #fff; border-radius: 8px;
           padding: 6px 8px; font: inherit; font-size: .72rem; font-weight: 700;
           color: var(--ink); cursor: pointer; }
.kit-rep:hover { background: var(--tint); border-color: var(--brand); }
.kit-rem { width: 30px; border: 1px solid var(--line); background: #fff; border-radius: 8px;
           color: #D93025; cursor: pointer; font-size: 1rem; line-height: 1; }
.kit-rem:hover { background: #D93025; color: #fff; border-color: #D93025; }
.kit-add { border: 2px dashed var(--line); border-radius: 10px; background: var(--off);
           display: flex; flex-direction: column; align-items: center; justify-content: center;
           gap: 4px; cursor: pointer; font: inherit; font-size: .8rem; font-weight: 700;
           color: var(--brand-deep); min-height: 150px; }
.kit-add:hover { border-color: var(--brand); background: var(--tint); }
.kit-add .plus { font-size: 1.5rem; line-height: 1; }

.kmodal { position: fixed; inset: 0; background: rgba(0,21,61,.5); z-index: 90;
          display: flex; align-items: center; justify-content: center; padding: 24px; }
.kmodal-inner { background: #fff; border-radius: 14px; width: min(980px, 100%);
                max-height: 88vh; display: flex; flex-direction: column; padding: 20px; }
.kmodal-head { display: flex; justify-content: space-between; align-items: flex-start;
               gap: 12px; margin-bottom: 14px; }
.kmodal-head h3 { margin: 0 0 3px; }
.kmodal-foot { margin-top: 14px; text-align: center; }
.kmodal .pick-grid { flex: 1; overflow-y: auto; display: grid; gap: 12px; padding: 4px;
                     grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.pick-tile { border: 1.5px solid var(--line); border-radius: 10px; padding: 10px;
             background: #fff; cursor: pointer; text-align: left; font: inherit; display: block; }
.pick-tile:hover { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,156,222,.15); }
.pick-tile img { width: 100%; height: 84px; object-fit: contain; background: var(--off);
                 border-radius: 6px; display: block; margin-bottom: 8px; }
.pick-name { display: block; font-size: 12px; font-weight: 700; line-height: 1.25;
             -webkit-line-clamp: 2; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; }
.pick-meta { display: block; font-size: 11px; color: var(--muted); margin-top: 3px; }
.pick-price { display: block; font-size: 13px; font-weight: 800; margin-top: 5px; }

/* -------------------------------------------------------------- analytics */
.stat-row { display: grid; gap: 12px; margin-bottom: 18px;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
        box-shadow: var(--shadow); padding: 14px 16px; }
.stat-n { font-size: 1.5rem; font-weight: 800; letter-spacing: -.01em; }
.stat-l { font-size: .72rem; font-weight: 700; letter-spacing: .06em;
          text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.an-two { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 900px) { .an-two { grid-template-columns: 1fr; } }

.bars { display: flex; flex-direction: column; gap: 8px; }
.bar-row { display: grid; grid-template-columns: minmax(90px, 34%) 1fr auto;
           gap: 10px; align-items: center; }
.bar-label { font-size: .82rem; font-weight: 600; overflow: hidden;
             text-overflow: ellipsis; white-space: nowrap; }
.bar-track { background: var(--off); border-radius: 4px; height: 14px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--brand); border-radius: 0 4px 4px 0; min-width: 2px; }
.bar-val { font-size: .78rem; color: var(--muted); white-space: nowrap; }
.spark { width: 100%; height: 96px; display: block; }

/* ------------------------------------------------- analytics product rows */
.prod-rows { display: flex; flex-direction: column; gap: 4px; }
.prod-row { display: grid; grid-template-columns: 22px 52px 1fr auto; gap: 12px;
            align-items: center; padding: 8px; border-radius: 10px;
            text-decoration: none; color: inherit; }
.prod-row:hover { background: var(--off); }
.prod-rank { font-size: .8rem; font-weight: 800; color: var(--muted); text-align: center; }
.prod-img { width: 52px; height: 52px; object-fit: contain; background: var(--off);
            border-radius: 8px; }
.prod-body { min-width: 0; }
.prod-name { display: block; font-size: .86rem; font-weight: 700; line-height: 1.25;
             overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.prod-sku { display: block; font-size: .72rem; color: var(--muted); margin-top: 2px; }
.prod-val { font-size: .84rem; font-weight: 800; white-space: nowrap; }

/* ------------------------------------------------------------ switch */
.sw { display: inline-flex; align-items: center; gap: 9px; border: 0; padding: 0;
      background: none; font: inherit; cursor: pointer; color: var(--ink); }
.sw:disabled { opacity: .55; cursor: default; }
.sw-track { width: 38px; height: 22px; border-radius: 999px; background: var(--grey);
            position: relative; flex: none; transition: background .16s ease; }
.sw-knob { position: absolute; top: 3px; left: 3px; width: 16px; height: 16px;
           border-radius: 50%; background: #fff; transition: transform .16s ease;
           box-shadow: 0 1px 3px rgba(0, 21, 61, .35); }
.sw.on .sw-track { background: var(--brand); }
.sw.on .sw-knob { transform: translateX(16px); }
.sw-label { font-size: .82rem; font-weight: 700; }
.sw:not(.on) .sw-label { color: var(--muted); }
.sw:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }


/* ================================================== store chrome, CompanyStore layout
   Account strip, logo + search, category rail, then a footer that carries the
   service address and the firm's line. Mirrors the Magento store this replaces
   so the two do not read as different shops during the changeover. */

.site-head { position: static; border-bottom: 0; }

.util { background: var(--ink); color: #fff; }
.util-inner { display: flex; align-items: center; justify-content: flex-end;
              gap: 18px; height: 36px; font-size: .8rem; }
.util a { color: #fff; font-weight: 600; }
.util a:hover { color: var(--brand); }
.util-name { color: var(--grey); }
.util-btn { background: var(--brand); color: #fff; padding: 5px 14px; border-radius: 6px; font-weight: 700; }
.util-btn:hover { background: #fff; color: var(--ink); }

.head-inner { display: flex; align-items: center; gap: 24px; height: 88px; }
.brand-logo { height: 26px; }

.search { position: relative; flex: 1; max-width: 400px; margin-left: auto; }
.search input {
  width: 100%; padding: 9px 42px 9px 14px; font: inherit; font-size: .9rem;
  border: 1px solid var(--line); border-radius: 8px; background: var(--off);
}
.search input:focus { outline: none; background: #fff; border-color: var(--brand);
                      box-shadow: 0 0 0 3px rgba(0, 156, 222, .15); }
.search button { position: absolute; top: 4px; right: 4px; width: 32px; height: 30px;
                 display: flex; align-items: center; justify-content: center;
                 border: 0; background: none; color: var(--muted); cursor: pointer; }
.search button:hover { color: var(--brand); }

.head-icons { display: flex; align-items: center; gap: 4px; }
.icon-btn { position: relative; width: 42px; height: 42px; border-radius: 8px;
            display: flex; align-items: center; justify-content: center; color: var(--ink); }
.icon-btn:hover { background: var(--off); color: var(--brand); }
.icon-btn .pill { position: absolute; top: 2px; right: 0; }

.catnav { background: var(--off); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.catnav-inner { display: flex; align-items: center; gap: 26px; height: 46px; overflow-x: auto; }
.catnav a { font-weight: 600; font-size: .9rem; white-space: nowrap; }
.catnav a.on, .catnav a:hover { color: var(--brand); }

/* ----------------------------------------------------------- hero carousel */

.hero-art { position: relative; background: var(--ink); }
.hero-slide { display: none; }
.hero-slide.on { display: block; }
.hero-slide img { display: block; width: 100%; height: auto; aspect-ratio: 2073 / 600; object-fit: cover; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 14px;
             display: flex; justify-content: center; gap: 9px; }
.hero-dot { width: 11px; height: 11px; padding: 0; border: 0; border-radius: 50%;
            background: rgba(255, 255, 255, .5); cursor: pointer; }
.hero-dot.on { background: #fff; }

/* -------------------------------------------------------- homepage sections */

.home-sec { margin-top: 44px; }
.home-sec h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 22px; }

/* Five categories once Trophies arrived, and a sixth is a sheet edit away. */
.cat-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.cat-tile { text-align: center; }
.cat-tile-img { height: 232px; padding: 18px; background: #fff;
                border: 1px solid var(--line); border-radius: var(--radius);
                display: flex; align-items: center; justify-content: center; }
.cat-tile:hover .cat-tile-img { border-color: var(--brand); box-shadow: var(--shadow); }
.cat-tile-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cat-tile-label { margin-top: 12px; font-size: 1.05rem; font-weight: 700; }

.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ------------------------------------------------------------------ footer */

.site-foot { margin-top: 56px; padding: 26px 0 34px; }
.foot-inner { display: block; font-size: .84rem; color: var(--muted); line-height: 1.7; }
.foot-inner a { color: var(--muted); text-decoration: underline; }
.foot-inner a:hover { color: var(--brand); }
.foot-inner p { margin: 0; }
.foot-links { margin: 4px 0 14px; }
.foot-note { max-width: 900px; }
.foot-copy { margin-top: 12px; }

@media (max-width: 900px) {
  .head-inner { height: auto; flex-wrap: wrap; padding-top: 14px; padding-bottom: 14px; gap: 14px; }
  .search { order: 3; flex-basis: 100%; max-width: none; margin-left: 0; }
  .head-icons { margin-left: auto; }
  .cat-tiles, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .cat-tile-img { height: 170px; }
}


/* ------------------------------------------------ category rail, with menus */

.catnav-inner { overflow: visible; }
.catnav-item { position: relative; }
.catnav-top { display: inline-flex; align-items: center; gap: 6px;
              font-weight: 600; font-size: .9rem; white-space: nowrap; line-height: 46px; }
.catnav-top.on, .catnav-top:hover { color: var(--brand); }
.catnav-top .caret { font-size: .7rem; color: var(--muted); }

/* Hover opens it, focus-within keeps it open for the keyboard. */
.catnav-menu {
  display: none; position: absolute; top: 100%; left: -14px; z-index: 50;
  min-width: 196px; padding: 8px 0; background: #fff;
  border: 1px solid var(--line); border-top: 0; box-shadow: var(--shadow);
}
.catnav-item:hover .catnav-menu, .catnav-item:focus-within .catnav-menu { display: block; }
.catnav-menu a { display: block; padding: 9px 20px; font-size: .88rem; font-weight: 600; }
.catnav-menu a:hover { background: var(--off); color: var(--brand); }

/* --------------------------------------------------------- policy documents */

.doc-page { max-width: 860px; }
.doc-page h2 { font-size: 1.1rem; margin: 26px 0 8px; }
.doc-page p { margin: 0 0 12px; color: var(--muted); }
.doc-page ul { margin: 0 0 14px; padding-left: 20px; color: var(--muted); }
.doc-page li { margin-bottom: 6px; }
.doc-page a { color: var(--brand); text-decoration: underline; }
.doc-foot { margin-top: 34px; padding-top: 16px; border-top: 1px solid var(--line); }

/* ------------------------------------------------------------ progress bars */

.prog { height: 8px; border-radius: 999px; background: var(--off); overflow: hidden; }
.prog-fill { height: 100%; width: 0; background: var(--brand); border-radius: 999px;
             transition: width .18s linear; }
.file-prog { height: 5px; margin-top: 6px; }
.prog-text { margin-top: 8px; }


/* ------------------------------------------------------------- mobile menu */

.burger { display: none; width: 42px; height: 42px; margin-left: -6px; padding: 0;
          align-items: center; justify-content: center; border: 0; border-radius: 8px;
          background: none; color: var(--ink); cursor: pointer; }
.burger:hover { background: var(--off); color: var(--brand); }

.menu-shade { position: fixed; inset: 0; z-index: 80; background: rgba(0, 21, 61, .45); }
.menu-panel { width: min(320px, 86vw); height: 100%; background: #fff;
              display: flex; flex-direction: column; box-shadow: 0 0 40px rgba(0, 21, 61, .25); }
.menu-head { display: flex; align-items: center; justify-content: space-between;
             padding: 16px 18px; border-bottom: 1px solid var(--line); }
.menu-title { font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
              font-size: .78rem; color: var(--muted); }
.menu-x { border: 0; background: none; color: var(--ink); cursor: pointer; padding: 4px; display: flex; }
.menu-x:hover { color: var(--brand); }
.menu-body { flex: 1; overflow-y: auto; padding: 8px 0 24px; }
.menu-group { padding: 8px 0; border-bottom: 1px solid var(--line); }
.menu-group:last-child { border-bottom: 0; }
.menu-cat { display: block; padding: 11px 20px; font-weight: 700; font-size: .98rem; }
.menu-cat.on, .menu-cat:hover { color: var(--brand); }
.menu-sub { display: block; padding: 8px 20px 8px 34px; font-size: .9rem; color: var(--muted); }
.menu-sub:hover { color: var(--brand); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .catnav { display: none; }
  .head-inner { flex-wrap: wrap; }
  .brand { margin-right: auto; }
}

/* ---------------------------------------------------------- below-MOQ flag */

.warn {
  background: #FFF8E1; border: 1px solid #F2D680; color: #6B4E00;
  border-radius: var(--radius); padding: 12px 14px; font-size: .88rem; line-height: 1.5;
}
.warn strong { color: #5A4200; }
.warn a { color: #5A4200; text-decoration: underline; }
.tag-warn { background: #FFF1C2; color: #6B4E00; border-radius: 999px;
            padding: 2px 9px; font-size: .72rem; font-weight: 800; display: inline-block; }


/* No price to show. The markup mirrors a priced card exactly and the text is
   blank, so this must NOT restyle anything — any font-size of its own would
   change the reserved height and leave the grid rows uneven. */
.card-price-poa { visibility: hidden; }
.poa-panel {
  border: 1px solid var(--line); border-left: 3px solid var(--brand);
  border-radius: var(--radius); padding: 16px 18px; margin: 4px 0 8px;
}
.poa-panel strong { display: block; font-size: 1.15rem; margin-bottom: 4px; }
