/* L&M Heating Supplies Ltd – Page Content Styles */
/* Chrome/layout tokens defined in theme.css */

/* ── Page transition ─────────────────────────────────────── */
body { opacity: 0; transition: opacity 0.2s ease; }
body.pt-ready { opacity: 1; }

/* ── Layout wrapper (page content) ──────────────────────── */
.site-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Main content area ───────────────────────────────────── */
.site-main { padding: 20px 0 32px; min-height: 380px; }

/* ── Product grid (section pages) ───────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 8px 0;
}

.product-card {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 8px;
  transition: box-shadow 0.15s, border-color 0.15s;
  background: var(--white);
}

.product-card:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.10);
  border-color: var(--amber);
}

.product-card a { display: block; color: inherit; }

.product-card img {
  width: 100%;
  max-width: 187px;
  height: 125px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}

.product-card .label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

/* ── Data tables (product detail pages) ─────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 12px 0;
}

.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: 8px 10px;
  text-align: left;
  font-weight: bold;
}

.data-table th.right { text-align: right; padding-right: 20px; }

.data-table td {
  padding: 7px 10px;
  border: 1px solid #ccc;
  vertical-align: top;
}

.data-table td.right { text-align: right; padding-right: 20px; }

.data-table tbody tr:nth-child(even) td { background: #f4f7fb; }

.data-table .section-header td {
  background: #9EA1A4;
  color: #1C1E20;
  font-weight: bold;
  padding: 8px 10px;
}

/* ── Responsive table wrapper ────────────────────────────── */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll table { min-width: 480px; }

/* ── Divider ─────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 16px 0; }

/* ── Page section heading ────────────────────────────────── */
h1.page-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 16px;
}

/* ── Branch info (sub-pages) ─────────────────────────────── */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 12px 0;
}

.branch-block h3 {
  color: var(--amber);
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.branch-block p,
.branch-block address {
  font-size: 13px;
  line-height: 1.65;
  font-style: normal;
  color: var(--text);
}

.branch-block a   { color: var(--amber); font-weight: normal; }
.branch-block iframe { display: block; margin-top: 4px; max-width: 100%; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 720px) {
  .product-grid    { grid-template-columns: repeat(2, 1fr); }
  .branch-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .product-grid    { grid-template-columns: 1fr 1fr; }
  .branch-grid     { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   PRODUCT PAGE COMPONENTS
   ══════════════════════════════════════════════════════════ */

/* ── Page hero band ──────────────────────────────────────── */
.page-hero-band {
  background: var(--navy);
  border-bottom: 3px solid var(--amber);
}
.page-hero-band-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px;
}
.page-hero-band h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  line-height: 1.2;
}
.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb .sep { opacity: 0.4; font-size: 10px; }

/* ── Product header ──────────────────────────────────────── */
.product-header-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.product-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: start;
}
.product-header-left h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.product-intro {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.product-bullets {
  margin: 0 0 18px 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}
.product-bullets li::marker { color: var(--amber); }
.spec-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 20px;
}
.spec-badge {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.spec-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel);
  flex-shrink: 0;
}
.spec-badge.highlight {
  color: var(--amber-dim);
  font-weight: 600;
}
.spec-badge.highlight::before {
  background: var(--amber);
}
.spec-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s;
  margin: 8px 8px 0 0;
}
.spec-download:hover { background: var(--amber); color: var(--white); }
.product-header-right {
  background: #f8f9fa;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  min-height: 240px;
}
.product-header-right img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
}
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}
.img-placeholder .ph-icon { font-size: 52px; opacity: 0.2; }
.img-placeholder p { font-size: 12px; text-align: center; }

