/*
Theme Name: TCCOM Corporate
Theme URI: https://tccom.co.th
Author: TCCOM
Description: HP-catalog-inspired, bilingual (Thai default / English toggle) corporate theme for TCCOM. Primary #064fa3. Built from the project DESIGN.md.
Version: 0.14.6
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: tccom
*/

/* ============================================================
   TCCOM Corporate — design tokens (see DESIGN.md)
   HP catalog aesthetic · primary #064fa3 · mobile-first
   Bilingual TH (default) / EN — toggle via html[data-lang]
   ============================================================ */
:root {
  --primary: #064fa3;
  --primary-bright: #2a73c9;
  --primary-deep: #043a78;
  --primary-soft: #d4e3f5;
  --on-primary: #ffffff;
  --ink: #1a1a1a;
  --ink-deep: #000000;
  --on-ink: #ffffff;
  --charcoal: #3d3d3d;
  --graphite: #636363;
  --canvas: #ffffff;
  --cloud: #f7f7f7;
  --fog: #e8e8e8;
  --steel: #c2c2c2;
  --hairline: #e8e8e8;
  --r-sm: 3px; --r-md: 4px; --r-lg: 8px; --r-xl: 16px;
  --s-xs: 8px; --s-sm: 12px; --s-md: 16px; --s-lg: 20px;
  --s-xl: 24px; --s-xxl: 32px; --s-section: 48px;
  --lift: 0 2px 8px rgba(26, 26, 26, 0.08);
  --max-w: 1366px;
  /* Brand-blue slabs (utility strip, contact band, footer) — brand #064fa3.
     Near-black --ink stays for body text only. */
  --brand-dark: #064fa3;
  --slab: #043a78;
  --hairline-dark: rgba(255, 255, 255, 0.18);
  --on-ink-soft: #dbe7f7;
  --on-ink-muted: #cfe0f4;
  --foot-text: #c5d8f0;
  --foot-text-dim: #aac3e6;
  /* Brand red (from the TCCOM logo) — reserved accent */
  --brand-red: #ed2124;
}

/* ---------- i18n: show only the active language ---------- */
.i18n, .i18n > [lang] { display: inline; }
html[data-lang="th"] .i18n > [lang="en"] { display: none; }
html[data-lang="en"] .i18n > [lang="th"] { display: none; }

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Noto Sans Thai', Arial, sans-serif;
  font-size: 16px; font-weight: 400; line-height: 1.5;
  color: var(--ink); background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}
html[data-lang="th"] body { line-height: 1.6; }
/* Text wrapping: break onto a new line at whole words; only ever split a single
   over-long token (long URL/code) as a last resort, never normal words. Guards
   against a stray long string forcing horizontal scroll on narrow screens. */
body { overflow-wrap: break-word; word-break: normal; }
h1, h2, h3, h4 { font-weight: 500; line-height: 1.15; margin: 0; }
html[data-lang="th"] h1, html[data-lang="th"] h2 { line-height: 1.25; }
p { margin: 0; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s-md); }
.section { padding: var(--s-section) 0; }
.eyebrow {
  font-size: 14px; font-weight: 700; letter-spacing: 0.7px;
  text-transform: uppercase; color: var(--primary); margin-bottom: var(--s-sm);
}
.lead { font-size: 18px; line-height: 1.5; color: var(--charcoal); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 12px 24px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase;
  border-radius: var(--r-md); border: 1px solid transparent;
  cursor: pointer; transition: background .15s, color .15s;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { background: var(--primary-deep); }
.btn-outline { background: var(--canvas); color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary-soft); }
.btn-on-dark { background: var(--canvas); color: var(--ink); }
.btn-on-dark:hover { background: var(--cloud); }

/* ============================================================
   UTILITY STRIP + HEADER NAV + LANGUAGE TOGGLE
   ============================================================ */
.utility { background: var(--brand-dark); color: var(--on-ink); font-size: 14px; }
.utility .wrap {
  min-height: 44px; display: flex; align-items: center; justify-content: flex-end; gap: var(--s-md);
}
.utility a { color: var(--on-ink); opacity: .85; }
.utility a:hover { opacity: 1; }
.utility .sep { color: var(--steel); }

