/* ============================================================
   A4 APPAREL — SHARED STYLESHEET
   ============================================================ */

/* ============================================================
   BASE & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1a2332;
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:        #1e3a5f;
  --navy-dark:   #152b47;
  --navy-mid:    #2a4a72;
  --orange:      #f47b20;
  --orange-dark: #d96a10;
  --green:       #16a34a;
  --white:       #fff;
  --off:         #f7f8fa;
  --border:      #e8eaed;
  --text:        #1a2332;
  --muted:       #6b7280;
  --r:           8px;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--navy-dark);
  color: #cdd5df;
  font-size: 13px;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar strong { color: #fff; }
.topbar a { color: #cdd5df; }
.topbar a:hover { color: #fff; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 24px;
  height: 68px;
  gap: 0;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: 32px;
  flex-shrink: 0;
  cursor: pointer;
}
.logo-sq {
  background: var(--orange);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.logo-text { line-height: 1.1; }
.logo-text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: .5px;
}
.logo-text span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  flex-wrap: wrap;
}
.nav-links a,
.nav-dd > a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--r);
  transition: background .15s, color .15s;
  white-space: nowrap;
  cursor: pointer;
}
.nav-links a:hover,
.nav-dd > a:hover,
.nav-links a.active,
.nav-dd > a.active { background: var(--off); color: var(--navy); }
.nav-dd { position: relative; }
.nav-dd > a::after { content: '▾'; margin-left: 4px; font-size: 10px; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  min-width: 180px;
  z-index: 300;
  padding: 6px;
}
.nav-dd:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 8px 14px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
}
.dropdown a:hover,
.dropdown a.active { background: var(--off); color: var(--orange); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.btn-account {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
.btn-account:hover { background: var(--off); }
.btn-quote-nav {
  background: var(--orange);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-quote-nav:hover { background: var(--orange-dark); }
.nav-tag { font-size: 13px; color: var(--muted); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}
.trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.tck {
  width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tck svg { width: 10px; height: 10px; stroke: #fff; stroke-width: 2.5; fill: none; }

/* ============================================================
   PAGE HEADER (inner pages — navy banner)
   ============================================================ */