/* ── Install notes ───────────────────────────────────────── */
.install-notes-section {
  background: #f8f9fa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.install-notes-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px 24px;
}
.install-notes-inner h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--navy);
  margin-bottom: 8px;
}
.install-notes-inner p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Product pricing table section ──────────────────────── */
.product-table-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.product-table-section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.product-table-section h2 {
  font-family: var(--font-section);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-table-section .table-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  text-align: right;
}
.ptable-loading { padding: 32px; text-align: center; color: var(--muted); font-size: 0.9rem; }
.ptable-error   { padding: 20px; background: #fff8f0; border: 1px solid var(--amber); border-radius: 6px; color: var(--navy); font-size: 0.9rem; }
.ptable-error a { color: var(--amber); font-weight: 600; }

.ptable-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.ptable {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 12px;
}
.ptable .cat-header th,
.ptable .cat-header td {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  padding: 8px 6px;
  text-align: center;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-right: 2px solid rgba(255,255,255,0.12);
}
.ptable .cat-header th:last-child,
.ptable .cat-header td:last-child { border-right: none; }
.ptable .sub-header th {
  background: var(--navy-mid);
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  padding: 6px 6px;
  text-align: center;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.ptable tr.section-divider td {
  color: var(--navy);
  font-weight: 700;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 8px;
  text-align: center;
  border-top: none;
  border-bottom: none;
}
.ptable td {
  padding: 6px 6px;
  text-align: center;
  color: var(--text);
  border-bottom: 1px solid #e8ecf0;
  white-space: nowrap;
  font-size: 12px;
}
.ptable tbody tr:nth-child(even):not(.cat-header) td { background: #f5f7fa; }
.ptable tbody tr:nth-child(odd):not(.cat-header) td  { background: var(--white); }
.ptable tbody tr:hover:not(.cat-header) td { background: #edf2f8; transition: background 0.12s; }
.ptable td.dim   { font-weight: 400; color: var(--navy); }
.ptable td.price { font-weight: 600; color: var(--amber-dim); }
.ptable td.code  { font-weight: 700; color: var(--text); }
.ptable.ptable-fixed { table-layout: fixed; }
.ptable td.grp   { border-left: 2px solid var(--border); }
.ptable th.grp   { border-left: 2px solid rgba(255,255,255,0.18); }

/* ── Product image gallery ───────────────────────────────── */
.product-gallery-section {
  background: #eef1f5;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.product-gallery-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.product-gallery-inner h2 {
  font-family: var(--font-section);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-gallery-inner .gallery-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}
.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  transition: box-shadow 0.15s, transform 0.15s;
  border: 1px solid var(--border);
}
.gallery-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); transform: translateY(-2px); }
.gallery-card .img-area {
  aspect-ratio: 4/3;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-bottom: 1px solid var(--border);
}
.gallery-card .img-area img { max-width: 100%; max-height: 100%; object-fit: contain; }
.gallery-card .img-area .ph-icon { font-size: 36px; opacity: 0.2; }
.gallery-card .caption {
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}
.gallery-card .caption .code-tag {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--steel);
  margin-top: 2px;
}

/* ── CTA band ────────────────────────────────────────────── */
.cta-band {
  background: var(--amber);
  padding: 40px 0;
}
.cta-band-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-band h3 { color: var(--white); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.cta-band p  { color: rgba(255,255,255,0.88); font-size: 14px; margin: 0; }
.cta-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cta-primary {
  display: inline-flex; align-items: center;
  background: var(--white); color: var(--amber);
  padding: 11px 22px; border-radius: 4px;
  font-size: 13px; font-weight: 700;
  text-decoration: none; transition: all 0.15s;
}
.btn-cta-primary:hover { background: var(--navy); color: var(--white); }
.btn-cta-outline {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--white);
  padding: 10px 22px; border-radius: 4px;
  font-size: 13px; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.7);
  text-decoration: none; transition: all 0.15s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); }