.lang-toggle { display: inline-flex; border: 1px solid var(--steel); border-radius: var(--r-md); overflow: hidden; }
.lang-toggle button {
  font: inherit; font-size: 13px; font-weight: 600; line-height: 1;
  min-height: 40px; padding: 9px 15px; background: transparent; color: var(--ink);
  border: none; cursor: pointer;
}
.utility .lang-toggle { border-color: rgba(255, 255, 255, 0.4); }
.utility .lang-toggle button { color: rgba(255, 255, 255, 0.85); }
.lang-toggle button.active { background: var(--primary); color: #fff; }
.utility .lang-toggle button.active { background: #fff; color: var(--primary); }

header.site { position: sticky; top: 0; z-index: 50; background: var(--canvas); border-bottom: 1px solid var(--hairline); }
header.site .wrap { height: 64px; display: flex; align-items: center; gap: var(--s-md); }
.logo { display: flex; align-items: center; gap: 2px; color: var(--ink); }
.logo:hover { text-decoration: none; }
.logo-img { height: 53px; width: auto; display: block; }            /* TC Group company emblem in header */
/* footer company logo on a white chip so the emblem reads on the blue footer */
.foot-logo-chip { display: inline-block; background: #fff; border-radius: var(--r-lg); padding: 8px 10px; }
.foot-logo-chip:hover { text-decoration: none; }
.foot-logo-chip img { height: 44px; width: auto; display: block; }
/* brand-card logos */
.b-logo { height: 32px; width: auto; max-width: 100%; display: block; margin-bottom: var(--s-sm); }
nav.primary { margin-left: auto; display: none; gap: 2px; align-items: center; }
nav.primary a { color: var(--ink); padding: 8px 12px; font-size: 15px; border-bottom: 2px solid transparent; white-space: nowrap; }
nav.primary a:hover { color: var(--primary); text-decoration: none; }
.nav-cta { margin-left: var(--s-xs); }
/* Brand rule: blue background = white text. The nav-link color rule would otherwise
   override the blue CTA label to ink (black) via specificity — force it white. */
nav.primary a.nav-cta,
nav.primary a.nav-cta:hover { color: var(--on-primary); }
/* external "Buy" link uses the brand red accent */
nav.primary a.nav-buy, nav.primary a.nav-buy:hover { color: var(--brand-red); font-weight: 600; }

/* floating LINE OA widget (site-wide) */
.line-fab { position: fixed; right: 18px; bottom: 18px; z-index: 60; display: inline-flex; align-items: center; gap: 8px; background: #06c755; color: #fff; padding: 12px 18px 12px 14px; border-radius: 999px; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); font-weight: 600; font-size: 14px; }
.line-fab:hover { background: #05a546; color: #fff; text-decoration: none; }
.line-fab svg { width: 24px; height: 24px; flex: none; }
@media (max-width: 600px) { .line-fab-label { display: none; } .line-fab { padding: 14px; } }
.hamburger { margin-left: auto; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; color: var(--ink); }
.hamburger svg { width: 24px; height: 24px; }
#mobile-nav { display: none; border-top: 1px solid var(--hairline); background: var(--canvas); }
#mobile-nav.open { display: block; }
#mobile-nav a { display: block; padding: 14px var(--s-md); color: var(--ink); font-size: 18px; border-bottom: 1px solid var(--hairline); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--canvas); overflow: hidden; }
.hero .wrap { position: relative; padding-top: var(--s-section); padding-bottom: var(--s-section); }
.hero h1 { font-size: 38px; letter-spacing: -0.5px; }
.hero .lead { margin-top: var(--s-md); max-width: 640px; }
.hero .actions { margin-top: var(--s-xl); display: flex; flex-wrap: wrap; gap: var(--s-sm); }
.hero .stats { margin-top: var(--s-xxl); display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-md); max-width: 680px; }
.hero .stat .num { font-size: 30px; font-weight: 500; color: var(--primary); line-height: 1; font-family: 'Inter', sans-serif; }
.hero .stat .label { font-size: 14px; color: var(--graphite); margin-top: 4px; }
.chevron { position: absolute; top: 0; bottom: 0; width: 120px; background: var(--primary); opacity: .08; clip-path: polygon(40% 0, 100% 0, 60% 100%, 0 100%); pointer-events: none; display: none; }
.chevron.right { right: -20px; }
/* hero two-column layout (text + image) */
.hero-grid { display: grid; gap: var(--s-xl); align-items: center; }
.hero-media { margin-top: var(--s-sm); }
.hero-img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--lift); object-fit: cover; aspect-ratio: 16 / 11; }
.hero-grid .stats { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero-media { margin-top: 0; }
}

/* ============================================================
   SECTION HEADERS / BANDS
   ============================================================ */
.band-head { max-width: 760px; margin-bottom: var(--s-xl); }
.band-head h2 { font-size: 30px; }
.band-head p { margin-top: var(--s-sm); color: var(--charcoal); }
.band-cloud { background: var(--cloud); }
.band-fog { background: var(--fog); }

/* ============================================================
   BRANDS
   ============================================================ */
.brand-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-md); }
.brand-card { background: var(--canvas); border-radius: var(--r-xl); box-shadow: var(--lift); padding: var(--s-xl); display: flex; flex-direction: column; }
.brand-card .b-accent { height: 4px; width: 40px; background: var(--primary); border-radius: 2px; margin-bottom: var(--s-md); }
.brand-card .b-mark { font-size: 22px; font-weight: 700; letter-spacing: -0.3px; color: var(--ink); margin-bottom: var(--s-xs); font-family: 'Inter', sans-serif; }
.brand-card .b-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--primary); margin-bottom: var(--s-sm); }
.brand-card p { font-size: 14px; line-height: 1.55; color: var(--charcoal); flex: 1; }
.brand-card .b-link { margin-top: var(--s-md); font-weight: 500; font-size: 14px; }

/* ============================================================
   PRODUCTS BY CATEGORY
   ============================================================ */
.prod-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-md); }
.prod-card { background: var(--canvas); border-radius: var(--r-xl); box-shadow: var(--lift); padding: var(--s-xl); }
.prod-card .p-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--r-lg); margin-bottom: var(--s-md); display: block; background: var(--cloud); }

