/* ==========================================================================
   IRAX — house style
   Colours are sampled from IRA.pdf, not invented: the emerald-to-teal
   gradient off the cover, the blue title bars off the product pages, and the
   red of the stroke through the X in the wordmark.
   ========================================================================== */

:root {
  --green:      #00be62;   /* cover gradient, top */
  --green-mid:  #008f5f;
  --green-deep: #00605b;   /* cover gradient, bottom */
  --blue:       #055291;   /* product title bars */
  --blue-dk:    #033c6c;
  --red:        #ee2a17;   /* the X */
  --ink:        #181818;   /* wordmark black */
  --text:       #22303a;
  --muted:      #667987;
  --line:       #dde5ea;
  --line-soft:  #eef3f6;
  --bg:         #f4f7f9;
  --panel:      #ffffff;
  --r:          8px;
  --shadow:     0 1px 2px rgba(16,40,56,.06), 0 6px 18px rgba(16,40,56,.07);
  --shadow-lg:  0 10px 40px rgba(16,40,56,.14);
  --wrap:       1280px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 15px/1.55 "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; letter-spacing: -.01em; }
p { margin: 0 0 10px; }
ul { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

/* ---------- type helpers -------------------------------------------------- */

.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.kicker--light { color: rgba(255, 255, 255, .82); }
.kicker--blue  { color: var(--blue); }

/* the PDF's signature: a solid blue bar with the product name reversed out */
.bar {
  display: block;
  background: var(--blue);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 3px;
  letter-spacing: -.01em;
}
.bar--sm { font-size: 15px; padding: 8px 15px; }

.h-sec { font-size: clamp(23px, 3vw, 33px); font-weight: 800; }
.h-sub { color: var(--muted); font-size: 15px; }

.rule::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  margin-top: 12px;
}

.sku {
  font: 600 12.5px/1.4 "Consolas", "SF Mono", ui-monospace, monospace;
  letter-spacing: .01em;
  color: var(--blue-dk);
  white-space: nowrap;
}

/* ---------- buttons ------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  cursor: pointer;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn--green { background: var(--green-mid); color: #fff; }
.btn--green:hover { background: #007a55; }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-dk); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: #c81f10; }
.btn--ghost { border-color: var(--line); background: #fff; color: var(--text); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--ghost-light { border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .12); }
.btn--sm { padding: 7px 13px; font-size: 12.5px; }
.btn--block { display: flex; width: 100%; }

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

.hdr {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.hdr-top {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img { height: 42px; width: auto; }
.logo { flex: none; }

.searchbar { flex: 1; display: flex; min-width: 220px; }
.searchbar input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid var(--line);
  border-right: 0;
  border-radius: var(--r) 0 0 var(--r);
  padding: 11px 15px;
  font-size: 14px;
  background: #fff;
  outline: none;
}
.searchbar input:focus { border-color: var(--blue); }
.searchbar button {
  border: 0;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 0 22px;
  border-radius: 0 var(--r) var(--r) 0;
}
.searchbar button:hover { background: var(--blue-dk); }

.hdr-actions { display: flex; align-items: center; gap: 18px; flex: none; }
.hdr-phone { text-align: right; line-height: 1.25; }
.hdr-phone strong { display: block; font-size: 15px; color: var(--blue-dk); }
.cart-btn {
  position: relative;
  background: var(--green-mid);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--r);
}
.cart-btn:hover { background: #007a55; }
.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  border-radius: 11px;
  background: var(--red);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* nav — the cover gradient, flipped horizontal */
.hdr-nav {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-mid) 46%, var(--green-deep) 100%);
}
.hdr-nav ul { display: flex; flex-wrap: wrap; }
.hdr-nav a {
  display: block;
  padding: 12px 17px;
  color: rgba(255, 255, 255, .93);
  font-size: 13.5px;
  font-weight: 600;
  border-bottom: 3px solid transparent;
}
.hdr-nav a:hover { background: rgba(0, 0, 0, .13); color: #fff; }
.hdr-nav a.is-active { border-bottom-color: #fff; color: #fff; background: rgba(0, 0, 0, .16); }

.crumbs { background: #fff; border-bottom: 1px solid var(--line); font-size: 12.5px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; padding: 10px 0; margin: 0; list-style: none; }
.crumbs li { color: var(--muted); }
.crumbs li + li::before { content: "›"; margin-right: 8px; color: #b6c3cc; }
.crumbs a { color: var(--blue); font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }

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

.hero { position: relative; color: #fff; overflow: hidden; background: var(--green-deep); }
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 96, 91, .52) 0%,
    rgba(0, 150, 95, .62) 40%,
    rgba(0, 110, 90, .93) 72%,
    var(--green-deep) 100%);
}
.hero .kicker--light { color: #fff; text-shadow: 0 1px 12px rgba(0, 45, 38, .75); }
.hero-inner { position: relative; z-index: 2; padding: 74px 22px 56px; }
.hero h1 {
  font-size: clamp(38px, 6.2vw, 70px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 14px 0 16px;
  text-shadow: 0 2px 26px rgba(0, 50, 40, .35);
}
.hero-tag { max-width: 720px; font-size: 16.5px; color: rgba(255, 255, 255, .93); }
.hero-pills { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 30px; }
.pill {
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 100px;
  padding: 6px 15px;
  font-size: 12.5px;
  font-weight: 600;
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, .08);
}
.hero-checks { display: flex; flex-wrap: wrap; gap: 8px 26px; margin: 4px 0 0; }
.hero-checks li { font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.hero-checks i { color: #b9ffd6; font-style: normal; font-weight: 800; }

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .22);
  border-top: 1px solid rgba(255, 255, 255, .22);
}
.hero-stats > div { background: var(--green-deep); padding: 18px 22px; }
.hero-stats b { display: block; font-size: 27px; font-weight: 800; letter-spacing: -.02em; }
.hero-stats span { font-size: 12px; color: rgba(255, 255, 255, .75); }

/* ---------- promise strip ------------------------------------------------- */

.promise { background: #fff; border-bottom: 1px solid var(--line); }
.promise ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 22px;
  padding: 26px 0;
}
.promise li { display: flex; gap: 13px; }
.promise .ic {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
}
.promise b { display: block; font-size: 14px; margin-bottom: 2px; }
.promise p { font-size: 12.8px; color: var(--muted); margin: 0; }

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

.sec { padding: 52px 0; }
.sec--white { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec--green {
  background: linear-gradient(160deg, var(--green-mid) 0%, var(--green-deep) 100%);
  color: #fff;
}
.sec-head { display: flex; align-items: flex-end; gap: 18px; margin-bottom: 26px; flex-wrap: wrap; }
.sec-head .txt { flex: 1; min-width: 240px; }
.secnum {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- group / family tiles ------------------------------------------ */

.groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.group > .bar { border-radius: 0; }
.group-body { padding: 6px 0 8px; }
.group-body a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line-soft);
}
.group-body a:last-child { border-bottom: 0; }
.group-body a:hover { background: #f2f8f5; }
.group-body .thumb {
  flex: none;
  width: 52px;
  height: 40px;
  border-radius: 5px;
  overflow: hidden;
  background: #f1f5f8;
  border: 1px solid var(--line);
}
.group-body .thumb img, .group-body .thumb svg { width: 100%; height: 100%; object-fit: cover; }
.group-body .nm { flex: 1; font-size: 13.6px; font-weight: 650; line-height: 1.3; }
.group-body .ct { font-size: 11.5px; color: var(--muted); font-weight: 600; white-space: nowrap; }

.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(252px, 1fr)); gap: 20px; }
.tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: box-shadow .16s, transform .16s, border-color .16s;
}
.tile:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: #c3d3de; }
.tile-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #eef3f6;
  overflow: hidden;
}
.tile-img img { width: 100%; height: 100%; object-fit: cover; }
.tile-img .art { position: absolute; inset: 0; }
.tile-num {
  position: absolute;
  top: 9px;
  left: 9px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}