.page-hdr {
  background: var(--navy);
  padding: 44px 24px;
  color: #fff;
}
.page-hdr-inner { max-width: 1240px; margin: 0 auto; }
.breadcrumb {
  font-size: 13px;
  color: #7a99be;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: #7a99be; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .5; }
.page-hdr h1 { font-size: 30px; font-weight: 800; margin-bottom: 6px; }
.page-hdr p { color: #7a99be; font-size: 15px; max-width: 600px; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 72px;
}
.inner { max-width: 1240px; margin: 0 auto; }
section { padding: 72px 24px; }
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-head h2,
h2.sec-h {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
  margin-bottom: 8px;
}
.sec-head p,
.sec-sub { color: var(--muted); font-size: 15px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-orange {
  background: var(--orange);
  color: #fff;
  padding: 13px 26px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s;
  text-decoration: none;
}
.btn-orange:hover { background: var(--orange-dark); }
.btn-navy {
  background: var(--navy);
  color: #fff;
  padding: 13px 26px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s;
  text-decoration: none;
}
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline {
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 12px 24px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .15s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-ghost {
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .15s;
  background: none;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { border-color: #fff; }

/* Hero buttons (index.html style) */
.btn-hero-main {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .15s, transform .1s;
  display: inline-block;
}
.btn-hero-main:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-hero-ghost {
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: border-color .15s;
  display: inline-block;
}
.btn-hero-ghost:hover { border-color: #fff; }

/* ============================================================
   CARD BASE
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
}
.card-title { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.card-sub { font-size: 13px; color: var(--muted); margin-bottom: 22px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--navy);
  padding: 72px 24px;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.cta-band p { color: #7a99be; font-size: 16px; margin-bottom: 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-dark);
  color: #7a99be;
  padding: 56px 24px 24px;
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo-block { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 14px; }
.footer-contact { font-size: 13px; }
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #9db5cc;
}
footer h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a {
  color: #7a99be;
  text-decoration: none;
  font-size: 14px;
  transition: color .15s;
  cursor: pointer;
}
footer ul li a:hover { color: #fff; }
.footer-bottom {
  max-width: 1240px;
  margin: 40px auto 0;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: #7a99be; text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: #fff; }

/* ============================================================
   HOME PAGE — HERO
   ============================================================ */
.hero {
  background: linear-gradient(110deg, var(--navy) 55%, #2d5a8e 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero-left {
  flex: 1;
  padding: 64px 48px 64px 64px;
  max-width: 620px;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #e0eaf8;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  letter-spacing: .04em;
}
.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub { color: #aabfd4; font-size: 16px; margin-bottom: 32px; max-width: 420px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-price-badge {
  background: #fff;
  color: var(--text);
  border-radius: var(--r);
  padding: 12px 18px;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.hero-price-badge strong { display: block; font-size: 22px; font-weight: 800; color: var(--navy); }
.hero-price-badge span { font-size: 12px; color: var(--muted); }
.hero-right {
  width: 420px;
  flex-shrink: 0;
  position: relative;
  align-self: stretch;
  overflow: hidden;
}
.hero-img-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 24px;
  align-content: center;
}
.hero-img-grid .img-card,
.h-img {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
}
.exp-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--r);
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  z-index: 3;
}
.exp-badge span { display: block; font-size: 11px; font-weight: 500; opacity: .9; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding: 20px 64px;
  background: rgba(0,0,0,.15);
  flex-wrap: wrap;
}
.hero-stat strong { display: block; font-size: 22px; font-weight: 800; color: #fff; }
.hero-stat span { font-size: 12px; color: #7a99be; }

/* Home — Products grid */
.prod-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.prod-card-home {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .2s, transform .15s;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
}
.prod-card-home:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-2px); }
.pc-img { height: 180px; position: relative; }
.pc-price {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.pc-body { padding: 16px; flex: 1; }
.pc-brand { font-size: 10px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.pc-body h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.pc-body p { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.pc-link { color: var(--orange); font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 4px; margin-top: auto; }

/* Home — Services grid */
.serv-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.serv-card-home {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  cursor: pointer;
  transition: box-shadow .15s;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.serv-card-home:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.sci {
  width: 44px;
  height: 44px;
  background: #fff5ed;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.sci svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.serv-card-home h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.serv-card-home p { font-size: 12px; color: var(--muted); }

/* Home — How to order steps */
.how-section { background: var(--navy); }
.how-section .sec-head h2 { color: #fff; }
.how-section .sec-head p { color: #7a99be; }
.how-steps-row {
  display: flex;
  gap: 0;
  position: relative;
  margin-bottom: 40px;
}
.how-steps-row::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--orange);
  opacity: .3;
}
.how-box { flex: 1; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.how-icon-wrap { position: relative; display: inline-block; margin-bottom: 14px; }
.how-icon-bg {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-icon-bg svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.5; }
.how-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-box h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.how-box p { font-size: 12px; color: #7a99be; }
.how-cta { text-align: center; margin-top: 40px; }

/* Home — Why us */
.why-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-card-home {
  background: var(--off);
  border-radius: 12px;
  padding: 24px;
}
.why-icon { font-size: 26px; margin-bottom: 10px; }
.why-card-home h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.why-card-home p { font-size: 13px; color: var(--muted); }

/* Home — Reviews strip */
.rev-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rev-card-home {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}
.rev-q { font-size: 28px; color: var(--orange); opacity: .25; line-height: .8; margin-bottom: 6px; }
.rev-stars { color: var(--orange); font-size: 15px; margin-bottom: 10px; }

/* Home — Sectors */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.sector-pill {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  transition: all .15s;
}
.sector-pill:hover { border-color: var(--orange); background: #fff8f2; }
.sector-pill .sico { font-size: 22px; margin-bottom: 6px; }
.sector-pill p { font-size: 12px; font-weight: 600; color: var(--navy); }

/* Home — View-all link */
.view-all { text-align: center; margin-top: 36px; }
.view-all a { color: var(--navy); font-weight: 600; text-decoration: none; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.view-all a:hover { color: var(--orange); }
.view-all a::after { content: '→'; }

/* Placeholder shirt colours */
.placeholder-shirt { display: flex; align-items: center; justify-content: center; height: 100%; background: linear-gradient(135deg, #dde4ec, #c8d2df); }
.placeholder-shirt.orange { background: linear-gradient(135deg, #f5c999, #e89340); }
.placeholder-shirt.red { background: linear-gradient(135deg, #f5b3b3, #d45a5a); }
.placeholder-shirt.navy { background: linear-gradient(135deg, #8ea8c4, #3a6288); }
.placeholder-shirt.green { background: linear-gradient(135deg, #aed6b4, #5a9e68); }
.placeholder-shirt.yellow { background: linear-gradient(135deg, #f5e199, #d4aa3e); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.serv-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 56px; }
.serv-hero-text h2 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.serv-hero-text p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.serv-img-block {
  border-radius: 14px;
  overflow: hidden;
  height: 320px;
  background: linear-gradient(135deg, #2a4a72, #1e3a5f);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.serv-img-block svg { width: 80px; height: 80px; stroke: rgba(255,255,255,.2); fill: none; stroke-width: 1; }
.serv-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--orange);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 700;
}
.serv-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
}
.serv-full-card.reverse { direction: rtl; }
.serv-full-card.reverse > * { direction: ltr; }
.serv-img-side { height: 300px; background: linear-gradient(135deg, #2a4a72, #1e3a5f); }
.serv-content { padding: 36px; }
.serv-tag {
  display: inline-block;
  background: #fff5ed;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.serv-content h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.serv-content p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.benefit-list { list-style: none; margin-bottom: 20px; }
.benefit-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); padding: 4px 0; }
.benefit-list li::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; }

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.rating-hero {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.rating-big { text-align: center; flex-shrink: 0; }
.rating-big .score { font-size: 64px; font-weight: 800; color: var(--navy); line-height: 1; }
.rating-big .stars-big { color: var(--orange); font-size: 28px; margin: 4px 0; }
.rating-big p { font-size: 13px; color: var(--muted); }
.rating-bars { flex: 1; min-width: 240px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.rating-bar-row span { font-size: 13px; font-weight: 600; color: var(--navy); width: 14px; text-align: right; flex-shrink: 0; }
.bar-track { flex: 1; height: 8px; background: var(--off); border-radius: 100px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 100px; background: var(--orange); }
.bar-count { font-size: 12px; color: var(--muted); width: 28px; flex-shrink: 0; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rev-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.rev-name { font-weight: 700; font-size: 13px; }
.rev-org { font-size: 12px; color: var(--muted); }
.rev-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.rev-filter-btn {
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  color: var(--text);
}
.rev-filter-btn:hover,
.rev-filter-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ============================================================
   HOW TO ORDER PAGE
   ============================================================ */
.how-hero {
  background: var(--navy);
  border-radius: 14px;
  padding: 48px;
  margin-bottom: 32px;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.how-hero-text { flex: 1; min-width: 240px; }
.how-hero-text h2 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.how-hero-text p { color: #7a99be; font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.how-steps-full { counter-reset: step; display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.how-step:last-child { border: none; }
.how-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-step-body h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.how-step-body p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
.how-step-tip {
  background: #fff5ed;
  border: 1px solid #fdd5b0;
  border-radius: var(--r);
  padding: 10px 14px;
  font-size: 13px;
  color: #92400e;
  display: inline-block;
}
.how-step-tip strong { color: var(--orange); }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background .15s;
}
.faq-q:hover { background: var(--off); }
.faq-q .arr { font-size: 18px; color: var(--muted); transition: transform .2s; line-height: 1; }
.faq-q.open .arr { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 14px; color: var(--muted); line-height: 1.7; background: #fff; }
.faq-a.open { display: block; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 32px; align-items: start; }
.contact-info h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: #fff5ed;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.contact-detail h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-detail p,
.contact-detail a { font-size: 14px; color: var(--muted); }
.contact-detail a { color: var(--orange); }
.map-block {
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, #c8d8e8, #a0b8cc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border: 1px solid var(--border);
  position: relative;
}
.map-pin { font-size: 40px; }
.map-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #fff;
  border-radius: var(--r);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}
.contact-form-card h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.contact-form-card .sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 13px; font-weight: 600; color: var(--navy); }
.fg input,
.fg textarea,
.fg select {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s;
  background: #fff;
  color: var(--text);
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus { border-color: var(--orange); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--r);
  padding: 16px 20px;
  font-size: 14px;
  color: #166534;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.form-success.show { display: flex; }

/* ============================================================
   DESIGN GUIDE PAGE
   ============================================================ */
.guide-toc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 28px;
}
.guide-toc h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.toc-list { display: flex; gap: 10px; flex-wrap: wrap; }
.toc-item {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all .15s;
}
.toc-item:hover,
.toc-item.active { background: var(--orange); color: #fff; border-color: var(--orange); }
.guide-section { background: #fff; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 20px; overflow: hidden; }
.guide-sec-head { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.guide-sec-icon {
  width: 36px;
  height: 36px;
  background: #fff5ed;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guide-sec-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.guide-sec-head h3 { font-size: 16px; font-weight: 800; color: var(--navy); }
.guide-sec-body { padding: 24px; }
.guide-sec-body p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.format-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.format-card { border: 1px solid var(--border); border-radius: var(--r); padding: 16px; text-align: center; }
.format-card .ext { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.format-card p { font-size: 12px; color: var(--muted); }
.format-card.good { border-color: var(--green); background: #f0fdf4; }
.format-card.good .ext { color: var(--green); }
.format-card.ok { border-color: var(--orange); background: #fff8f2; }
.format-card.ok .ext { color: var(--orange); }
.colour-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.colour-mode { border: 1px solid var(--border); border-radius: var(--r); padding: 16px; }
.colour-mode h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.colour-mode p { font-size: 13px; color: var(--muted); }
.colour-mode.good { border-color: var(--green); background: #f0fdf4; }
.colour-mode.bad { border-color: #fca5a5; background: #fef2f2; }
.colour-mode.bad h4 { color: #b91c1c; }

/* Spec table (design guide & product detail) */
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.spec-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 10px 14px;
  background: var(--off);
  border-bottom: 1px solid var(--border);
}
.spec-table td { padding: 10px 14px; font-size: 14px; border-bottom: 1px solid var(--border); }
.spec-table tr:last-child td { border: none; }
.spec-table td:first-child { font-weight: 600; color: var(--navy); background: var(--off); }

/* ============================================================
   PRODUCTS LISTING PAGE
   ============================================================ */
.page-body {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.sidebar {
  width: 260px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  position: sticky;
  top: 96px;
}
.sidebar-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar-header h3 { font-size: 15px; font-weight: 700; color: var(--navy); }
.clear-btn {
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .15s;
}
.clear-btn:hover { background: var(--off); color: var(--text); }
.filter-section { padding: 16px 20px; border-bottom: 1px solid var(--border); }
.filter-section:last-child { border-bottom: none; }
.filter-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.filter-option { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; cursor: pointer; }
.filter-option input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--orange); cursor: pointer; flex-shrink: 0; }
.filter-option label { font-size: 13px; color: var(--text); cursor: pointer; flex: 1; display: flex; justify-content: space-between; }
.filter-option label .count { color: var(--muted); font-size: 12px; }
.price-display { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-bottom: 10px; }
input[type=range] { width: 100%; accent-color: var(--orange); cursor: pointer; }
.main-content { flex: 1; min-width: 0; }
.results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; flex-wrap: wrap; gap: 10px; }
.results-count { font-size: 14px; color: var(--muted); }
.results-count strong { color: var(--text); }
.sort-select {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  outline: none;
}
.sort-select:focus { border-color: var(--orange); }
.active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.filter-tag {
  background: #fff5ed;
  color: var(--orange);
  border: 1px solid #fdd5b0;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-tag button { background: none; border: none; color: var(--orange); cursor: pointer; font-size: 14px; line-height: 1; padding: 0; }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.prod-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow .2s, transform .15s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.prod-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-2px); }
.prod-img { height: 190px; position: relative; overflow: hidden; }
.price-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.featured-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.prod-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.prod-brand { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.prod-body h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.decor-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px; }
.decor-tag { background: var(--off); border: 1px solid var(--border); font-size: 11px; color: var(--muted); padding: 2px 8px; border-radius: 100px; font-weight: 500; }
.colour-dots { display: flex; gap: 5px; align-items: center; margin-top: auto; }
.dot { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,.1); flex-shrink: 0; }
.dot-more { font-size: 11px; color: var(--muted); font-weight: 600; }

/* Swatch colour helpers */
.c-white  { background: #fff; border-color: #ccc; }
.c-black  { background: #111; }
.c-navy   { background: #1e3a5f; }
.c-red    { background: #d45a5a; }
.c-pink   { background: #e87db8; }
.c-grey   { background: #8a9ab0; }
.c-blue   { background: #3a7ad4; }
.c-yellow { background: #f5c63a; }
.c-green  { background: #4a9e5a; }
.c-orange { background: #f47b20; }
.c-purple { background: #7a4ab4; }
.c-brown  { background: #8B5e3c; }
.c-sky    { background: #5bb8d4; }

/* Product image gradients */
.img-white  { background: linear-gradient(135deg, #e8ecf0, #d0d8e0); }
.img-black  { background: linear-gradient(135deg, #2a2a2a, #111); }
.img-navy   { background: linear-gradient(135deg, #3a6288, #1e3a5f); }
.img-red    { background: linear-gradient(135deg, #e87878, #c04040); }
.img-orange { background: linear-gradient(135deg, #f5c080, #e08830); }
.img-grey   { background: linear-gradient(135deg, #b0bec5, #7a8fa0); }
.img-green  { background: linear-gradient(135deg, #7bcc8a, #3a8a4a); }
.img-yellow { background: linear-gradient(135deg, #f5e080, #d4b030); }
.img-sky    { background: linear-gradient(135deg, #7ad0e8, #3a9ab8); }
.img-purple { background: linear-gradient(135deg, #b07ad4, #7a40a8); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 32px; }
.page-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  color: var(--text);
}
.page-btn:hover,
.page-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); }
.page-btn.dots { cursor: default; border: none; background: none; }
.filter-toggle {
  display: none;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.page-wrap { max-width: 1240px; margin: 0 auto; padding: 24px 24px 64px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color .15s;
}
.back-link:hover { color: var(--navy); }
.back-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.main-img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
}
.main-img-bg { width: 100%; height: 100%; transition: background .3s; }
.thumb-row { display: flex; gap: 10px; }
.thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--r);
  border: 2px solid var(--border);
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color .15s;
}
.thumb:hover, .thumb.active { border-color: var(--orange); }
.thumb-bg { width: 100%; height: 100%; }
.prod-brand-tag { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.product-info h1 { font-size: 26px; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.price-block { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.price-main { font-size: 32px; font-weight: 800; color: var(--orange); }
.price-unit { font-size: 14px; color: var(--muted); }
.price-note { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.option-label { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 10px; display: flex; justify-content: space-between; }
.option-label a { color: var(--orange); font-weight: 500; font-size: 12px; text-decoration: none; }
.option-label a:hover { text-decoration: underline; }
.colour-grid { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform .15s, border-color .15s;
  position: relative;
}
.swatch:hover { transform: scale(1.15); }
.swatch.active { border-color: var(--orange) !important; }
.swatch-white  { background: #fff; border-color: #ccc !important; }
.swatch-black  { background: #111; }
.swatch-navy   { background: #1e3a5f; }
.swatch-red    { background: #d45a5a; }
.swatch-pink   { background: #e87db8; }
.swatch-grey   { background: #8a9ab0; }
.swatch-blue   { background: #3a7ad4; }
.swatch-charcoal { background: #4a5568; }
.colour-name { font-size: 13px; color: var(--muted); margin-bottom: 16px; min-height: 18px; }
.size-grid { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.size-btn {
  min-width: 48px;
  height: 40px;
  padding: 0 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all .15s;
}
.size-btn:hover { border-color: var(--orange); color: var(--orange); }
.size-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.size-btn.out { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.decor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.decor-option {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
  cursor: pointer;
  transition: all .15s;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
}
.decor-option:hover { border-color: var(--orange); }
.decor-option.active { border-color: var(--orange); background: #fff8f2; }
.decor-icon { width: 32px; height: 32px; background: #fff5ed; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.decor-icon svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.decor-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.decor-text span { font-size: 11px; color: var(--muted); }
.cta-row { display: flex; gap: 12px; margin-top: 4px; }
.btn-primary {
  flex: 1;
  background: var(--orange);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.trust-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 100px;
}
.trust-pill svg { width: 13px; height: 13px; stroke: var(--orange); fill: none; stroke-width: 2; }
.tabs-section { margin-top: 48px; }
.tab-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 28px; }
.tab-btn {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .15s;
}
.tab-btn.active { color: var(--navy); border-bottom-color: var(--orange); }
.tab-btn:hover { color: var(--navy); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.benefits-list { list-style: none; }
.benefits-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.benefits-list li:last-child { border: none; }
.benefit-check { width: 20px; height: 20px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.benefit-check svg { width: 10px; height: 10px; stroke: #fff; stroke-width: 3; fill: none; }
.related-section { margin-top: 56px; }
.related-section h2 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rel-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow .15s, transform .15s;
}
.rel-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.09); transform: translateY(-2px); }
.rel-img { height: 140px; }
.rel-body { padding: 12px 14px; }
.rel-brand { font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.rel-body h3 { font-size: 13px; font-weight: 700; color: var(--navy); margin: 3px 0 6px; }
.rel-price { font-size: 13px; font-weight: 700; color: var(--orange); }

/* ============================================================
   QUOTE BUILDER PAGE
   ============================================================ */
.page-header {
  background: var(--navy);
  padding: 36px 24px;
  text-align: center;
  color: #fff;
}
.page-header h1 { font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.page-header p { color: #7a99be; font-size: 15px; }
.progress-wrap { background: #fff; border-bottom: 1px solid var(--border); padding: 0 24px; }
.progress-inner { max-width: 860px; margin: 0 auto; display: flex; align-items: stretch; }
.prog-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 8px;
  position: relative;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: border-color .2s;
}
.prog-step.active { border-bottom-color: var(--orange); }
.prog-step.done { border-bottom-color: var(--green); }
.prog-step::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 40%; background: var(--border); }
.prog-step:last-child::after { display: none; }
.prog-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
  transition: all .2s;
  background: var(--off);
  color: var(--muted);
  border: 2px solid var(--border);
}
.prog-step.active .prog-num { background: var(--orange); color: #fff; border-color: var(--orange); }
.prog-step.done .prog-num { background: var(--green); color: #fff; border-color: var(--green); }
.prog-step span { font-size: 12px; font-weight: 600; color: var(--muted); }
.prog-step.active span { color: var(--navy); }
.prog-step.done span { color: var(--green); }
.main-wrap { max-width: 860px; margin: 32px auto; padding: 0 24px 64px; }
.step-panel { display: none; }
.step-panel.active { display: block; }
.search-row { display: flex; gap: 10px; margin-bottom: 16px; }
.search-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
  transition: border-color .15s;
}
.search-input:focus { border-color: var(--orange); }
.cat-select {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
  background: #fff;
  cursor: pointer;
  color: var(--text);
}
.cat-select:focus { border-color: var(--orange); }
.pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pick-card {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  transition: all .15s;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.pick-card:hover { border-color: var(--orange); box-shadow: 0 4px 12px rgba(244,123,32,.15); }
.pick-card.selected { border-color: var(--orange); background: #fff8f2; }
.pick-card.selected::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pick-img { height: 110px; }
.pick-body { padding: 10px 12px; }
.pick-brand { font-size: 10px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.pick-body h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin: 2px 0 4px; line-height: 1.3; }
.pick-price { font-size: 13px; font-weight: 700; color: var(--orange); }
.qty-table { width: 100%; border-collapse: collapse; }
.qty-table th { text-align: left; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; padding: 8px 12px; background: var(--off); border-bottom: 1px solid var(--border); }
.qty-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); font-size: 14px; }
.qty-table tr:last-child td { border: none; }
.qty-input {
  width: 80px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  outline: none;
  transition: border-color .15s;
}
.qty-input:focus { border-color: var(--orange); }
.qty-total { font-weight: 700; color: var(--navy); }
.qty-summary { display: flex; justify-content: space-between; align-items: center; padding: 14px 0 0; margin-top: 4px; border-top: 2px solid var(--border); }
.qty-summary strong { font-size: 16px; color: var(--navy); }
.qty-summary .qty-count { font-size: 24px; font-weight: 800; color: var(--orange); }
.colour-pick { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.col-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform .15s, border-color .15s;
  position: relative;
}
.col-swatch:hover { transform: scale(1.15); }
.col-swatch.active { border-color: var(--orange) !important; }
.col-swatch.white-sw { background: #fff; border-color: #ccc !important; }
.col-name { font-size: 13px; color: var(--muted); min-height: 18px; margin-bottom: 16px; }
.decor-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.decor-tile {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  transition: all .15s;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.decor-tile:hover { border-color: var(--orange); }
.decor-tile.active { border-color: var(--orange); background: #fff8f2; }
.decor-tile-icon { width: 40px; height: 40px; background: #fff5ed; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.decor-tile-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.decor-tile h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.decor-tile p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.placement-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.place-btn {
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: var(--r);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all .15s;
}
.place-btn:hover { border-color: var(--orange); color: var(--orange); }
.place-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all .15s;
  background: var(--off);
}
.upload-zone:hover { border-color: var(--orange); background: #fff8f2; }
.upload-zone svg { width: 36px; height: 36px; stroke: var(--muted); fill: none; stroke-width: 1.5; margin-bottom: 10px; }
.upload-zone p { font-size: 14px; color: var(--muted); margin-bottom: 6px; }
.upload-zone span { font-size: 12px; color: #aaa; }
.upload-btn-inner {
  background: var(--orange);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  margin-top: 12px;
  cursor: pointer;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s;
  background: #fff;
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 90px; }
.summary-bar { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 22px; margin-bottom: 20px; }
.summary-bar h3 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; color: var(--text); }
.summary-row span:last-child { font-weight: 600; color: var(--navy); }
.summary-empty { font-size: 13px; color: var(--muted); font-style: italic; }
.step-btns { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.btn-back {
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 12px 24px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-back:hover { border-color: var(--navy); color: var(--navy); }
.btn-next {
  background: var(--orange);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .15s;
}
.btn-next:hover { background: var(--orange-dark); }
.btn-next svg, .btn-back svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.success-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.success-icon { width: 72px; height: 72px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-icon svg { width: 36px; height: 36px; stroke: var(--green); fill: none; stroke-width: 2.5; }
.success-card h2 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.success-card p { font-size: 15px; color: var(--muted); margin-bottom: 24px; line-height: 1.7; }
.success-ref { background: var(--off); border-radius: var(--r); padding: 12px 20px; font-size: 14px; color: var(--text); display: inline-block; margin-bottom: 24px; border: 1px solid var(--border); }
.success-ref strong { color: var(--orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .prod-grid-home,
  .serv-grid-home,
  .grid-3,
  .rev-grid,
  .rev-grid-home,
  .why-grid-home { grid-template-columns: 1fr 1fr; }
  .grid-4,
  .format-grid { grid-template-columns: 1fr 1fr; }
  .serv-full-card,
  .contact-layout,
  .serv-hero-grid { grid-template-columns: 1fr; }
  .serv-full-card.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { flex-direction: column; }
  .hero-right { width: 100%; height: 240px; }
  .hero-left { padding: 40px 24px; }
  .hero-stats { padding: 16px 24px; }
  .how-steps-row { flex-direction: column; gap: 20px; }
  .how-steps-row::before { display: none; }
  .sector-grid { grid-template-columns: repeat(3, 1fr); }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .sidebar { display: none; position: fixed; inset: 0; z-index: 400; border-radius: 0; overflow-y: auto; width: 300px; }
  .sidebar.open { display: block; }
  .filter-toggle { display: flex; }
}

@media (max-width: 640px) {
  .pick-grid { grid-template-columns: 1fr 1fr; }
  .decor-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .how-hero { padding: 28px 20px; gap: 24px; }
}

@media (max-width: 600px) {
  .prod-grid-home,
  .grid-2,
  .grid-3,
  .grid-4,
  .rev-grid,
  .rev-grid-home,
  .why-grid-home,
  .colour-modes,
  .format-grid,
  .serv-hero-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .decor-grid { grid-template-columns: 1fr; }
}

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