/* ---- Products page: SaaS filter layout ---- */
.products-layout { display: grid; gap: var(--s-xl); }
.filter-panel { display: flex; flex-direction: column; gap: var(--s-lg); }
.filter-search { width: 100%; padding: 11px 14px; font: inherit; font-size: 15px; border: 1px solid var(--steel); border-radius: var(--r-md); }
.filter-search:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px var(--primary-soft); }
.filter-group h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .5px; color: var(--graphite); margin-bottom: var(--s-xs); }
.filter-check { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 14px; cursor: pointer; }
.filter-check input { width: 16px; height: 16px; accent-color: var(--primary); }
.results-count { font-size: 14px; color: var(--graphite); margin-bottom: var(--s-md); }
.pgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-md); }
.pcard { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-xl); padding: var(--s-md); display: block; transition: box-shadow .15s, border-color .15s; }
.pcard:hover { box-shadow: var(--lift); border-color: var(--primary-soft); text-decoration: none; }
.pcard-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--r-lg); margin-bottom: var(--s-sm); background: var(--cloud); }
.pcard-brand { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--primary); }
.pcard-name { font-size: 15px; font-weight: 500; color: var(--ink); margin: 2px 0 6px; }
.pcard-link { font-size: 13px; font-weight: 500; color: var(--primary); }
.pgrid-empty { padding: var(--s-xl); color: var(--graphite); }
/* ---- Products page: grouped Brand→Category sections + filter breadcrumb (v0.8.0) ---- */
.results-bar { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-sm) var(--s-md); margin-bottom: var(--s-lg); }
.results-bar .results-count { margin-bottom: 0; flex: 0 0 auto; white-space: nowrap; }
.active-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.fchip { font: inherit; font-size: 13px; line-height: 1; display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; background: var(--primary-soft); color: var(--primary-deep); border: 1px solid transparent; border-radius: 999px; cursor: pointer; }
.fchip:hover { border-color: var(--primary); }
.fchip-x { font-size: 15px; font-weight: 700; line-height: 1; }
.pbrand-section { margin-bottom: var(--s-xl); }
.pbrand-head { font-size: 22px; color: var(--ink); padding-bottom: var(--s-xs); margin-bottom: var(--s-md); border-bottom: 2px solid var(--primary); }
.pcat-group { margin-bottom: var(--s-lg); }
.pcat-head { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--graphite); margin-bottom: var(--s-sm); }
.pcard-cat { position: absolute; top: 8px; left: 8px; z-index: 1; background: rgba(6,79,163,.92); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .3px; padding: 3px 7px; border-radius: var(--r-sm); }
.pbrand-head .pbrand-logo { height: 38px; width: auto; max-width: 190px; display: block; object-fit: contain; object-position: left center; }
/* ---- Download Center (page-downloads.php) ---- */
.dlgrid { display: grid; grid-template-columns: 1fr; gap: var(--s-md); }
.dlcard { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-xl); padding: var(--s-md); display: flex; flex-direction: column; gap: var(--s-sm); transition: box-shadow .15s, border-color .15s; }
.dlcard:hover { box-shadow: var(--lift); border-color: var(--primary-soft); }
.dlcard--disc { opacity: .92; }
.dlcard-head { display: flex; align-items: center; gap: var(--s-sm); }
.dlcard-thumb { width: 56px; height: 56px; flex: 0 0 auto; border-radius: var(--r-lg); object-fit: cover; background: var(--cloud); }
.dlcard-thumb--ph { display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 22px; font-weight: 700; }
.dlcard-brand { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--primary); }
.dlcard-name { font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.dlcard-disc { color: var(--graphite); font-size: 12px; font-weight: 400; }
.dlcard-files { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: var(--s-xs); }
.dlbtn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; padding: 7px 12px; border-radius: var(--r-md); background: var(--primary-soft); color: var(--primary-deep); border: 1px solid transparent; transition: border-color .15s, background .15s; }
.dlbtn:hover { border-color: var(--primary); text-decoration: none; }
.dlbtn-ic { font-weight: 700; }
.dlbtn--software, .dlbtn--firmware { background: rgba(237,33,36,.10); color: #b51a1c; }
.dlbtn--software:hover, .dlbtn--firmware:hover { border-color: var(--brand-red); }
.dlbtn--nbtc { background: var(--cloud); color: var(--charcoal); }
.dlbtn--nbtc:hover { border-color: var(--steel); }
.dl-teaser-count { font-size: 14px; color: var(--graphite); margin-top: var(--s-sm); }
.dl-teaser-count strong { color: var(--primary); }
/* ---- Radio Licence guide (page-license.php) ---- */
.lic-picker { display: grid; grid-template-columns: 1fr; gap: var(--s-md); margin-bottom: var(--s-xl); }
.lic-card { text-align: left; background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-xl); padding: var(--s-md) var(--s-lg); cursor: pointer; display: grid; gap: 3px; transition: border-color .15s, box-shadow .15s; font: inherit; position: relative; }
.lic-card:hover { border-color: var(--primary-soft); box-shadow: var(--lift); }
.lic-card.active { border-color: var(--primary); box-shadow: 0 0 0 2px var(--primary-soft); }
.lic-freq { font-size: 22px; font-weight: 800; color: var(--primary); letter-spacing: -.3px; }
.lic-dot { position: absolute; top: var(--s-md); right: var(--s-md); width: 14px; height: 14px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--hairline); }
.lic-dot--red { background: var(--brand-red); }
.lic-dot--black { background: #1a1f29; }
.lic-type { font-size: 14px; font-weight: 700; color: var(--ink); }
.lic-for { font-size: 13px; color: var(--graphite); }
.lic.js .lic-panel { display: none; }
.lic.js .lic-panel.active { display: block; }
.lic-h { font-size: 21px; color: var(--ink); padding-bottom: var(--s-xs); margin-bottom: var(--s-md); border-bottom: 2px solid var(--primary); }
.lic-prereq { background: #fff4e0; border: 1px solid #f0d089; color: #6b4e00; border-radius: var(--r-md); padding: 10px 14px; font-size: 14px; margin-bottom: var(--s-lg); }
.lic-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-md); margin-bottom: var(--s-lg); }
.lic-case { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: var(--s-md) var(--s-lg); }
.lic-case h3 { font-size: 15px; color: var(--primary-deep); margin-bottom: var(--s-sm); }
.lic-docs { list-style: none; margin: 0; padding: 0; }
.lic-docs li { position: relative; padding: 5px 0 5px 24px; font-size: 14px; line-height: 1.5; color: var(--charcoal); border-bottom: 1px solid var(--hairline); }
.lic-docs li:last-child { border-bottom: 0; }
.lic-docs li::before { content: "✓"; position: absolute; left: 0; top: 5px; color: var(--primary); font-weight: 700; }
.lic-docs--tight li { padding: 3px 0 3px 24px; border-bottom: 0; }
.lic-note { font-size: 13px; color: var(--graphite); margin-bottom: var(--s-xs); }
.lic-note--fee { margin-top: var(--s-sm); font-weight: 600; color: var(--primary-deep); }
.lic-fees { background: var(--cloud); border-radius: var(--r-lg); padding: var(--s-md) var(--s-lg); margin-bottom: var(--s-lg); }
.lic-fees h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .5px; color: var(--graphite); margin-bottom: var(--s-xs); }
.lic-fees ul { list-style: none; margin: 0; padding: 0; }
.lic-fees li { font-size: 14px; padding: 4px 0; display: flex; flex-wrap: wrap; gap: 6px; align-items: baseline; }
.lic-fees strong { color: var(--brand-red); font-size: 15px; }
.lic-gov { background: var(--primary-soft); border-radius: var(--r-lg); padding: var(--s-md) var(--s-lg); }
.lic-gov h3 { font-size: 15px; color: var(--primary-deep); margin-bottom: var(--s-sm); }
/* 3-step government workflow infographic */
.lic-flow { display: flex; flex-direction: column; gap: var(--s-sm); margin-top: var(--s-md); }
.lic-step { flex: 1; background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: var(--s-md) var(--s-lg); }
.lic-step-num { width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center; margin-bottom: var(--s-sm); box-shadow: 0 2px 6px rgba(6, 79, 163, .3); }
.lic-step h4 { font-size: 15px; color: var(--ink); margin-bottom: 6px; line-height: 1.35; }
.lic-step p { font-size: 13px; color: var(--charcoal); line-height: 1.55; margin: 0 0 var(--s-sm); }
.lic-step p a, .lic-step-link { font-weight: 600; }
.lic-step-link { display: inline-block; font-size: 13px; color: var(--primary); }
.lic-step-docs { margin-top: var(--s-sm); border-top: 1px solid var(--hairline); padding-top: var(--s-sm); }
.lic-step-docs-h { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; color: var(--primary-deep); margin-bottom: var(--s-xs); }
.lic-step-docs ol { margin: 0; padding-left: 18px; }
.lic-step-docs li { font-size: 12.5px; color: var(--charcoal); line-height: 1.45; padding: 3px 0; }
.lic-flow-arrow { flex: 0 0 auto; align-self: center; width: 24px; height: 24px; }
.lic-flow-arrow::before { content: "↓"; display: block; text-align: center; line-height: 24px; font-size: 22px; font-weight: 700; color: var(--steel); }
@media (min-width: 880px) {
  .lic-flow { flex-direction: row; align-items: stretch; gap: 6px; }
  .lic-flow-arrow { align-self: center; }
  .lic-flow-arrow::before { content: "→"; }
}
.lic-forms { display: grid; grid-template-columns: 1fr; gap: var(--s-sm); }
.lic-form { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 10px 14px; font-size: 14px; display: flex; align-items: center; justify-content: space-between; gap: var(--s-md); }
.lic-form-info { min-width: 0; }
.lic-form-info b { display: inline-block; min-width: 92px; color: var(--primary); }
.lic-dl { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: var(--r-md); background: var(--primary-soft); color: var(--primary-deep); border: 1px solid transparent; white-space: nowrap; transition: border-color .15s, background .15s; }
.lic-dl:hover { border-color: var(--primary); text-decoration: none; }
.lic-help-actions { display: flex; flex-wrap: wrap; gap: var(--s-sm); }
.lic-disclaimer { font-size: 13px; color: var(--graphite); line-height: 1.6; background: var(--cloud); border-radius: var(--r-md); padding: var(--s-md) var(--s-lg); }
@media (min-width: 768px) {
  .lic-picker { grid-template-columns: repeat(3, 1fr); }
  .lic-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .lic-case--wide { grid-column: 1 / -1; }
  .lic-forms { grid-template-columns: repeat(2, 1fr); }
}
/* global LINE button (reused on product detail) */
.btn-line { background: #06c755; color: #fff; }
.btn-line:hover { background: #05a546; color: #fff; }
/* ---- Product detail ---- */
.pd-crumb { font-size: 14px; color: var(--graphite); margin-bottom: var(--s-md); }
.pd-layout { display: grid; gap: var(--s-xl); }
.pd-media img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--lift); background: var(--cloud); }
.pd-brand { font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--primary); margin-bottom: var(--s-xs); }
.pd-name { font-size: 30px; margin-bottom: var(--s-md); }
.pd-desc { font-size: 16px; line-height: 1.7; color: var(--charcoal); margin-bottom: var(--s-lg); }
.pd-actions { display: flex; flex-wrap: wrap; gap: var(--s-sm); margin-bottom: var(--s-xl); }
.pd-downloads { border-top: 1px solid var(--hairline); padding-top: var(--s-lg); }
.pd-downloads h3 { font-size: 17px; margin-bottom: var(--s-xs); }
.pd-dl-note { font-size: 14px; color: var(--graphite); margin-bottom: var(--s-xs); }
.pd-dl-list { list-style: none; margin: 0 0 var(--s-sm); padding: 0; }
.pd-dl-list li { margin: 0 0 6px; }
.pd-dl-list a { font-weight: 500; }
@media (min-width: 768px) {
  .products-layout { grid-template-columns: 240px 1fr; align-items: start; }
  .pgrid { grid-template-columns: repeat(3, 1fr); }
  .dlgrid { grid-template-columns: repeat(2, 1fr); }
  .pd-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}
