/* marqueeSupply. — shared styles (adapted from printSupply architecture, 2026-08-03)
   Light theme like the rest of the Supply family sites. Deep navy #1d3557 + amber #f4a300 = marqueeSupply brand. */
:root {
  --cyan: #1d3557;
  --amber: #f4a300;
  --cyan-dark: #10233c;
  --green: #b45309;
  --ink: #1d2b2f;
  --muted: #5b6b70;
  --line: #e3e9eb;
  --wash: #f4f8fa;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: #fff;
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 20px; }

/* Header */
header.site { border-bottom: 1px solid var(--line); background: #fff; position: sticky; top: 0; z-index: 20; }
header.site .wrap { display: flex; align-items: center; justify-content: flex-start; gap: 22px; height: 64px; }
header.site img.logo { height: 30px; display: block; }
header.site .brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }
header.site img.logo-drop { height: 28px; display: block; }

/* USP bar (Tommy 2026-07-23 FINAL: black strip above the header on EVERY page, home style
   with the emoji icons — he tried the old util ticks look and reverted, "I like the icons") */
.uspbar { background: var(--ink); color: #fff; font-size: 13.5px; font-weight: 600; }
.uspbar .wrap { display: flex; justify-content: center; gap: 12px 38px; flex-wrap: wrap; padding-top: 8px; padding-bottom: 8px; }
.uspbar span b { color: #7fd4f5; }

/* Header search + right cluster (Tommy 2026-07-23: slim header, big centred search, My account + cart only) */
.hd-search { position: relative; flex: 1 1 auto; max-width: 680px; margin: 0 auto; }
.hd-search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 15px; height: 15px;
  color: var(--muted); pointer-events: none; }
.hd-search input { width: 100%; box-sizing: border-box; padding: 9px 14px 9px 34px; border: 1px solid var(--line);
  border-radius: 999px; background: var(--wash); font: inherit; font-size: 14px; color: var(--ink); outline: none; }
.hd-search input:focus { border-color: var(--cyan); background: #fff; }
.hd-search input::placeholder { color: var(--muted); }
.hd-sr { position: absolute; top: calc(100% + 8px); left: 0; right: 0; min-width: 260px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 18px 40px rgba(29,43,47,.14);
  padding: 6px; display: none; z-index: 45; }
.hd-sr.open { display: block; }
.hd-sr a { display: block; padding: 8px 10px; border-radius: 8px; text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: 14px; }
.hd-sr a small { display: block; font-weight: 500; font-size: 11.5px; color: var(--muted); }
.hd-sr a:hover, .hd-sr a.sel { background: var(--wash); }
.hd-sr .none { padding: 8px 10px; font-size: 13px; color: var(--muted); }
.hd-sr .none a { display: inline; padding: 0; color: var(--cyan); }
.hd-right { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.hd-right a.cta { background: var(--cyan); color: #fff; font-weight: 600; font-size: 15px; text-decoration: none;
  padding: 9px 18px; border-radius: 999px; white-space: nowrap; }
.hd-right a.cta:hover { background: var(--cyan-dark); }
.hd-right a.hd-acct { color: var(--ink); font-weight: 600; font-size: 15px; text-decoration: none; white-space: nowrap; }
.hd-right a.hd-acct:hover { color: var(--cyan); }

/* Hero */
.hero { background: linear-gradient(180deg, var(--wash), #fff); padding: 56px 0 48px; }
.hero h1 { font-size: clamp(28px, 4.5vw, 44px); line-height: 1.15; margin: 0 0 14px; letter-spacing: -0.5px; }
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero p.sub { font-size: 18px; color: var(--muted); max-width: 620px; margin: 0 0 24px; }
.btn { display: inline-block; background: var(--cyan); color: #fff; font-weight: 700; text-decoration: none;
       padding: 13px 28px; border-radius: 999px; border: 0; font-size: 16px; cursor: pointer; }
.btn:hover { background: var(--cyan-dark); }
.btn.ghost { background: #fff; color: var(--cyan); border: 2px solid var(--cyan); }
.btn.ghost:hover { background: var(--wash); }

/* Sections */
section { padding: 44px 0; }
section.alt { background: var(--wash); }
h2 { font-size: clamp(22px, 3vw, 30px); margin: 0 0 8px; letter-spacing: -0.3px; }
p.lead { color: var(--muted); margin: 0 0 26px; max-width: 640px; }
.grid { display: grid; gap: 18px; }
.grid.c3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid.c4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.card h3 { margin: 0 0 6px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; }
.card .from { color: var(--green); font-weight: 800; font-size: 15px; margin-top: 10px; }
.tick { color: var(--green); font-weight: 700; margin-right: 6px; }

/* Pricing table */
table.price { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line);
              border-radius: 14px; overflow: hidden; font-size: 15px; }
table.price th, table.price td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
table.price th { background: var(--green); color: #fff; font-size: 13.5px; letter-spacing: 0.3px; }
table.price tr:last-child td { border-bottom: 0; }
table.price td.from { color: var(--green); font-weight: 700; white-space: nowrap; }
.price-note { font-size: 13px; color: var(--muted); margin-top: 10px; }

/* Steps */
.steps { counter-reset: s; }
.steps .card { position: relative; padding-top: 26px; }
.steps .card::before { counter-increment: s; content: counter(s);
  position: absolute; top: -16px; left: 18px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--cyan); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }

/* Quote form */
form.quote { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px;
             box-shadow: 0 8px 30px rgba(29, 43, 47, 0.06); }
form.quote .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form.quote label { display: block; font-size: 13px; font-weight: 700; margin: 12px 0 4px; }
form.quote input, form.quote select, form.quote textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 9px;
  font: inherit; font-size: 15px; color: var(--ink); background: #fff;
}
form.quote input:focus, form.quote select:focus, form.quote textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(29, 53, 87, 0.15);
}
form.quote button { margin-top: 18px; width: 100%; }
form.quote .fine { font-size: 12.5px; color: var(--muted); margin-top: 10px; text-align: center; }
.form-ok { background: #eef7ee; border: 1px solid #bcd9bc; color: var(--green); border-radius: 12px;
           padding: 22px; text-align: center; font-weight: 600; display: none; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; } /* honeypot */

/* FAQ */
details { border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; margin-bottom: 10px; background: #fff; }
details summary { font-weight: 700; cursor: pointer; }
details p { color: var(--muted); margin: 10px 0 0; }

/* Trust strip */
.trust { display: flex; flex-wrap: wrap; gap: 10px 26px; color: var(--muted); font-size: 14px; font-weight: 600; }

/* Footer */
footer.site { border-top: 1px solid var(--line); padding: 30px 0 40px; color: var(--muted); font-size: 14px; }
footer.site a { color: var(--muted); }

/* Landing (ads) variant */
body.landing header.site .wrap { justify-content: center; }
body.landing .hero { padding: 34px 0 30px; }
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: start; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  form.quote .row { grid-template-columns: 1fr; }
}

/* Product page (Tommy 2026-07-22) — easysigns-style buy layout on /notepads/ */
.crumbs { font-size: 13px; color: var(--muted); padding: 14px 0 0; margin: 0; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--cyan); }
.prod { display: grid; grid-template-columns: 1.05fr 1fr; gap: 36px; align-items: start; padding: 14px 0 8px; }
.gal-main { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--wash); }
.gal-main .gal-slide svg, .gal-main .gal-slide img { display: block; width: 100%; height: auto; }
.gal-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.gal-thumb { border: 2px solid var(--line); border-radius: 10px; overflow: hidden; cursor: pointer;
  background: var(--wash); padding: 0; }
.gal-thumb.on { border-color: var(--cyan); }
.gal-thumb svg, .gal-thumb img { display: block; width: 100%; height: auto; pointer-events: none; }
.badge-from { display: inline-block; background: var(--green); color: #fff; font-weight: 800;
  font-size: 14px; padding: 6px 14px; border-radius: 999px; }
.cfg { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
.cfg label { font-size: 13px; font-weight: 700; display: block; }
.cfg select { width: 100%; margin-top: 4px; padding: 10px 11px; font: inherit; font-size: 15px;
  border: 1px solid var(--line); border-radius: 9px; background: #fff; color: var(--ink); }
.cfg select:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(29, 53, 87, 0.15); }
.price-panel { margin-top: 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
  padding: 14px 16px; font-size: 14.5px; }
.price-panel .pl { display: flex; justify-content: space-between; padding: 3px 0; color: var(--muted); }
.price-panel .pl.big { color: var(--ink); font-weight: 800; font-size: 18px;
  border-top: 1px solid var(--line); margin-top: 6px; padding-top: 9px; }
.price-panel .pl.big span:last-child { color: var(--green); }
.buy-ctas { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.ord-note { font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.opt { display: grid; gap: 8px; margin: 8px 0 4px; }
.opt label { display: flex; gap: 10px; align-items: flex-start; border: 1px solid var(--line);
  border-radius: 10px; padding: 11px 12px; cursor: pointer; font-size: 14px; font-weight: 600; background: #fff; margin: 0; }
.opt input { margin-top: 3px; width: auto; }
.opt small { display: block; font-weight: 500; color: var(--muted); }
.ord-summary { background: var(--wash); border: 1px dashed var(--line); border-radius: 10px;
  padding: 11px 13px; font-size: 14px; font-weight: 600; margin: 0 0 10px; }
table.specs { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden; font-size: 14.5px; max-width: 860px; }
table.specs th, table.specs td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.specs th { width: 200px; background: var(--wash); font-size: 13px; }
table.specs tr:last-child th, table.specs tr:last-child td { border-bottom: 0; }
.preset-card .btn { padding: 9px 18px; font-size: 14px; margin-top: 10px; }
@media (max-width: 860px) { .prod { grid-template-columns: 1fr; } }

/* Live pricing picker (Tommy 2026-07-22) — /notepads/ #pricing table controls */
.price-pick { display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
  margin: 18px 0 14px; font-size: 14px; font-weight: 600; color: var(--muted); }
.price-pick select { margin-left: 6px; padding: 8px 10px; font-size: 14px;
  border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); }

/* Gold Coast local block (SEO localisation, Tommy 2026-07-23) */
.gcblock { margin: 46px auto 54px; padding: 26px 28px; background: #f4f9fb; border: 1px solid #dcebf1; border-radius: 14px; }
.gcblock h2 { margin: 0 0 10px; font-size: 22px; }
.gcblock p { margin: 0 0 10px; color: #445; line-height: 1.55; }
.gcblock a { color: var(--cyan); font-weight: 700; text-decoration: none; }