/* ── Product page responsive ─────────────────────────────── */
@media (max-width: 768px) {
  .product-header-inner { grid-template-columns: 1fr; }
  .product-header-right { min-height: unset; }
  .product-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 28px 0; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions a { width: 100%; justify-content: center; }
  .section-title { font-size: 22px; }
  .page-hero-band h1 { font-size: 22px; }
  .product-header-left h2 { font-size: 18px; }
  .install-notes-inner { padding: 16px; }
}
@media (max-width: 480px) {
  .product-gallery-grid { grid-template-columns: 1fr; }
  .ptable { font-size: 10px; }
  .ptable td, .ptable th { padding: 5px 4px; }
  .ptable .cat-header th, .ptable .cat-header td { padding: 6px 4px; }
  .ptable .sub-header th { padding: 5px 4px; }
  .ptable .section-divider td { padding: 6px 4px; }
}

/* ══════════════════════════════════════════════════════════
   INFO PAGES (About, Contact, Team, Downloads, Returns)
   ══════════════════════════════════════════════════════════ */

.info-section {
  background: var(--white);
  padding: 48px 0;
}
.info-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.info-inner h2 {
  font-family: var(--font-section);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.info-inner p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.info-inner ul {
  list-style: none;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-inner ul li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.info-inner ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Stat row (About page) ───────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.stat-block {
  background: var(--navy);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  line-height: 1.4;
  display: block;
}

/* ── About 2-col layout ──────────────────────────────────── */
.about-body {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: start;
}
.about-categories {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.about-categories h3 {
  font-family: var(--font-section);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--amber);
  margin-bottom: 14px;
}
.about-categories ul { margin: 0; gap: 10px; }
.about-tagline {
  margin-top: 32px;
  padding: 20px 24px;
  border-left: 3px solid var(--amber);
  background: var(--amber-pale);
  border-radius: 0 6px 6px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-display);
  letter-spacing: 0.3px;
}

/* ── Contact branch cards ────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.contact-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.contact-card-header {
  background: var(--navy);
  color: var(--white);
  padding: 13px 20px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
.contact-card-body { padding: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-detail h4 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--amber);
  margin-bottom: 6px;
}
.contact-detail address,
.contact-detail p {
  font-size: 13px;
  font-style: normal;
  line-height: 1.8;
  color: var(--text);
}
.contact-detail a { color: var(--amber); font-weight: 600; }
.contact-staff { border-top: 1px solid var(--border); padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.contact-staff-item h5 { font-size: 10px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.contact-staff-item p { font-size: 13px; color: var(--text); line-height: 1.6; margin: 0; }
.contact-staff-item a { color: var(--amber); font-weight: 600; }
.contact-card-map {
  display: block;
  width: 100%;
  height: 170px;
  border: 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ── Team cards ──────────────────────────────────────────── */
.team-director {
  background: var(--navy);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.team-director .team-role {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  margin-bottom: 4px;
}
.team-director .team-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.team-director .team-contact {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
.team-director .team-contact a { color: var(--amber); font-weight: 600; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.team-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}
.team-card .team-role {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--amber);
  margin-bottom: 4px;
}
.team-card .team-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.team-card .team-contact {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.team-card .team-contact a { color: var(--amber); font-weight: 600; }
.team-coverage {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.team-coverage strong { color: var(--text); display: block; margin-bottom: 2px; font-size: 10px; text-transform: uppercase; letter-spacing: 0.8px; }

/* ── Downloads ───────────────────────────────────────────── */
.download-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.download-item {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 20px;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  text-decoration: none;
  color: inherit;
}
.download-item:hover { border-color: var(--amber); box-shadow: 0 2px 10px rgba(0,0,0,0.07); }
.download-icon { font-size: 26px; flex-shrink: 0; }
.download-title { flex: 1; font-size: 14px; font-weight: 600; color: var(--text); }
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.download-item:hover .download-btn { background: var(--amber-dim); }

/* ── Returns policy ──────────────────────────────────────── */
.policy-table-wrap {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 28px;
  max-width: 480px;
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.policy-table th {
  background: var(--navy);
  color: var(--white);
  padding: 11px 18px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.policy-table td {
  padding: 10px 18px;
  border-bottom: 1px solid #e8ecf0;
  color: var(--text);
}
.policy-table tbody tr:nth-child(even) td { background: #f5f7fa; }
.policy-table tbody tr:nth-child(odd) td  { background: var(--white); }
.policy-table td:last-child { font-weight: 700; color: var(--amber-dim); text-align: right; }
.policy-notes h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--navy);
  margin-bottom: 12px;
}

/* ── Info pages responsive ───────────────────────────────── */
@media (max-width: 768px) {
  .stat-row          { grid-template-columns: 1fr 1fr; }
  .about-body        { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .contact-card-body { grid-template-columns: 1fr; }
  .team-grid         { grid-template-columns: 1fr 1fr; }
  .team-director     { flex-direction: column; gap: 16px; }
}
@media (max-width: 520px) {
  .stat-row  { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ── Lightbox ────────────────────────────────────────────── */
#lm-lightbox { display:none; position:fixed; inset:0; z-index:9000; }
#lm-lightbox.lm-lb-open { display:block; }
#lm-lb-overlay { position:absolute; inset:0; background:rgba(0,0,0,0.88); }
#lm-lb-box {
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  max-width:calc(100vw - 20px);
}
#lm-lb-close {
  position:absolute;
  top:-19px; right:-14px;
  background:var(--amber);
  border:none;
  color:#fff;
  font-size:1.1rem;
  width:34px; height:34px;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 0 2px 0;
  line-height:1;
}
#lm-lb-row {
  display:flex;
  align-items:center;
  gap:16px;
  max-width:100%;
}
#lm-lb-img-wrap {
  display:flex;
  align-items:center;
  justify-content:center;
}
#lm-lb-img {
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:4px;
  display:block;
}
#lm-lb-prev, #lm-lb-next {
  background:rgba(255,255,255,0.14);
  border:none;
  color:#fff;
  font-size:1.8rem;
  line-height:1;
  padding:10px 16px;
  cursor:pointer;
  border-radius:4px;
  transition:background 0.15s;
  flex-shrink:0;
  align-self:center;
  display:flex;
  align-items:center;
}
#lm-lb-prev:hover, #lm-lb-next:hover { background:rgba(255,255,255,0.28); }
#lm-lb-caption {
  text-align:center;
  color:rgba(255,255,255,0.8);
  font-size:12.5px;
  font-family:var(--font-body);
  max-width:80vw;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  letter-spacing:0.02em;
}

/* ── Supplier link button ────────────────────────────────── */
.supplier-link-wrap {
  margin-top:18px;
}
.supplier-link-btn {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 20px;
  border:2px solid var(--amber);
  border-radius:4px;
  background:var(--white);
  color:var(--amber);
  font-family:var(--font-section);
  font-size:13px;
  font-weight:600;
  letter-spacing:0;
  text-decoration:none;
  text-transform:none;
  transition:background 0.15s, color 0.15s;
}
.supplier-link-btn:hover {
  background:var(--amber);
  color:#fff;
}
.supplier-link-btn img {
  height:26px;
  width:auto;
  object-fit:contain;
}

/* ── Table + image side by side (Ariston / Telford) ─────── */
.table-with-image {
  display:flex;
  gap:32px;
  align-items:flex-start;
}
.table-with-image .ptable-wrapper,
.table-with-image .ptable-container {
  flex:1 1 auto;
  min-width:0;
}
.table-with-image .tbl-product-img {
  flex:0 0 180px;
  width:180px;
}
.table-with-image .tbl-product-img img {
  width:100%;
  height:auto;
  border-radius:4px;
  object-fit:contain;
  display:block;
}
@media(max-width:680px){
  .table-with-image { flex-direction:column; }
  .table-with-image .tbl-product-img { width:100%; max-width:220px; }
}

/* ── Dual product header images ─────────────────────────── */
.product-header-dual-img {
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:center;
}
.product-header-dual-img img {
  width:44%;
  height:300px;
  object-fit:cover;
  object-position:center top;
}