@media (min-width: 1100px) { .pgrid { grid-template-columns: repeat(4, 1fr); } .dlgrid { grid-template-columns: repeat(3, 1fr); } }
.prod-card .icon { width: 48px; height: 48px; border-radius: var(--r-lg); background: var(--primary-soft); color: var(--primary-deep); display: flex; align-items: center; justify-content: center; margin-bottom: var(--s-md); }
.prod-card .icon svg { width: 26px; height: 26px; }
.prod-card h3 { font-size: 19px; margin-bottom: 2px; }
.prod-card .p-model { font-size: 13px; font-weight: 600; letter-spacing: .3px; color: var(--primary); margin-bottom: var(--s-xs); }
.prod-card p { font-size: 14px; line-height: 1.55; color: var(--charcoal); }

/* ============================================================
   SOLUTIONS BY SECTOR
   ============================================================ */
.sector-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: var(--s-md); }
.sector { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; color: var(--ink); transition: box-shadow .15s, border-color .15s; }
a.sector:hover { box-shadow: var(--lift); border-color: var(--primary-soft); text-decoration: none; }
.sector-img { display: block; aspect-ratio: 16 / 10; background: var(--cloud); }
.sector-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sector-meta { display: flex; align-items: center; gap: var(--s-xs); padding: var(--s-md); }
.sector .s-ico { color: var(--primary); flex: none; }
.sector .s-ico svg { width: 22px; height: 22px; }
.sector .s-emoji { font-size: 22px; line-height: 1; flex: none; }
.sector .s-name { font-size: 15px; font-weight: 500; }
.sector .s-go { margin-left: auto; color: var(--primary); font-weight: 700; }

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.cert-layout { display: grid; grid-template-columns: 1fr; gap: var(--s-xl); align-items: start; }
.cert-feature { background: var(--canvas); border-radius: var(--r-xl); box-shadow: var(--lift); padding: var(--s-xl); border: 1px solid var(--primary-soft); }
.cert-feature .badge { display: inline-block; background: var(--primary-soft); color: var(--primary-deep); font-size: 14px; font-weight: 700; letter-spacing: 0.5px; padding: 4px 10px; border-radius: var(--r-sm); margin-bottom: var(--s-sm); font-family: 'Inter', sans-serif; }
.cert-feature .iso-logo { height: 84px; width: auto; max-width: 100%; display: block; margin-bottom: var(--s-md); }
.cert-feature h3 { font-size: 22px; margin-bottom: var(--s-xs); }
.cert-feature p { font-size: 15px; line-height: 1.55; color: var(--charcoal); margin-bottom: var(--s-md); }
.cert-list { display: grid; grid-template-columns: 1fr; gap: var(--s-sm); }
.cert-item { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: var(--s-md); display: flex; gap: var(--s-sm); align-items: flex-start; }
.cert-item .tick { color: var(--primary); font-weight: 700; }
.cert-item .ci-title { font-weight: 500; font-size: 15px; }
.cert-item .ci-sub { font-size: 13px; color: var(--graphite); margin-top: 2px; }