.tile-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.tile-body h3 { font-size: 15.5px; margin-bottom: 6px; }
.tile-body p { font-size: 12.8px; color: var(--muted); flex: 1; }
.tile-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
}
.tile-meta .n { color: var(--muted); font-weight: 600; }
.tile-meta .from { font-weight: 800; color: var(--blue-dk); font-size: 13.5px; }

.art { display: block; width: 100%; height: 100%; }
.art svg { width: 100%; height: 100%; display: block; }
.art-thumb {
  width: 62px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  background: #f4f8fa;
  display: block;
}

/* ---------- tables -------------------------------------------------------- */

.tbl-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tbl-head {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  background: #fbfdfe;
}
.tbl-head h2 { font-size: 17px; }
.tbl-head p { font-size: 12.5px; color: var(--muted); margin: 4px 0 0; max-width: 640px; }
.tbl-scroll { overflow-x: auto; }

table.spec { font-size: 13px; min-width: 100%; }
table.spec th, table.spec td {
  padding: 9px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  white-space: nowrap;
  vertical-align: middle;
}
table.spec thead th {
  position: sticky;
  top: 0;
  background: #eff4f7;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #4a606f;
  border-bottom: 1px solid var(--line);
  z-index: 1;
}
table.spec tbody tr:hover { background: #f5faf7; }
table.spec .num { text-align: right; }
.cell-price { font-weight: 800; color: var(--blue-dk); font-size: 14px; }

.stock {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
}
.stock--in   { background: #e2f6ea; color: #08794a; }
.stock--days { background: #fdf2dd; color: #8a5d0a; }
.stock--lead { background: #eef2f6; color: #55697a; }

.qty {
  width: 66px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 13px;
  background: #fff;
  outline: none;
}
.qty:focus { border-color: var(--blue); }

.cad { font-size: 11px; font-weight: 700; color: var(--green-mid); }
.cad:hover { text-decoration: underline; }

/* ---------- catalogue layout ---------------------------------------------- */

.cat-layout {
  display: grid;
  grid-template-columns: 258px 1fr;
  gap: 24px;
  align-items: start;
  padding-top: 24px;
  padding-bottom: 56px;
}
.rail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  position: sticky;
  top: 96px;
  box-shadow: var(--shadow);
}
.rail-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.rail-head h2 { font-size: 14px; }
.rail-head button { font-size: 12px; font-weight: 700; color: var(--red); }
.rail-head button:hover { text-decoration: underline; }

.fgroup { border-bottom: 1px solid var(--line-soft); }
.fgroup:last-child { border-bottom: 0; }
.fgroup > summary {
  padding: 12px 16px;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #3d5464;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fgroup > summary::-webkit-details-marker { display: none; }
.fgroup > summary::after { content: "+"; font-size: 15px; color: var(--muted); }
.fgroup[open] > summary::after { content: "–"; }
.fbody { padding: 0 16px 13px; max-height: 268px; overflow-y: auto; }
.fopt { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 13px; cursor: pointer; }
.fopt input { accent-color: var(--green-mid); width: 15px; height: 15px; flex: none; }
.fopt span:nth-of-type(1) { flex: 1; }
.fopt .n { font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; }

.results-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.results-head .cnt { font-size: 13px; color: var(--muted); }
.results-head .cnt b { color: var(--text); font-size: 15px; }
.results-head .spacer { flex: 1; }
.results-head select {
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 13px;
  background: #fff;
}
.chips { display: flex; gap: 7px; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eaf5ef;
  border: 1px solid #c8e5d6;
  color: #08653f;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 5px 3px 10px;
  border-radius: 100px;
}
.chip button { color: #08653f; font-size: 14px; line-height: 1; padding: 0 4px; opacity: .7; }
.chip button:hover { opacity: 1; }

.prow {
  display: grid;
  grid-template-columns: 190px 1fr 200px;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 17px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.prow:hover { border-color: #c3d3de; box-shadow: var(--shadow-lg); }
.prow-img {
  height: 138px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #eef3f6;
}
.prow-img img { width: 100%; height: 100%; object-fit: cover; }
.prow-body h3 { font-size: 17px; margin-bottom: 4px; }
.prow-body h3:hover { color: var(--blue); }
.prow-sub { font-size: 12.5px; color: var(--green-mid); font-weight: 700; margin-bottom: 7px; }
.prow-body > p { font-size: 13px; color: var(--muted); }
.specstrip { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 9px; font-size: 12.3px; }
.specstrip span { color: var(--text); }
.specstrip i { color: var(--muted); font-style: normal; font-weight: 700; margin-right: 5px; }
.codes { display: flex; flex-wrap: wrap; gap: 6px; }
.codes span {
  font-size: 10.6px;
  font-weight: 700;
  letter-spacing: .04em;
  border: 1px solid #cfe0d8;
  color: #0a6b47;
  background: #f2f9f5;
  padding: 2.5px 7px;
  border-radius: 3px;
}
.prow-side {
  border-left: 1px solid var(--line-soft);
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}
.price { display: block; font-size: 11.5px; color: var(--muted); font-weight: 600; }
.price b { display: block; font-size: 25px; font-weight: 800; color: var(--blue-dk); letter-spacing: -.02em; }
.price .unit { display: block; font-size: 11px; font-weight: 500; }

.empty {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 54px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.empty h2 { font-size: 20px; margin-bottom: 8px; }
.empty p { color: var(--muted); max-width: 480px; margin: 0 auto 18px; }

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

.pd { display: grid; grid-template-columns: 440px 1fr; gap: 30px; padding-top: 26px; }
.gal-main {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: #eef3f6;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.gal-main img { width: 100%; height: 100%; object-fit: cover; }
.gal-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.gal-thumbs button {
  width: 68px;
  height: 52px;
  border: 1.5px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  background: #f4f8fa;
  padding: 0;
}
.gal-thumbs button.is-active { border-color: var(--green-mid); box-shadow: 0 0 0 2px #cfeddd; }
.gal-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pd-info h1 { font-size: clamp(24px, 3.2vw, 34px); font-weight: 800; margin: 8px 0 8px; }
.pd-lead { font-size: 14.5px; color: #3e5261; margin: 14px 0 16px; }
.featgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(212px, 1fr)); gap: 13px; margin-top: 16px; }
.featcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 14px 15px; }
.featcard b { display: block; font-size: 13.4px; margin-bottom: 5px; color: var(--blue-dk); }
.featcard p { font-size: 12.6px; color: var(--muted); margin: 0; }

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: var(--shadow);
}
.panel + .panel { margin-top: 18px; }
.panel h2 { font-size: 18px; }
.panel h3 { font-size: 14px; margin: 18px 0 8px; color: var(--blue-dk); }
.panel p { font-size: 13.6px; color: #465a68; }
.rule-sm::after { width: 40px; height: 3px; margin-top: 9px; }

.dot-list li {
  position: relative;
  padding-left: 17px;
  font-size: 13.4px;
  color: #465a68;
  margin-bottom: 7px;
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--green);
}

table.kv th, table.kv td {
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.2px;
  text-align: left;
  vertical-align: top;
}
table.kv th { width: 40%; color: var(--muted); font-weight: 600; padding-right: 14px; }
table.kv td { color: var(--text); }

/* ---------- cart ---------------------------------------------------------- */

.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 20px; padding: 26px 0 60px; align-items: start; }
.cart-line {
  display: grid;
  grid-template-columns: 96px 1fr 190px;
  gap: 15px;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  align-items: start;
}
.cart-line:first-child { border-top: 0; }
.cart-line h3 { font-size: 14.5px; margin-bottom: 3px; }
.cart-line h3:hover { color: var(--blue); }
.cart-line .meta { font-size: 12.3px; color: var(--muted); margin-top: 4px; }
.cart-line .right { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; text-align: right; }
.cart-line .right b { font-size: 17px; color: var(--blue-dk); }
.cart-line .rm { font-size: 12px; font-weight: 700; color: var(--red); }
.cart-line .rm:hover { text-decoration: underline; }
.cart-thumb {
  width: 96px;
  height: 74px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #f4f8fa;
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }

.summary {
  background: linear-gradient(160deg, var(--green-mid), var(--green-deep));
  color: #fff;
  border-radius: var(--r);
  padding: 22px;
  position: sticky;
  top: 96px;
  box-shadow: var(--shadow-lg);
}
.summary h2 { font-size: 17px; }
.summary .row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; font-size: 13.5px; }
.summary .row b { font-weight: 700; }
.summary .row--total {
  border-top: 1px solid rgba(255, 255, 255, .3);
  margin-top: 8px;
  padding-top: 13px;
  font-size: 16px;
}
.summary .row--total b { font-size: 22px; font-weight: 800; }
.summary .btn { margin-top: 15px; }
.summary .note { font-size: 11.4px; color: rgba(255, 255, 255, .76); margin-top: 12px; line-height: 1.45; }

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

.ftr { background: #10222c; color: #b7c6d0; padding: 46px 0 26px; font-size: 13px; }
.ftr-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.ftr-about img { height: 34px; width: auto; margin-bottom: 13px; }
.ftr-about p { font-size: 12.7px; line-height: 1.6; }
.ftr h3 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 12px; }
.ftr li { margin-bottom: 7px; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr-offices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.ocard h4 { font-size: 12.5px; color: #fff; margin-bottom: 7px; }
.ocard .addr { font-size: 12.3px; line-height: 1.5; margin-bottom: 7px; }
.ocard .orow { font-size: 12.3px; margin: 0 0 3px; }
.ocard .orow b { color: #7f93a1; font-weight: 600; margin-right: 6px; }
.ftr-legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  font-size: 11.6px;
  color: #7f93a1;
}

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

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 22px);
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 90;
  max-width: 90vw;
  text-align: center;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- responsive ---------------------------------------------------- */

@media (max-width: 1120px) {
  .pd { grid-template-columns: 360px 1fr; }
  .ftr-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .cat-layout { grid-template-columns: 1fr; }
  .rail { position: static; }
  .fbody { max-height: none; }
  .pd { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .prow { grid-template-columns: 150px 1fr; }
  .prow-side { grid-column: 1 / -1; border-left: 0; padding-left: 0; border-top: 1px solid var(--line-soft); padding-top: 13px; flex-direction: row; align-items: center; flex-wrap: wrap; gap: 14px; }
  .price b { font-size: 21px; }
}
@media (max-width: 760px) {
  .hdr-top { flex-wrap: wrap; gap: 12px; }
  .searchbar { order: 3; flex-basis: 100%; }
  .hdr-phone { display: none; }
  .hdr-actions { margin-left: auto; }
  .ftr-main { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 70px 1fr; }
  .cart-line .right { grid-column: 1 / -1; align-items: flex-start; text-align: left; }
  .cart-thumb { width: 70px; height: 56px; }
  .hero-inner { padding: 46px 22px 36px; }
}