/* ============================================================
   CONTACT BAND + FOOTER
   ============================================================ */
.contact-band { background: var(--brand-dark); color: var(--on-ink); }
/* On the blue contact band, the blue primary CTA would vanish — render it as a white-outline button */
.contact-band .btn-primary { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.contact-band .btn-primary:hover { background: rgba(255, 255, 255, 0.12); }
.contact-band .wrap { padding: 56px var(--s-md); }
.contact-band h2 { font-size: 28px; color: #fff; }
.contact-band .c-intro { margin-top: var(--s-sm); color: var(--on-ink-muted); max-width: 620px; }
.contact-grid { margin-top: var(--s-xl); display: grid; grid-template-columns: 1fr; gap: var(--s-md); }
.contact-card { background: var(--slab); border-radius: var(--r-xl); padding: var(--s-xl); }
.contact-card h3 { font-size: 16px; color: #fff; margin-bottom: var(--s-sm); }
.contact-card .addr { font-size: 14px; line-height: 1.6; color: var(--on-ink-soft); }
.contact-card .tel { display: inline-block; margin-top: var(--s-sm); font-size: 16px; font-weight: 600; color: #fff; }
.contact-card .tel:hover { color: var(--primary-bright); text-decoration: none; }
.contact-card .map-link { display: block; margin-top: var(--s-xs); font-size: 13px; font-weight: 500; color: var(--on-ink-muted); }
.contact-card .map-link:hover { color: #fff; }
.contact-actions { margin-top: var(--s-xl); display: flex; flex-wrap: wrap; gap: var(--s-sm); }

/* ---- Contact page (form + info + map) ---- */
.contact-page { display: grid; gap: var(--s-xxl); }
.contact-form-col h2 { font-size: 24px; margin-bottom: var(--s-md); }
.contact-form label { display: block; margin-bottom: var(--s-md); font-size: 14px; font-weight: 500; color: var(--ink); }
.contact-form input, .contact-form textarea, .contact-form select { display: block; width: 100%; margin-top: 6px; padding: 11px 14px; font: inherit; font-size: 15px; color: var(--ink); background: var(--canvas); border: 1px solid var(--steel); border-radius: var(--r-md); }
.contact-form select { height: 44px; cursor: pointer; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px var(--primary-soft); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: var(--s-xs); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { padding: 12px 16px; border-radius: var(--r-lg); font-size: 14px; margin-bottom: var(--s-md); }
.form-ok { background: #e7f4ea; color: #1e6b39; border: 1px solid #bfe3c9; }
.form-err { background: #fdecec; color: #a02020; border: 1px solid #f3c4c4; }
.contact-info-col .btn-line { background: #06c755; color: #fff; width: 100%; margin-bottom: var(--s-sm); }
.contact-info-col .btn-line:hover { background: #05a546; text-decoration: none; }
.info-email { display: inline-block; margin-bottom: var(--s-lg); font-weight: 500; }
.office { margin-bottom: var(--s-lg); }
.office h3 { font-size: 17px; margin-bottom: var(--s-xs); }
.office .addr { font-size: 14px; line-height: 1.6; color: var(--charcoal); margin-bottom: 4px; }
.office p { font-size: 14px; }
.map-embed { margin-top: var(--s-xl); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--lift); }
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }
.map-open { margin-top: var(--s-sm); font-size: 14px; font-weight: 500; }
@media (min-width: 768px) {
  .contact-page { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
}

footer.site { background: var(--brand-dark); color: var(--on-ink); }
footer.site .wrap { padding: 48px var(--s-md) var(--s-xl); }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-xl); }
.foot-col h4 { font-size: 14px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #fff; margin-bottom: var(--s-sm); }
.foot-col a, .foot-col p { display: block; color: var(--foot-text); font-size: 14px; line-height: 1.9; }
.foot-col a:hover { color: #fff; }
.foot-brand .logo { color: #fff; margin-bottom: var(--s-sm); }
.foot-brand .logo .mark { color: var(--primary-bright); }
.foot-brand p { color: var(--foot-text-dim); font-size: 14px; line-height: 1.6; max-width: 300px; }
.foot-social { margin-top: var(--s-md); display: flex; gap: var(--s-sm); }
.foot-social a { color: var(--foot-text); }
.foot-social svg { width: 22px; height: 22px; }
.foot-bottom { border-top: 1px solid var(--hairline-dark); margin-top: var(--s-xl); padding-top: var(--s-md); display: flex; flex-wrap: wrap; gap: var(--s-xs); justify-content: space-between; font-size: 12px; color: var(--steel); }

/* ============================================================
   INNER PAGE CONTENT (page.php / posts)
   ============================================================ */
.page-hero { background: var(--cloud); border-bottom: 1px solid var(--hairline); }
.page-hero .wrap { padding: var(--s-xxl) var(--s-md); }
.page-hero h1 { font-size: 32px; }
.page-content { max-width: 75ch; font-size: 16px; line-height: 1.7; color: var(--ink); }
.page-content > *:first-child { margin-top: 0; }
.page-content h2 { font-size: 26px; margin: 1.5em 0 .4em; }
.page-content h3 { font-size: 20px; margin: 1.3em 0 .3em; }
.page-content p { margin: 0 0 1em; }
.page-content ul, .page-content ol { margin: 0 0 1em 1.2em; }
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: .4em; }
.page-content img { border-radius: var(--r-lg); margin: 1.2em 0; }
.page-content a { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 768px) {
  :root { --s-section: 80px; }
  .wrap { padding: 0 var(--s-xxl); }
  .hero h1 { font-size: 52px; }
  .page-hero h1 { font-size: 44px; }
  nav.primary { display: flex; }
  .hamburger { display: none; }
  .utility .wrap { min-height: 36px; }
  .lang-toggle button { min-height: 30px; padding: 6px 12px; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-layout { grid-template-columns: 1.1fr 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .contact-band h2, .band-head h2 { font-size: 34px; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 60px; }
  .hero .stats { grid-template-columns: repeat(4, 1fr); }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .prod-grid { grid-template-columns: repeat(5, 1fr); }
  .sector-grid { grid-template-columns: repeat(3, 1fr); }
  .chevron { display: block; }
}

/* =========================================================================
   SUPPORT CENTER (page-service-center.php)
   ========================================================================= */
/* Shared section heads */
.sec-title { font-size: 26px; margin-bottom: var(--s-xs); }
.sec-sub { font-size: 16px; line-height: 1.55; color: var(--charcoal); margin-bottom: var(--s-lg); max-width: 64ch; }
.section-alt { background: var(--cloud); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }

/* Hero jump chips */
.support-jump { display: flex; flex-wrap: wrap; gap: var(--s-xs); margin-top: var(--s-md); }
.support-jump .chip {
  display: inline-block; font-size: 14px; font-weight: 500; line-height: 1;
  padding: 9px 14px; border-radius: var(--r-lg); background: var(--canvas);
  border: 1px solid var(--steel); color: var(--ink);
}
.support-jump .chip:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

/* Repair embed */
.repair-embed { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-xl); box-shadow: var(--lift); overflow: hidden; }
.repair-contact { font-size: 14px; color: var(--graphite); margin-top: var(--s-sm); }
.repair-contact a { font-weight: 500; }

/* Manuals */
.manuals-search { margin-bottom: var(--s-lg); max-width: 420px; }
.manuals-wrap { display: grid; gap: var(--s-lg); }
.manuals-brand-name { font-size: 14px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--primary); margin-bottom: var(--s-xs); padding-bottom: var(--s-xs); border-bottom: 1px solid var(--hairline); }
.manuals-items { list-style: none; margin: 0; padding: 0; }
.manuals-row { display: flex; flex-wrap: wrap; gap: var(--s-xs) var(--s-md); align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--hairline); }
.manuals-model { font-weight: 500; min-width: 160px; }
.manuals-files { display: flex; flex-wrap: wrap; gap: var(--s-md); }
.manuals-files a { font-size: 14px; font-weight: 500; }
.empty-state { background: var(--canvas); border: 1px dashed var(--steel); border-radius: var(--r-xl); padding: var(--s-xl); text-align: center; }
.empty-state p { color: var(--graphite); margin-bottom: var(--s-md); }

/* NBTC band */
.nbtc-band { background: var(--canvas); border: 1px solid var(--primary-soft); border-radius: var(--r-xl); box-shadow: var(--lift); padding: var(--s-xl); display: grid; gap: var(--s-md); align-items: center; }
.nbtc-band .badge { display: inline-block; background: var(--primary-soft); color: var(--primary-deep); font-size: 13px; font-weight: 700; letter-spacing: .5px; padding: 4px 10px; border-radius: var(--r-sm); margin-bottom: var(--s-xs); }
.nbtc-band .sec-sub { margin-bottom: 0; }

/* FAQ */
.faq-search { margin-bottom: var(--s-md); max-width: 420px; }
.faq-tabs { display: flex; flex-wrap: wrap; gap: var(--s-xs); margin-bottom: var(--s-lg); }
.faq-tab {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; cursor: pointer;
  padding: 8px 14px; border-radius: var(--r-lg); background: var(--canvas);
  border: 1px solid var(--steel); color: var(--ink);
}
.faq-tab:hover { border-color: var(--primary); color: var(--primary); }
.faq-tab.active { background: var(--primary); border-color: var(--primary); color: var(--on-primary); }
.faq-list { border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); background: var(--canvas); }
.faq-q { cursor: pointer; list-style: none; padding: var(--s-md) 36px var(--s-md) var(--s-sm); font-size: 16px; font-weight: 500; position: relative; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "+"; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 22px; font-weight: 400; color: var(--primary); line-height: 1; }
.faq-item[open] .faq-q::after { content: "\2212"; }
.faq-a { padding: 0 var(--s-sm) var(--s-md); font-size: 15px; line-height: 1.65; color: var(--charcoal); }
.faq-empty, .manuals-empty { color: var(--graphite); padding: var(--s-md) 0; }
.faq-more { margin-top: var(--s-lg); font-size: 15px; display: flex; flex-wrap: wrap; gap: var(--s-sm); align-items: center; }

@media (min-width: 768px) {
  .sec-title { font-size: 30px; }
  .nbtc-band { grid-template-columns: 1fr auto; gap: var(--s-xl); padding: var(--s-xxl); }
  .manuals-row { flex-wrap: nowrap; }
}

/* =========================================================================
   HOMEPAGE: TRUST STRIP + ABOUT BAND (v0.5.0)
   ========================================================================= */
.trust-strip { background: var(--cloud); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.trust-list { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--s-sm) var(--s-xl); margin: 0; padding: var(--s-md) 0; list-style: none; }
.trust-list li { font-size: 13px; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; color: var(--graphite); display: inline-flex; align-items: center; }
.trust-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); margin-right: 8px; flex: none; }

.about-grid { display: grid; gap: var(--s-xl); }
.about-copy h2 { font-size: 26px; margin-bottom: var(--s-sm); }
.about-copy p { font-size: 16px; line-height: 1.7; color: var(--charcoal); margin-bottom: var(--s-lg); }
.about-points { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-sm); }
.about-points li { position: relative; padding-left: 28px; font-size: 15px; line-height: 1.5; color: var(--ink); }
.about-points li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 700; }

/* CONTACT: 3-pin Leaflet map */
.map3 { margin-top: var(--s-xl); height: 380px; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--hairline); box-shadow: var(--lift); }
.map3 .leaflet-container { height: 100%; width: 100%; font: inherit; }
.map-legend { display: flex; flex-wrap: wrap; gap: var(--s-md); margin-top: var(--s-sm); font-size: 14px; color: var(--charcoal); }
.map-legend .dot { display: inline-block; width: 11px; height: 11px; border-radius: 50%; margin-right: 7px; vertical-align: middle; border: 1px solid rgba(0,0,0,.15); }

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1.5fr 1fr; align-items: center; }
  .about-copy h2 { font-size: 30px; }
}

/* =========================================================================
   DISCONTINUED PRODUCTS (v0.6.0)
   ========================================================================= */
.pcard-media { position: relative; }
.pcard-badge { position: absolute; top: 8px; right: 8px; z-index: 1; background: var(--brand-red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .3px; padding: 3px 8px; border-radius: var(--r-sm); text-transform: uppercase; }
.pcard--disc .pcard-img { filter: grayscale(.55); opacity: .85; }
.pd-disc-notice { background: #fdecec; border: 1px solid #f6c9c9; border-left: 4px solid var(--brand-red); border-radius: var(--r-md); padding: 12px 14px; margin-bottom: var(--s-md); font-size: 14px; line-height: 1.55; color: var(--charcoal); }
.pd-disc-notice strong { display: block; color: #b3262b; margin-bottom: 2px; }
.manuals-disc { color: var(--graphite); font-size: 13px; font-weight: 400; }

/* =========================================================================
   ABOUT — "Inside our factory" gallery (v0.6.2)
   ========================================================================= */
.about-gallery { display: grid; grid-template-columns: 1fr; gap: var(--s-md); }
.ag-item { margin: 0; }
.ag-item img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--lift); background: var(--cloud); display: block; }
.ag-item figcaption { font-size: 14px; font-weight: 500; color: var(--charcoal); margin-top: var(--s-xs); }
@media (min-width: 768px) { .about-gallery { grid-template-columns: 1fr 1fr; gap: var(--s-lg); } }

/* =========================================================================
   INDUSTRY (single-tccom_industry.php) — staff-editable solutions pages
   ========================================================================= */
.industry-hero .ind-crumb { font-size: 14px; color: var(--graphite); margin-bottom: var(--s-sm); }
.industry-hero h1 { display: flex; align-items: center; gap: 12px; }
.industry-hero .ind-emoji { font-size: 34px; line-height: 1; }
.industry-layout { display: grid; gap: var(--s-xl); align-items: start; }
.industry-body :is(p) { font-size: 16px; line-height: 1.75; color: var(--charcoal); margin-bottom: var(--s-md); }
.industry-actions { display: flex; flex-wrap: wrap; gap: var(--s-sm); margin-top: var(--s-lg); }
.industry-media img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--lift); background: var(--cloud); }
.ind-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-sm); }
.ind-card { display: flex; align-items: center; gap: var(--s-sm); background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: var(--s-md); color: var(--ink); transition: box-shadow .15s, border-color .15s; }
.ind-card:hover { box-shadow: var(--lift); border-color: var(--primary-soft); text-decoration: none; }
.ind-card-ico { font-size: 22px; line-height: 1; flex: none; }
.ind-card-name { font-size: 15px; font-weight: 500; }
@media (min-width: 768px) {
  .industry-layout { grid-template-columns: 1.5fr 1fr; }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================================
   PRODUCT DETAIL: specifications table + compatible accessories (v0.6.7)
   ========================================================================= */
.pd-specs, .pd-accessories { margin-top: var(--s-xxl); }
.pd-sec-title { font-size: 22px; margin-bottom: var(--s-md); padding-bottom: var(--s-xs); border-bottom: 2px solid var(--primary-soft); }
.pd-spec-table { width: 100%; border-collapse: collapse; max-width: 760px; }
.pd-spec-table th, .pd-spec-table td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--hairline); font-size: 15px; vertical-align: top; }
.pd-spec-table th { width: 38%; font-weight: 600; color: var(--charcoal); background: var(--cloud); }
.pd-spec-table td { color: var(--ink); }
.pd-acc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-md); }
.pd-acc-card { display: flex; flex-direction: column; background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-lg); overflow: hidden; color: var(--ink); }
.pd-acc-img { display: block; aspect-ratio: 1 / 1; background: var(--cloud); }
.pd-acc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-acc-noimg { background: var(--cloud) repeating-linear-gradient(45deg, transparent, transparent 9px, rgba(0,0,0,.025) 9px, rgba(0,0,0,.025) 18px); }
.pd-acc-body { padding: 10px 12px; }
.pd-acc-type { display: block; font-size: 11px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--primary); margin-bottom: 2px; }
.pd-acc-name { font-size: 14px; font-weight: 500; color: var(--ink); }
@media (min-width: 768px) {
  .pd-acc-grid { grid-template-columns: repeat(4, 1fr); }
}
