/* ============================================================
   APM THEME — MAIN CSS (BEM)
   Primary: #024b9e | Accent: #e63946
   ============================================================ */

/* 1. VARIABLES */
:root {
  --clr-primary:       #024b9e;
  --clr-primary-dark:  #013677;
  --clr-primary-mid:   #1a6bc4;
  --clr-primary-light: #e5f0fb;
  --clr-accent:        #e63946;
  --clr-accent-dark:   #c1121f;
  --clr-gold:          #f0a500;
  --clr-zalo:          #0068ff;
  --clr-text:          #1c2237;
  --clr-text-light:    #64748b;
  --clr-border:        #e2e8f0;
  --clr-bg:            #ffffff;
  --clr-bg-alt:        #f7f9fc;
  --clr-bg-dark:       #081529;

  /*
   * Be Vietnam Pro: designed for Vietnamese diacritics, clean & modern.
   * Fallback chain: system-ui covers macOS/iOS (SF Pro), -apple-system is
   * older Safari alias, Segoe UI is Windows, Arial is universal last resort.
   */
  --font-base:   'Be Vietnam Pro', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --font-size:   16px;
  /*
   * 1.7 line-height for Vietnamese: diacritics stack above AND below
   * base characters (e.g. ộ, ừ, ẩ). 1.6 can visually clip descenders.
   */
  --line-height: 1.7;

  /*
   * ── Elementor Kit typography variable overrides ──────────────
   * Elementor Pro reads these CSS variables for its global typography.
   * The old The7 site kit (ID 6) set these to "Roboto" / "Roboto Slab".
   * By redefining them on :root, every Elementor widget that references
   * these variables will use Be Vietnam Pro instead of Roboto.
   * This affects only Elementor's variable-driven typography, not
   * any hard-coded font-family values in widget inline styles.
   * ─────────────────────────────────────────────────────────── */
  --e-global-typography-primary-font-family:   'Be Vietnam Pro';
  --e-global-typography-secondary-font-family: 'Be Vietnam Pro';
  --e-global-typography-text-font-family:      'Be Vietnam Pro';
  --e-global-typography-accent-font-family:    'Be Vietnam Pro';

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);

  --section-py: 100px;
  --section-py-sm: 60px;
  --section-py-xs: 40px;
  --gap-sm:     16px;
  --gap-xs:     12px;
  --container:  1200px;
  --gap:        24px;

  --header-h:   70px;
  --topbar-h:   36px;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--font-size); scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-base);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* optimizeLegibility: enables kerning + ligatures for Vietnamese text */
  text-rendering: optimizeLegibility;
  padding-top: calc(var(--topbar-h) + var(--header-h));
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
/*
 * Browsers (especially Firefox/Chrome) do NOT inherit font-family into
 * form controls by default. The `font: inherit` shorthand fixes all of:
 * font-family, font-size, font-weight, line-height in one declaration.
 */
button, input, select, textarea, optgroup {
  font: inherit;
  letter-spacing: inherit;
}
button { cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--clr-primary); outline-offset: 2px; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.skip-link:focus {
  clip: auto !important;
  height: auto; width: auto;
  position: fixed;
  top: 0; left: 0;
  background: var(--clr-primary);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
}

/* 3. TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-base); /* explicit: prevents plugin overrides */
  font-weight: 700;
  /*
   * 1.35 for headings: tighter than body (1.7) but Vietnamese tones on
   * caps need breathing room. 1.25 was clipping tổng hợp / thiết bị etc.
   */
  line-height: 1.35;
  color: var(--clr-text);
}
h1 { font-size: clamp(28px, 4vw, 48px); }
h2 { font-size: clamp(22px, 3vw, 36px); }
h3 { font-size: clamp(18px, 2.2vw, 24px); }
h4 { font-size: 18px; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* 4. LAYOUT */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.section { padding-block: var(--section-py); }
.section--alt { background: var(--clr-bg-alt); }

.section__header { margin-bottom: 48px; text-align: center; }
.section__header--flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  gap: 16px;
  flex-wrap: wrap;
}
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: var(--clr-primary-light);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section__eyebrow--light {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
}
.section__title { margin-bottom: 12px; color: var(--clr-text); }
.section__title--light { color: #fff; }
.section__sub { color: var(--clr-text-light); font-size: 17px; max-width: 600px; margin-inline: auto; }
.section__sub--light { color: rgba(255,255,255,.75); }

/* 5. BUTTONS */
.btn {
  padding: 14px 32px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}
.btn--primary {
  background: var(--clr-primary);
  color: #fff;
  border: 2px solid var(--clr-primary);
}
.btn--primary:hover {
  background: var(--clr-primary-dark);
  border-color: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 75, 158, .35);
}
.btn--accent {
  background: var(--clr-accent);
  color: #fff;
  border: 2px solid var(--clr-accent);
}
.btn--accent:hover {
  background: var(--clr-accent-dark);
  border-color: var(--clr-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 57, 70, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.btn--outline:hover {
  background: var(--clr-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 75, 158, .2);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn--outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn--zalo { background: var(--clr-zalo); color: #fff; border: 2px solid var(--clr-zalo); }
.btn--zalo:hover { background: #0052cc; border-color: #0052cc; }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }
.btn--icon { gap: 10px; }
.btn[disabled], .btn.loading { opacity: .65; pointer-events: none; }

/* 6. HEADER */
/* ════════════════════════════════════════════════════════════
   6. SITE HEADER
   Layout: 3-column grid  [Logo | Nav (centered) | CTA]
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: none;
  transition: box-shadow .2s;
}
.site-header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.10);
}

/* ── Topbar ─────────────────────────────────────────────── */
.site-header__topbar {
  background: var(--clr-primary);
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.site-header__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header__topbar-left,
.site-header__topbar-right { display: flex; align-items: center; gap: 16px; }
.site-header__topbar-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px;
}
.site-header__topbar-link { color: rgba(255,255,255,.8); transition: color .15s; }
.site-header__topbar-link:hover { color: #fff; }
.site-header__topbar-zalo {
  background: rgba(255,255,255,.15);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  transition: background .15s;
}
.site-header__topbar-zalo:hover { background: rgba(255,255,255,.25); }

/* ── Main header bar ────────────────────────────────────── */
.site-header__main {
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
}

/*
 * 3-column grid:
 *   col 1 (auto)  → logo, fixed width, doesn't grow
 *   col 2 (1fr)   → nav, takes all remaining space → menu auto-centers
 *   col 3 (auto)  → CTA buttons, fixed width
 */
.site-header__main-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
}

/* ── Logo ───────────────────────────────────────────────── */
.site-header__brand { flex-shrink: 0; }
.site-header__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header__logo-img {
  height: 48px;
  width: auto;
  max-width: 260px;
  max-height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}
.site-header__logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: -.02em;
}

/* ── CTA (right column) ─────────────────────────────────── */
.site-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.site-header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  color: var(--clr-primary);
  white-space: nowrap;
  transition: color .15s;
}
.site-header__phone svg { flex-shrink: 0; }
.site-header__phone:hover { color: var(--clr-accent); }

/* ════════════════════════════════════════════════════════════
   7. PRIMARY NAVIGATION  (centered inside the grid middle col)
   ════════════════════════════════════════════════════════════ */
.site-nav { /* middle col — fills 1fr */ }

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center; /* ← CENTERS the menu items */
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
}

.site-nav__list > li { position: relative; }
.site-nav__list > li::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.site-nav__list > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text);
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
  white-space: nowrap;
  /* Underline indicator */
  position: relative;
}
.site-nav__list > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-nav__list > li > a:hover { color: var(--clr-primary); }
.site-nav__list > li > a:hover::after { transform: scaleX(1); }

/* Active page */
.site-nav__list .current-menu-item > a,
.site-nav__list .current-page-ancestor > a {
  color: var(--clr-primary);
  font-weight: 700;
}
.site-nav__list .current-menu-item > a::after,
.site-nav__list .current-page-ancestor > a::after {
  transform: scaleX(1);
}

/* ── Dropdown sub-menu ──────────────────────────────────── */
.site-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--clr-primary);
  padding: 6px 0;
  z-index: 1200;
  /* Smooth reveal */
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.site-nav__list > li:hover > .sub-menu,
.site-nav__list > li:focus-within > .sub-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-nav__list .sub-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text);
  border-radius: 0;
  transition: background .12s, color .12s;
}
.site-nav__list .sub-menu a:hover {
  background: var(--clr-primary-light);
  color: var(--clr-primary);
}

/* ── Mobile hamburger toggle ────────────────────────────── */
.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  padding: 0;
  cursor: pointer;
}
.site-header__toggle-bar {
  display: block;
  width: 100%; height: 2.5px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(1) { transform: translateY(8.75px) rotate(45deg); }
.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(3) { transform: translateY(-8.75px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════
   8. HERO SECTION
   ════════════════════════════════════════════════════════════ */
/* ── Hero keyframes ──────────────────────────────────────────────────────── */
@keyframes hero-kb-a {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.09) translate(-1.5%, -1%); }
}
@keyframes hero-kb-b {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.09) translate(1.5%, -1%); }
}
@keyframes hero-kb-c {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.1)  translate(-1%, 1.2%); }
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero shell ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 680px;
  overflow: hidden;
  background-color: var(--clr-bg-dark);
}

/* Slide backgrounds */
.hero__slides {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity, transform;
}

.hero__slide.is-active {
  opacity: 1;
}

/* Ken Burns — different pan direction per slide index */
.hero__slide:nth-child(3n+1).is-active { animation: hero-kb-a 9s ease-in-out forwards; }
.hero__slide:nth-child(3n+2).is-active { animation: hero-kb-b 9s ease-in-out forwards; }
.hero__slide:nth-child(3n+3).is-active { animation: hero-kb-c 9s ease-in-out forwards; }

/* Gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(2, 75, 158, .84) 0%,
    rgba(15, 27, 46, .62) 55%,
    rgba(15, 27, 46, .40) 100%
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 80px;
}

.hero__content {
  max-width: 680px;
  color: #fff;
}

/* Staggered text entrance */
.hero__pretitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  opacity: 0;
  animation: hero-fade-up .7s .15s cubic-bezier(.22,1,.36,1) forwards;
}

.hero__heading {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,.22);
  opacity: 0;
  animation: hero-fade-up .75s .35s cubic-bezier(.22,1,.36,1) forwards;
}

.hero__sub {
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.72;
  color: rgba(255,255,255,.88);
  margin-bottom: 40px;
  max-width: 560px;
  opacity: 0;
  animation: hero-fade-up .7s .55s cubic-bezier(.22,1,.36,1) forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  opacity: 0;
  animation: hero-fade-up .7s .75s cubic-bezier(.22,1,.36,1) forwards;
}

.hero__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  opacity: 0;
  animation: hero-fade-up .6s .95s cubic-bezier(.22,1,.36,1) forwards;
}
.hero__phone a {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.hero__phone a:hover { text-decoration: underline; }

/* Dot navigation */
.hero__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: width .35s ease, border-radius .35s ease, background .3s ease;
}

.hero__dot.is-active {
  width: 26px;
  border-radius: 4px;
  background: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .hero__pretitle,
  .hero__heading,
  .hero__sub,
  .hero__actions,
  .hero__phone { animation: none; opacity: 1; transform: none; }
  .hero__slide.is-active { animation: none; }
}

/* 9. TRUST BAR */
.trust-bar {
  background: var(--clr-primary);
  padding-block: 28px;
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 8px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__number {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1;
}
.trust-bar__suffix { font-size: 16px; font-weight: 600; }
.trust-bar__label { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 4px; }

/* 10. CATEGORY GRID — overlay image card design */
.categories-section { background: var(--clr-bg-alt); }

/* Grid layout */
.cat-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.cat-grid--featured {
  /* 3-col: first col spans 2 rows to create a "lead" card */
  grid-template-columns: 1.15fr 1fr 1fr;
}

/* Card base */
.cat-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  text-decoration: none;
  color: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
  will-change: transform;
}
.cat-card:hover,
.cat-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(5,15,35,.28);
  outline: none;
}
/* Lead card fills two rows, ignore fixed aspect-ratio */
.cat-card--lead {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 340px;
}

/* Background image layer */
.cat-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  display: block;
}
.cat-card:hover .cat-card__img { transform: scale(1.07); }
.cat-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
}

/* Gradient overlay */
.cat-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(5,15,35,.10) 0%,
    rgba(5,15,35,.28) 45%,
    rgba(5,15,35,.80) 100%
  );
  transition: background .35s ease;
}
.cat-card:hover .cat-card__overlay {
  background: linear-gradient(
    to bottom,
    rgba(5,15,35,.20) 0%,
    rgba(5,15,35,.42) 45%,
    rgba(5,15,35,.88) 100%
  );
}

/* Content layer */
.cat-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 22px;
}
.cat-card--lead .cat-card__content { padding: 26px 30px; }

/* Top: product count pill */
.cat-card__top { display: flex; justify-content: flex-end; }
.cat-card__count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.22);
  padding: 4px 10px;
  border-radius: 100px;
}

/* Bottom: name, description, CTA */
.cat-card__bottom { display: flex; flex-direction: column; gap: 5px; }
.cat-card__name {
  font-size: clamp(14px, 1.5vw, 19px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}
.cat-card--lead .cat-card__name { font-size: clamp(18px, 2.2vw, 26px); }
.cat-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .22s ease, transform .22s ease;
}
.cat-card__cta svg { flex-shrink: 0; transition: transform .2s ease; }
.cat-card:hover .cat-card__cta,
.cat-card:focus-visible .cat-card__cta {
  opacity: 1;
  transform: translateY(0);
}
.cat-card:hover .cat-card__cta svg { transform: translateX(4px); }

/* 11. PRODUCT GRID */
.product-grid { display: grid; gap: var(--gap); }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.product-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* 12. PRODUCT CARD */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  position: relative;
}
/* Top-edge accent line that grows in on hover */
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
  z-index: 1;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(2,75,158,.14);
  border-color: rgba(2,75,158,.2);
}
.product-card:hover::before { transform: scaleX(1); }

.product-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
  background: var(--clr-bg-alt);
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.product-card:hover .product-card__img { transform: scale(1.07); }
/* Subtle image overlay on hover */
.product-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2,75,158,.06);
  opacity: 0;
  transition: opacity .28s ease;
}
.product-card:hover .product-card__img-wrap::after { opacity: 1; }

/* Watermark logo — top-left corner of every product image */
.product-card__img-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  width: clamp(60px, 38%, 130px);
  aspect-ratio: 812 / 298;
  background: var(--apm-wm-hz, none) no-repeat center / contain;
  pointer-events: none;
  opacity: .82;
}

.product-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-border);
}
.product-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-primary);
  text-decoration: none;
}
.product-card__cat:hover { text-decoration: underline; }
.product-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
}
.product-card__title a { color: var(--clr-text); text-decoration: none; }
.product-card__title a:hover { color: var(--clr-primary); }
.product-card__excerpt {
  font-size: 13px;
  color: var(--clr-text-light);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}
.product-card__actions .btn { flex: 1; justify-content: center; }

/* 13. WHY US */
.why-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-section .section__title { text-align: left; margin-bottom: 12px; }
.why-section .section__sub { text-align: left; margin-inline: 0; margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-list__item { display: flex; gap: 16px; align-items: flex-start; }
.why-list__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--clr-primary-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-primary);
}
.why-list__item strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.why-list__item p { font-size: 14px; color: var(--clr-text-light); margin: 0; }
.why-section__visual { position: relative; }
.why-section__img-wrap { border-radius: var(--radius-xl); overflow: hidden; }
.why-section__img { width: 100%; height: auto; }
.why-section__img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--clr-primary-light), var(--clr-border));
  border-radius: var(--radius-xl);
}
.why-section__badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--clr-primary);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-section__badge-num { display: block; font-size: 36px; font-weight: 800; }
.why-section__badge-label { font-size: 13px; color: rgba(255,255,255,.8); }

/* 14. VIDEO SECTION */
.video-section {
  background: var(--clr-bg-dark);
  padding-block: var(--section-py);
}
.video-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.video-section__text .section__title { margin-bottom: 16px; }
.video-section__text .section__sub { margin-bottom: 28px; }
.video-section__embed { border-radius: var(--radius-xl); overflow: hidden; }
.video-section__thumb { position: relative; cursor: pointer; aspect-ratio: 16/9; }
.video-section__thumb-img { width: 100%; height: 100%; object-fit: cover; }
.video-section__play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 28px rgba(0,0,0,.45);
  transition: transform .2s, background .2s;
  color: var(--clr-primary);
}
.video-section__play-btn:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.12);
}
.video-section__iframe { width: 100%; aspect-ratio: 16/9; border: none; }

/* 15. NEWS GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.news-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-card__img-link { display: block; overflow: hidden; aspect-ratio: 16/9; }
.news-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.news-card:hover .news-card__img { transform: scale(1.05); }
.news-card__body { padding: 20px; }
.news-card__date { font-size: 12px; color: var(--clr-text-light); display: block; margin-bottom: 8px; }
.news-card__title { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.news-card__title a:hover { color: var(--clr-primary); }
.news-card__excerpt { font-size: 14px; color: var(--clr-text-light); margin-bottom: 14px; }
.news-card__more { font-size: 13px; font-weight: 600; color: var(--clr-primary); }
.news-card__more:hover { text-decoration: underline; }

/* 16. CONTACT CTA */
.cta-section {
  background: var(--clr-primary);
  padding-block: var(--section-py);
}
.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cta-section__title { color: #fff; font-size: clamp(24px, 3vw, 36px); margin-bottom: 12px; }
.cta-section__sub { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 24px; }
.cta-section__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 28px;
  transition: opacity .15s;
}
.cta-section__phone:hover { opacity: .85; }
.cta-section__benefits { display: flex; flex-direction: column; gap: 8px; }
.cta-section__benefits li { color: rgba(255,255,255,.85); font-size: 15px; }

/* 17. FORMS */
.cta-form,
.quote-form { display: flex; flex-direction: column; gap: 16px; }
.cta-form__field,
.quote-form__field { display: flex; flex-direction: column; gap: 6px; }
.cta-form__label,
.quote-form__label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9); }
.cta-form .cta-form__label { color: rgba(255,255,255,.9); }
.quote-form__label { color: var(--clr-text); }
.cta-form__input,
.quote-form__input {
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.cta-form__input::placeholder { color: rgba(255,255,255,.5); }
.cta-form__input:focus { outline: none; border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.18); }
.cta-form__select { appearance: none; }
.cta-form__select option { background: var(--clr-primary); color: #fff; }
.quote-form .quote-form__input {
  border-color: var(--clr-border);
  background: #fff;
  color: var(--clr-text);
}
.quote-form .quote-form__input::placeholder { color: var(--clr-text-light); }
.quote-form .quote-form__input:focus { outline: none; border-color: var(--clr-primary); }
.quote-form__textarea { resize: vertical; min-height: 80px; }
.cta-form__msg,
.quote-form__msg { font-size: 14px; min-height: 20px; font-weight: 500; }
.quote-form__note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--clr-text-light);
}
.cta-form .quote-form__note {
  color: rgba(255,255,255,.78);
}
.cta-form__msg--success,
.quote-form__msg--success { color: #4ade80; }
.cta-form__msg--error,
.quote-form__msg--error { color: #fca5a5; }

/* 18. FOOTER */
.site-footer {
  background: var(--clr-bg-dark);
  color: rgba(255,255,255,.72);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary) 0%, var(--clr-primary-mid) 50%, var(--clr-accent) 100%);
}

/* Trust bar */
.footer-trust {
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding-block: 28px;
}
.footer-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.footer-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.footer-trust__icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-primary-mid);
}
.footer-trust__icon svg { width: 18px; height: 18px; }
.footer-trust__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.footer-trust__sub {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* Main grid */
.site-footer__main { padding-block: 52px 44px; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: 48px;
}

/* Brand col */
.site-footer__logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}
.site-footer__logo-img { height: 48px; width: auto; }
.site-footer__logo-text { font-size: 20px; font-weight: 800; color: #fff; display: block; margin-bottom: 16px; }
.site-footer__desc {
  font-size: 14px;
  color: rgba(255,255,255,.58);
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 300px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.footer-social__btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, border-color .2s, color .2s;
}
.footer-social__btn:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}
.footer-social__btn svg { width: 16px; height: 16px; }

/* Certifications */
.site-footer__cert { display: flex; gap: 8px; flex-wrap: wrap; }
.badge-cert {
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Nav columns */
.site-footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 11px; }
.site-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.62);
  transition: color .15s, padding-left .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.site-footer__links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--clr-primary-mid);
  transition: width .2s;
  flex-shrink: 0;
}
.site-footer__links a:hover { color: #fff; padding-left: 4px; }
.site-footer__links a:hover::before { width: 12px; }

/* Contact column */
.site-footer__contact { display: flex; flex-direction: column; gap: 0; }
.site-footer__contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-block: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-footer__contact-item:first-child { padding-top: 0; }
.site-footer__contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.site-footer__contact-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-primary-mid);
  margin-top: 1px;
}
.site-footer__contact-icon svg { width: 14px; height: 14px; }
.site-footer__contact-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.36);
  margin-bottom: 3px;
}
.site-footer__contact-value {
  font-size: 14px;
  color: rgba(255,255,255,.76);
}
.site-footer__contact-value a {
  color: rgba(255,255,255,.76);
  transition: color .15s;
}
.site-footer__contact-value a:hover { color: #fff; }

/* Bottom bar */
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-block: 20px;
}
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer__copyright { font-size: 13px; color: rgba(255,255,255,.38); }
.site-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-footer__bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,.42);
  transition: color .15s;
}
.site-footer__bottom-links a:hover { color: rgba(255,255,255,.8); }
.site-footer__policy { font-size: 13px; color: rgba(255,255,255,.42); transition: color .15s; }
.site-footer__policy:hover { color: #fff; }

/* 19. FLOATING CTA */
.floating-cta {
  position: fixed;
  right: 20px; bottom: 100px;
  display: flex; flex-direction: column;
  gap: 10px;
  z-index: 900;
}
.floating-cta__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  color: #fff;
  border: none;
  cursor: pointer;
}
.floating-cta__btn:hover { transform: scale(1.08); box-shadow: var(--shadow-lg); }
.floating-cta__btn--zalo  { background: var(--clr-zalo); }
.floating-cta__btn--phone { background: var(--clr-primary); }
.floating-cta__btn--quote { background: var(--clr-accent); }
.floating-cta__label {
  position: absolute;
  right: 62px;
  white-space: nowrap;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.floating-cta__btn:hover .floating-cta__label { opacity: 1; }

/* Mobile bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: #fff;
  border-top: 1px solid var(--clr-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.mobile-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  padding: 10px 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-text);
  border-right: 1px solid var(--clr-border);
  transition: background .15s;
  border-top: none; border-bottom: none; border-left: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
}
.mobile-bar__btn svg { flex-shrink: 0; }
.mobile-bar__btn:last-child { border-right: none; }
.mobile-bar__btn--call  { color: var(--clr-primary); }
.mobile-bar__btn--zalo  { color: var(--clr-zalo); }
.mobile-bar__btn--quote { background: var(--clr-accent); color: #fff; }
.mobile-bar__btn:hover:not(.mobile-bar__btn--quote) { background: var(--clr-bg-alt); }

/* 20. MODAL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
.modal__box {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-light);
  transition: background .15s, color .15s;
}
.modal__close:hover { background: var(--clr-bg-alt); color: var(--clr-text); }
.modal__header { margin-bottom: 28px; }
.modal__title { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.modal__sub { color: var(--clr-text-light); font-size: 14px; }

/* 21. BREADCRUMB */
.breadcrumb { margin-bottom: 24px; }
.single-product .breadcrumb { margin-top: 36px; }
.breadcrumb__list { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 13px; }
.breadcrumb__item a { color: var(--clr-text-light); transition: color .15s; }
.breadcrumb__item a:hover { color: var(--clr-primary); }
.breadcrumb__item--active { color: var(--clr-text-light); }
.breadcrumb__sep { color: var(--clr-border); }

/* 22. WOOCOMMERCE ARCHIVE */
.archive-hero {
  position: relative;
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
  padding-block: 34px 30px;
  color: #fff;
  overflow: hidden;
}
.archive-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.18) 0, rgba(255,255,255,0) 28%),
    linear-gradient(120deg, rgba(255,255,255,.08) 0, rgba(255,255,255,0) 38%);
  pointer-events: none;
}
.archive-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}
.archive-hero .breadcrumb { margin-bottom: 6px; }
.archive-hero .breadcrumb__list { gap: 10px; font-size: 14px; }
.archive-hero .breadcrumb__item { color: rgba(255,255,255,.74); }
.archive-hero .breadcrumb__item:last-child { color: #fff; }
.archive-hero .breadcrumb__item a { color: rgba(255,255,255,.78); }
.archive-hero .breadcrumb__item a:hover { color: #fff; }
.archive-hero .breadcrumb__sep { color: rgba(255,255,255,.4); }
.archive-hero .breadcrumb__item--active { color: #fff; }
.archive-hero__eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.archive-hero__title {
  font-size: clamp(28px, 4vw, 46px);
  color: #fff;
  margin-bottom: 0;
}
.archive-hero__desc {
  color: rgba(255,255,255,.84);
  font-size: 16px;
  max-width: 700px;
  margin-bottom: 0;
}
.archive-hero__count {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.86);
  display: inline-flex;
  width: fit-content;
  background: rgba(255,255,255,.12);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
}
.archive-layout { padding-block: 28px 56px; }
.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(2,75,158,.08);
  box-shadow: 0 18px 40px rgba(8,21,41,.06);
  gap: 16px;
  flex-wrap: wrap;
}
.archive-toolbar__count { font-size: 15px; color: var(--clr-text-light); margin: 0; font-weight: 600; }
.archive-toolbar__sort .woocommerce-ordering { margin: 0; }
.archive-toolbar__sort select {
  border: 1.5px solid var(--clr-border);
  border-radius: 16px;
  padding: 12px 18px;
  font-size: 14px;
  background: #fff;
  min-width: 260px;
}
.archive-pagination { margin-top: 48px; display: flex; justify-content: center; }
.archive-pagination .page-numbers { display: flex; gap: 8px; }
.archive-pagination .page-numbers li a,
.archive-pagination .page-numbers li span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--clr-border);
  font-size: 14px; font-weight: 500;
  transition: all .15s;
}
.archive-pagination .page-numbers li .current,
.archive-pagination .page-numbers li a:hover { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); }
.archive-empty { text-align: center; padding: 80px 20px; color: var(--clr-text-light); }

/* 23. ABOUT + NEWS PAGES */
.page-shell-heading {
  max-width: 760px;
  margin-bottom: 32px;
}
.page-shell-heading--center {
  margin-inline: auto;
  text-align: center;
}
.page-shell-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(2,75,158,.08);
  color: var(--clr-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-shell-heading__title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}
.page-shell-heading__sub {
  color: var(--clr-text-light);
  font-size: 17px;
}
.about-page,
.editorial-page {
  background:
    radial-gradient(circle at top right, rgba(2,75,158,.05) 0, rgba(2,75,158,0) 26%),
    linear-gradient(180deg, #fff 0, #f9fbfe 100%);
}
.about-hero,
.editorial-hero {
  padding-block: 52px 42px;
}
.about-hero__grid,
.editorial-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 28px;
  align-items: start;
}
.about-hero__content,
.editorial-hero__content {
  max-width: 760px;
}
.about-hero__eyebrow,
.editorial-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(2,75,158,.08);
  color: var(--clr-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.about-hero__title,
.editorial-hero__title {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.about-hero__lead,
.editorial-hero__lead {
  font-size: 18px;
  color: var(--clr-text-light);
  max-width: 720px;
}
.about-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.about-hero__highlights {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.about-hero__highlights li {
  position: relative;
  padding-left: 22px;
  color: var(--clr-text-light);
}
.about-hero__highlights li::before {
  content: '';
  position: absolute;
  top: .75em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary) 0, var(--clr-accent) 100%);
}
.about-hero__panel,
.editorial-hero__panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(2,75,158,.96) 0, rgba(1,54,119,.98) 100%);
  color: #fff;
  box-shadow: 0 28px 54px rgba(1,54,119,.22);
}
.about-hero__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-hero__logo {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  object-fit: contain;
  background: rgba(255,255,255,.08);
  padding: 10px;
}
.about-hero__brand-kicker {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.66);
  margin-bottom: 4px;
}
.about-hero__brand-name {
  font-size: 22px;
  line-height: 1.3;
}
.about-hero__fact-list {
  display: grid;
  gap: 12px;
}
.about-fact-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.about-fact-card__label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.68);
  margin-bottom: 8px;
}
.about-fact-card__value {
  display: block;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 6px;
}
.about-fact-card__desc {
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.about-hero__contact {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}
.about-hero__contact a,
.about-hero__contact span {
  color: rgba(255,255,255,.9);
}
.about-story,
.about-catalog,
.about-process,
.about-insights,
.about-cta {
  padding-block: 56px 56px;
}
.about-cta { padding-block: 56px 80px; }
.about-catalog,
.about-insights,
.contact-process { background: var(--clr-bg-alt); }
.editorial-main { padding-block: 56px 72px; }
.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}
.about-story__cards {
  display: grid;
  gap: 16px;
}
.about-value-card {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(2,75,158,.08);
  box-shadow: 0 18px 40px rgba(8,21,41,.06);
}
.about-value-card__title {
  font-size: 22px;
  margin-bottom: 8px;
}
.about-value-card__desc {
  color: var(--clr-text-light);
}
.about-catalog__grid,
.about-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.about-category-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(2,75,158,.08);
  box-shadow: 0 18px 40px rgba(8,21,41,.06);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.about-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(2,75,158,.18);
  box-shadow: 0 22px 44px rgba(8,21,41,.1);
}
.about-category-card__media {
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(2,75,158,.08) 0, rgba(230,57,70,.06) 100%);
  aspect-ratio: 16 / 11;
}
.about-category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-category-card__placeholder,
.editorial-feature__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--clr-primary);
}
.about-category-card__meta {
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-primary);
  font-weight: 700;
}
.about-category-card__title {
  font-size: 22px;
  line-height: 1.25;
}
.about-category-card__desc {
  color: var(--clr-text-light);
}
.about-process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.about-step-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0, #f6f9fe 100%);
  border: 1px solid rgba(2,75,158,.08);
}
.about-step-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--clr-primary);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}
.about-step-card__title {
  font-size: 20px;
  margin-bottom: 8px;
}
.about-step-card__desc {
  color: var(--clr-text-light);
}
.about-cta__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 20px;
  align-items: center;
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--clr-primary) 0, var(--clr-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 28px 54px rgba(1,54,119,.18);
}
.about-cta__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-weight: 700;
}
.about-cta__title {
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
}
.about-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.editorial-hero .breadcrumb { margin-bottom: 18px; }
.editorial-hero__panel {
  background: linear-gradient(180deg, rgba(8,21,41,.98) 0, rgba(2,75,158,.96) 100%);
}
.editorial-pill {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.editorial-pill__label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.68);
  margin-bottom: 8px;
}
.editorial-pill__value {
  display: block;
  font-size: 22px;
  line-height: 1.3;
}
.editorial-main__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}
.editorial-main__content {
  min-width: 0;
}
.editorial-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 24px;
  padding: 28px;
  margin-bottom: 48px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(2,75,158,.08);
  box-shadow: 0 18px 40px rgba(8,21,41,.06);
}
.editorial-feature__media {
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(2,75,158,.08) 0, rgba(230,57,70,.06) 100%);
  min-height: 280px;
}
.editorial-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-feature__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.editorial-feature__tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(2,75,158,.08);
  color: var(--clr-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.editorial-feature__date {
  color: var(--clr-text-light);
  font-size: 14px;
  margin-bottom: 10px;
}
.editorial-feature__title {
  font-size: clamp(26px, 3.2vw, 40px);
  margin-bottom: 12px;
}
.editorial-feature__excerpt {
  font-size: 17px;
  color: var(--clr-text-light);
  margin-bottom: 20px;
}
.editorial-card {
  min-width: 0;
}
.editorial-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 56px);
  display: grid;
  gap: 18px;
}
.editorial-sidebar__card {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(2,75,158,.08);
  box-shadow: 0 18px 40px rgba(8,21,41,.06);
}
.editorial-sidebar__card--accent {
  background: linear-gradient(180deg, #081529 0, #024b9e 100%);
  color: #fff;
}
.editorial-sidebar__card--accent .editorial-sidebar__eyebrow,
.editorial-sidebar__card--accent .editorial-sidebar__text {
  color: rgba(255,255,255,.76);
}
.editorial-sidebar__card--accent .editorial-sidebar__title {
  color: #fff;
}
.editorial-sidebar__eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--clr-primary);
}
.editorial-sidebar__title {
  font-size: 26px;
  margin-bottom: 12px;
}
.editorial-sidebar__text {
  color: var(--clr-text-light);
  margin-bottom: 18px;
}
.editorial-topic-list {
  display: grid;
  gap: 10px;
}
.editorial-topic-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--clr-bg-alt);
  border: 1px solid transparent;
  transition: border-color .2s, transform .2s, background .2s;
}
.editorial-topic-list__item:hover {
  transform: translateY(-2px);
  border-color: rgba(2,75,158,.14);
  background: #fff;
}
.editorial-topic-list__item strong {
  color: var(--clr-primary);
  font-size: 14px;
}
.editorial-empty {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(2,75,158,.08);
}

/* ============================================================
   24. WOOCOMMERCE SINGLE PRODUCT
   CSS-only gallery · Sticky summary · Mobile sticky bar
   ============================================================ */

/* ── Layout ─────────────────────────────────────────────── */
.product-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding-block: 40px 64px;
  align-items: start;
}

/* ── CSS-only gallery ────────────────────────────────────
   Radio inputs are invisible; labels (thumbnails) act as
   the controls. The ~ (general sibling) combinator selects
   .product-gallery__stage after each :checked input.
──────────────────────────────────────────────────────────── */
.pg-radio { display: none; }

/* Gallery wrapper */
.product-gallery { position: relative; }

/* Main stage: aspect-ratio prevents CLS */
.product-gallery__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  margin-bottom: 12px;
  cursor: zoom-in;
}

.product-gallery__stage::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  width: clamp(90px, 28%, 200px);
  aspect-ratio: 812 / 298;
  background: var(--apm-wm-hz, none) no-repeat center / contain;
  pointer-events: none;
  opacity: .82;
}

/* All slides hidden by default (multi-image case) */
.pg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}
.pg-slide__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/*
 * Single-image: no radios exist, always show the slide.
 * When .pg-radio IS a sibling, the .pg-radio~ rule below
 * overrides this and hides all slides.
 */
.product-gallery__stage .pg-slide { opacity: 1; pointer-events: auto; }
.pg-radio ~ .product-gallery__stage .pg-slide {
  opacity: 0;
  pointer-events: none;
}

/* Show each slide when its paired radio is checked (up to 8 images) */
#pg-0:checked ~ .product-gallery__stage .pg-slide--0,
#pg-1:checked ~ .product-gallery__stage .pg-slide--1,
#pg-2:checked ~ .product-gallery__stage .pg-slide--2,
#pg-3:checked ~ .product-gallery__stage .pg-slide--3,
#pg-4:checked ~ .product-gallery__stage .pg-slide--4,
#pg-5:checked ~ .product-gallery__stage .pg-slide--5,
#pg-6:checked ~ .product-gallery__stage .pg-slide--6,
#pg-7:checked ~ .product-gallery__stage .pg-slide--7 {
  opacity: 1;
  pointer-events: auto;
}

/* Zoom button overlay */
.product-gallery__zoom {
  position: absolute;
  bottom: 12px; right: 12px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
  transition: background .15s, color .15s;
  cursor: pointer;
}
.product-gallery__zoom:hover { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); }

/* Placeholder (no image) */
.product-gallery__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

/* ── Thumbnails ──────────────────────────────────────────── */
.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Each label is a clickable thumbnail */
.pg-thumb {
  display: block;
  width: 72px; height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--clr-border);
  cursor: pointer;
  transition: border-color .15s, transform .15s;
  flex-shrink: 0;
}
.pg-thumb:hover { border-color: var(--clr-primary); transform: translateY(-1px); }
.pg-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Active thumbnail — matched by paired :checked radio */
#pg-0:checked ~ .product-gallery__thumbs [for="pg-0"],
#pg-1:checked ~ .product-gallery__thumbs [for="pg-1"],
#pg-2:checked ~ .product-gallery__thumbs [for="pg-2"],
#pg-3:checked ~ .product-gallery__thumbs [for="pg-3"],
#pg-4:checked ~ .product-gallery__thumbs [for="pg-4"],
#pg-5:checked ~ .product-gallery__thumbs [for="pg-5"],
#pg-6:checked ~ .product-gallery__thumbs [for="pg-6"],
#pg-7:checked ~ .product-gallery__thumbs [for="pg-7"] {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 2px var(--clr-primary-light);
}

/* ── Product Summary (sticky on desktop) ─────────────────── */
.product-summary__inner {
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + 20px);
}

/* Category pills */
.product-summary__cats {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 14px;
  list-style: none;
}
.product-summary__cat-badge {
  padding: 4px 14px;
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  border-radius: 20px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .03em;
  transition: background .15s, color .15s;
}
.product-summary__cat-badge:hover { background: var(--clr-primary); color: #fff; }

/* Title H1 */
.product-summary__title {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--clr-text);
  margin-bottom: 18px;
}

/* Trust badges row */
.product-summary__trust {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 20px;
  list-style: none;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--clr-primary);
  background: var(--clr-primary-light);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Short description */
.product-summary__short-desc {
  font-size: 15px;
  color: var(--clr-text-light);
  line-height: 1.75;
  margin-bottom: 18px;
  border-left: 3px solid var(--clr-primary-light);
  padding-left: 14px;
}
.product-summary__short-desc p:last-child { margin-bottom: 0; }

/* SKU */
.product-summary__sku {
  font-size: 13px;
  color: var(--clr-text-light);
  margin-bottom: 20px;
  display: flex; gap: 6px; align-items: center;
}
.product-summary__sku strong { color: var(--clr-text); }

/* CTA actions (rendered by apmm_quote_buttons hook) */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.product-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
}
.product-actions .btn--primary {
  font-size: 16px;
  padding: 17px 24px;
  letter-spacing: .01em;
}

/* Guarantee strip */
.product-summary__guarantee {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  background: var(--clr-bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  list-style: none;
}
.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}
.guarantee-item svg { color: var(--clr-primary); flex-shrink: 0; margin-top: 1px; }
.guarantee-item strong { display: block; font-weight: 700; color: var(--clr-text); line-height: 1.3; }
.guarantee-item small { display: block; color: var(--clr-text-light); font-size: 11px; margin-top: 2px; }

/* ── Mobile Sticky CTA Bar ────────────────────────────────
   Always in DOM; shown on mobile via CSS, visible state
   triggered when .product-actions leaves viewport (JS).
──────────────────────────────────────────────────────────── */
.product-sticky-bar {
  display: none; /* hidden on desktop */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: #fff;
  border-top: 1px solid var(--clr-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  padding: 10px 16px;
  align-items: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform .25s ease;
}
.product-sticky-bar.is-visible { transform: translateY(0); }
.product-sticky-bar__name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ── Product Tabs ─────────────────────────────────────────── */
.product-tabs-section { padding-block: 48px 0; }
.related-products { padding-block: 96px; }
.product-tabs__nav {
  display: flex;
  border-bottom: 2px solid var(--clr-border);
  margin-bottom: 32px;
  gap: 4px;
}
.product-tabs__tab {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text-light);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: color .15s;
}
.product-tabs__tab--active,
.product-tabs__tab[aria-selected="true"] { color: var(--clr-primary); border-bottom-color: var(--clr-primary); }
.product-tabs__tab:hover { color: var(--clr-primary); }
.product-tabs__panel { display: none; }
.product-tabs__panel--active,
.product-tabs__panel:not([hidden]) { display: block; }

/* Spec table */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table__row { border-bottom: 1px solid var(--clr-border); }
.spec-table__key { padding: 12px 16px; font-weight: 600; font-size: 14px; background: var(--clr-bg-alt); width: 35%; }
.spec-table__val { padding: 12px 16px; font-size: 14px; }

/* Entry content */
.entry-content { line-height: 1.8; }
.entry-content p { margin-bottom: 1.2em; }
.entry-content h2, .entry-content h3, .entry-content h4 { margin: 1.5em 0 .75em; }
.entry-content ul, .entry-content ol { margin: 1em 0 1em 1.5em; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: .5em; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; }
.entry-content th, .entry-content td { padding: 10px 14px; border: 1px solid var(--clr-border); }
.entry-content th { background: var(--clr-bg-alt); font-weight: 700; }
.entry-content img { max-width: 100%; height: auto; border-radius: var(--radius-md); }

/* 24. PAGE CONTENT */
.page-content { max-width: 800px; margin-inline: auto; padding-block: 48px; }
.page-content__title { font-size: clamp(24px, 3.5vw, 40px); margin-bottom: 32px; }

/*
 * ── Editable content block from WordPress editor ─────────────────────────
 * Shown on /gioi-thieu/ and /lien-he/ only when the editor has content.
 * Admins type here via Dashboard → Pages → Edit.
 * ─────────────────────────────────────────────────────────────────────────
 */
.page-extra-content__body {
  max-width: 800px;
  margin-inline: auto;
  font-size: 16px;
  line-height: 1.85;
  color: var(--clr-text);
}
/* Standard WP block editor typography */
.page-extra-content__body h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: .5em;
}
.page-extra-content__body h3 {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  margin-top: 1.75em;
  margin-bottom: .4em;
}
.page-extra-content__body p { margin-bottom: 1.1em; }
.page-extra-content__body ul,
.page-extra-content__body ol {
  padding-left: 1.5em;
  margin-bottom: 1.1em;
}
.page-extra-content__body li { margin-bottom: .4em; }
.page-extra-content__body a { color: var(--clr-primary); text-decoration: underline; }
.page-extra-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-block: 1em;
}
.page-extra-content__body strong { font-weight: 700; }
.page-extra-content__body blockquote {
  border-left: 4px solid var(--clr-primary);
  margin: 1.5em 0;
  padding: .75em 1.25em;
  background: var(--clr-primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--clr-text);
}
.post-single { max-width: 840px; }
.post-single__header { margin-bottom: 24px; }
.post-single__meta { margin-bottom: 10px; }
.post-single__date { font-size: 13px; color: var(--clr-text-light); }
.post-single__title { font-size: clamp(22px, 3.5vw, 40px); }
.post-single__thumb { margin-bottom: 32px; border-radius: var(--radius-lg); overflow: hidden; }
.post-single__thumb img { width: 100%; height: auto; }
.post-layout { padding-block: 48px; }

/* 24A. CONTACT PAGE */
.contact-page {
  background:
    radial-gradient(circle at top right, rgba(2,75,158,.05) 0, rgba(2,75,158,0) 26%),
    linear-gradient(180deg, #fff 0, #f9fbfe 100%);
}
.contact-hero {
  position: relative;
  overflow: visible;
  padding: 56px 0 48px;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(2,75,158,.06), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(230,57,70,.10), transparent 18%),
    radial-gradient(circle at 15% 18%, rgba(2,75,158,.12), transparent 25%);
  pointer-events: none;
}
.contact-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 42px;
  align-items: start;
}
.contact-hero__eyebrow,
.contact-section-heading__eyebrow,
.contact-form-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: rgba(2,75,158,.08);
  border: 1px solid rgba(2,75,158,.12);
}
.contact-hero__title {
  max-width: 12ch;
  margin: 18px 0 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.04em;
  color: var(--clr-bg-dark);
}
.contact-hero__lead {
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.85;
  color: var(--clr-text-light);
}
.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}
.contact-hero__highlights {
  display: grid;
  gap: 12px;
}
.contact-hero__highlights li {
  position: relative;
  padding-left: 30px;
  color: var(--clr-text);
  font-weight: 500;
}
.contact-hero__highlights li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-mid));
  box-shadow: 0 0 0 6px rgba(2,75,158,.10);
}
.contact-hero__visual {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  animation: contactFloat 8s ease-in-out infinite;
}
.contact-hero__glow--one {
  top: -10%;
  right: -8%;
  width: 260px;
  height: 260px;
  background: rgba(2,75,158,.28);
}
.contact-hero__glow--two {
  right: -4%;
  bottom: -10%;
  width: 180px;
  height: 180px;
  background: rgba(230,57,70,.22);
  animation-delay: -2s;
}
.contact-hero__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88)),
    linear-gradient(135deg, rgba(2,75,158,.14), rgba(230,57,70,.10));
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 30px 70px rgba(8,21,41,.12);
  backdrop-filter: blur(10px);
}
.contact-hero__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-hero__logo {
  display: block;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  min-width: 72px;
  max-width: 72px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(2,75,158,.18);
}
.contact-hero__brand-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-text-light);
}
.contact-hero__brand-title {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
}
.contact-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.contact-stat {
  min-height: 150px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f6f9fe);
  border: 1px solid rgba(2,75,158,.08);
}
.contact-stat__value {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  line-height: 1;
  color: var(--clr-primary);
  letter-spacing: -.04em;
}
.contact-stat__label {
  color: var(--clr-text-light);
  font-size: 14px;
  line-height: 1.6;
}
.contact-hero__mini-card {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: max-content;
  max-width: 100%;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #081529, #132848);
  color: #fff;
  box-shadow: 0 20px 40px rgba(8,21,41,.24);
}
.contact-hero__mini-card strong {
  font-size: 26px;
  line-height: 1.05;
}
.contact-hero__mini-card span:last-child {
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.contact-hero__mini-label {
  color: rgba(255,255,255,.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-main {
  padding: 56px 0 64px;
}
.contact-main__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 40px;
  align-items: start;
}
.contact-section-heading {
  margin-bottom: 22px;
}
.contact-section-heading--center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}
.contact-section-heading__title {
  margin: 14px 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -.04em;
  color: var(--clr-bg-dark);
}
.contact-section-heading__sub {
  max-width: 64ch;
  color: var(--clr-text-light);
  font-size: 17px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
  border: 1px solid rgba(8,21,41,.08);
  box-shadow: 0 16px 36px rgba(8,21,41,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(8,21,41,.10);
  border-color: rgba(2,75,158,.16);
}
.contact-card--primary {
  background: linear-gradient(135deg, rgba(2,75,158,.96), rgba(15,46,92,.94));
  color: #fff;
}
.contact-card--primary .contact-card__meta,
.contact-card--primary .contact-card__body {
  color: rgba(255,255,255,.78);
}
.contact-card--primary .contact-card__icon {
  background: rgba(255,255,255,.14);
  color: #fff;
}
.contact-card--zalo .contact-card__icon {
  color: var(--clr-zalo);
}
.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(2,75,158,.08);
  color: var(--clr-primary);
}
.contact-card__icon svg {
  width: 24px;
  height: 24px;
}
.contact-card__meta {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-text-light);
}
.contact-card__title {
  font-size: 22px;
  line-height: 1.25;
  color: inherit;
  word-break: break-all;
  overflow-wrap: break-word;
}
.contact-card__body {
  color: var(--clr-text-light);
  line-height: 1.7;
}
.contact-form-card {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  padding: 26px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,249,255,.97)),
    linear-gradient(135deg, rgba(2,75,158,.08), rgba(230,57,70,.05));
  border: 1px solid rgba(8,21,41,.08);
  box-shadow: 0 24px 50px rgba(8,21,41,.08);
}
.contact-notice {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.contact-notice--success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}
.contact-notice--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}
.contact-notice--error a { color: #991b1b; font-weight: 700; text-decoration: underline; }
.contact-form-card__header {
  margin-bottom: 20px;
}
.contact-form-card__title {
  margin: 14px 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--clr-bg-dark);
}
.contact-form-card__sub {
  color: var(--clr-text-light);
}
.contact-form-card__form .quote-form__field {
  gap: 8px;
}
.contact-form-card__form .quote-form__input {
  min-height: 56px;
  border-radius: 18px;
  border-color: rgba(8,21,41,.10);
  background: rgba(255,255,255,.92);
}
.contact-form-card__form .quote-form__textarea {
  min-height: 150px;
}
.contact-form-card__form .btn {
  margin-top: 4px;
}
.contact-form-card__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(8,21,41,.08);
}
.contact-form-card__footer > div {
  display: grid;
  gap: 4px;
}
.contact-form-card__footer a {
  font-weight: 700;
  color: var(--clr-primary);
}
.contact-form-card__footer-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-text-light);
}
.contact-process {
  padding: 56px 0 64px;
}
.contact-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.contact-step {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(2,75,158,.08);
  overflow: hidden;
}
.contact-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
}
.contact-step__index {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-primary);
}
.contact-step__title {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}
.contact-step__desc {
  color: var(--clr-text-light);
  line-height: 1.7;
}
.contact-map {
  padding: 56px 0 80px;
}
.contact-map__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 0;
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 64px rgba(8,21,41,.10);
}
.contact-map__embed {
  min-height: 520px;
  background: var(--clr-primary-light);
}
.contact-map__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-map__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(2,75,158,.10), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}
.contact-map__title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--clr-bg-dark);
}
.contact-map__sub {
  color: var(--clr-text-light);
  font-size: 17px;
}
.contact-map__list {
  display: grid;
  gap: 14px;
}
.contact-map__item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(248,250,252,.92);
  border: 1px solid rgba(8,21,41,.08);
}
.contact-map__item strong {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-primary);
}
.contact-map__item span {
  color: var(--clr-text);
  line-height: 1.7;
}
.contact-map__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
@keyframes contactFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

/* 25. RESPONSIVE */
@media (max-width: 1100px) {
  .about-hero__grid,
  .editorial-hero__grid,
  .about-story__grid,
  .editorial-main__grid,
  .editorial-feature,
  .about-cta__shell {
    grid-template-columns: 1fr;
  }
  .about-catalog__grid,
  .about-insights__grid,
  .editorial-grid,
  .about-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .editorial-sidebar {
    position: static;
  }
  .contact-hero__inner,
  .contact-main__grid,
  .contact-map__shell {
    grid-template-columns: 1fr;
  }
  .contact-hero__visual {
    display: none;
  }
  .contact-hero__title {
    max-width: none;
  }
  .contact-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .why-section__inner { gap: 40px; }
  .video-section__inner { gap: 40px; }
  .product-grid--4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-py: 56px; }
  .archive-toolbar {
    padding: 16px 18px;
    border-radius: 20px;
  }
  .archive-toolbar__sort,
  .archive-toolbar__sort .woocommerce-ordering,
  .archive-toolbar__sort select {
    width: 100%;
  }
  .archive-toolbar__sort select {
    min-width: 0;
  }
  .about-hero,
  .editorial-hero {
    padding-block: 32px 28px;
  }
  .contact-hero__stats,
  .contact-cards,
  .contact-form-card__footer {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    position: static;
  }
  .contact-map__embed {
    min-height: 380px;
  }

  /* ── Mobile header: switch grid → flex, show hamburger ── */
  .site-header__main-inner {
    display: flex; /* back to flex on mobile */
    justify-content: space-between;
  }
  .site-header__toggle { display: flex; flex-shrink: 0; }
  /* Hide CTA on mobile — mobile-bar handles phone/quote */
  .site-header__cta { display: none; }

  /* Mobile nav: full-width dropdown panel */
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: 8px 16px 20px;
    z-index: 999;
    border-top: 2px solid var(--clr-primary);
  }
  .site-nav.is-open { display: block; }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }
  .site-nav__list > li > a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--clr-border);
    border-radius: 0;
    font-size: 15px;
  }
  .site-nav__list > li > a::after { display: none; } /* hide underline on mobile */
  .site-nav__list > li:last-child > a { border-bottom: none; }
  .site-nav__list .sub-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--clr-primary);
    margin-left: 16px;
    padding: 4px 0;
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .trust-bar__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.2); }
  .trust-bar__item:nth-last-child(-n+2) { border-bottom: none; }
  /* Categories */
  .cat-grid, .cat-grid--featured { grid-template-columns: 1fr 1fr; }
  .cat-card--lead { grid-row: span 1; aspect-ratio: 3/2; }
  /* Make CTA always visible on touch devices */
  .cat-card__cta { opacity: 1; transform: none; }
  .product-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .product-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .why-section__inner { grid-template-columns: 1fr; }
  .why-section__visual { display: none; }
  .video-section__inner { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section__inner { grid-template-columns: 1fr; }
  .product-single { grid-template-columns: 1fr; gap: 32px; }
  .product-summary__inner { position: static; } /* disable sticky on tablet/mobile */
  .product-sticky-bar { display: flex; } /* enable mobile bar */
  .product-summary__guarantee { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-trust__grid { grid-template-columns: 1fr 1fr; }
  .floating-cta { display: none; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 60px; }
}

@media (max-width: 768px) {
  .archive-hero {
    padding-block: 26px 22px;
  }
  .about-catalog__grid,
  .about-insights__grid,
  .editorial-grid,
  .about-process__grid {
    grid-template-columns: 1fr;
  }
  .about-hero__actions,
  .about-cta__actions {
    flex-direction: column;
  }
  .about-hero__actions .btn,
  .about-cta__actions .btn,
  .editorial-feature .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  :root { --section-py: 40px; }
  .archive-hero__title,
  .page-shell-heading__title {
    font-size: clamp(28px, 9vw, 40px);
  }
  .about-hero__title,
  .editorial-hero__title,
  .editorial-feature__title {
    font-size: clamp(30px, 10vw, 44px);
  }
  .about-hero__panel,
  .editorial-hero__panel,
  .about-cta__shell,
  .editorial-sidebar__card,
  .editorial-feature,
  .about-value-card,
  .about-category-card,
  .about-step-card {
    padding: 22px;
    border-radius: 24px;
  }
  .about-story,
  .about-catalog,
  .about-process,
  .about-insights { padding-block: 36px 36px; }
  .about-cta { padding-block: 36px 56px; }
  .contact-hero { padding: 32px 0 36px; }
  .contact-main { padding: 36px 0 48px; }
  .contact-process { padding: 36px 0 48px; }
  .contact-map { padding: 36px 0 56px; }
  .contact-hero__title {
    font-size: clamp(32px, 10vw, 48px);
  }
  .contact-hero__lead,
  .contact-section-heading__sub,
  .contact-map__sub {
    font-size: 16px;
  }
  .contact-hero__actions .btn,
  .contact-map__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .contact-hero__panel,
  .contact-form-card,
  .contact-map__content {
    padding: 22px;
    border-radius: 24px;
  }
  .contact-step,
  .contact-card {
    min-height: auto;
  }
  .contact-process__grid {
    grid-template-columns: 1fr;
  }
  .contact-map__shell {
    border-radius: 24px;
  }
  .site-header__topbar { display: none; }
  body { padding-top: var(--header-h); }
  .site-header__logo-img { max-width: 160px; }
  .site-header__toggle { flex-shrink: 0; }
  /* Hero mobile */
  .hero { min-height: 520px; }
  .hero__inner { padding-block: 52px; }
  .hero__heading { margin-bottom: 16px; }
  .hero__sub { font-size: 16px; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; gap: 12px; margin-bottom: 24px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__dots { bottom: 18px; }
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .cat-grid, .cat-grid--featured { grid-template-columns: 1fr; }
  .cat-card--lead { grid-row: span 1; }
  .product-grid--3,
  .product-grid--4 { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .footer-trust__grid { grid-template-columns: 1fr; }
  .section__header--flex { flex-direction: column; align-items: flex-start; }
  .product-summary__guarantee { grid-template-columns: 1fr; gap: 10px; }
  .product-tabs__nav { overflow-x: auto; }
  body { padding-bottom: 70px; } /* room for sticky mobile bar */
  .modal__box { padding: 24px 20px; }
}

/* ── product-card__img-link (used in content-product.php, featured-products.php) ── */
.product-card__img-link,
.product-card__media-link {
  display: block;
  text-decoration: none;
}
.product-card__img-wrap,
.product-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--clr-bg-alt);
  position: relative;
}
.product-card__img-placeholder,
.product-card__media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
}

/* ── FEATURED PRODUCTS SECTION ── */
.featured-section {
  background:
    radial-gradient(ellipse at top left, rgba(255,255,255,.09) 0%, transparent 48%),
    radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(150deg, #013677 0%, #024b9e 58%, #1560c0 100%);
  background-size: auto, 28px 28px, auto;
  position: relative;
  overflow: hidden;
}
.featured-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Section header overrides */
.featured-section .section__header { margin-bottom: 52px; }
.featured-section .section__title { color: #fff; }
.featured-section .section__sub { color: rgba(255,255,255,.75); }

/* Product grid */
.featured-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
}
.featured-section__item {
  display: flex;
  min-width: 0;
}
.featured-section__item .product-card {
  width: 100%;
  min-width: 0;
  box-shadow: 0 4px 20px rgba(1,54,119,.28);
}
.featured-section__item .product-card:hover {
  box-shadow: 0 16px 48px rgba(1,54,119,.38);
}

/* Footer CTA */
.featured-section__footer {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

/* Responsive */
@media (max-width: 1100px) {
  .featured-section__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .featured-section__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .featured-section__grid { grid-template-columns: 1fr; }
}

/* WooCommerce overrides */
.woocommerce-loop-product__link { display: block; }
.woocommerce ul.products { display: grid; }
.woocommerce ul.products li.product { margin: 0; float: none; width: auto; }
.woocommerce-page .woocommerce { margin: 0; }

/* Loop quote button */
.loop-quote.btn {
  padding: 14px 32px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	background: #e63946;
	border: 2px solid #e63946;
	border-radius: 6px;
	cursor: pointer;
	transition: background .2s, border-color .2s;
	width: 100%;
	justify-content: center;
}
.loop-quote-btn:hover { background: #c1121f; border-color: #c1121f; }

/* ============================================================
   ANTI-PLUGIN FONT OVERRIDE
   ─────────────────────────────────────────────────────────────
   Problem: Elementor Pro loads kit CSS (post-6.css) with:
     .elementor-kit-6 {
       --e-global-typography-*-font-family: "Roboto";
     }
   Elementor Pro also injects inline <style> targeting body or
   heading elements on pages where it's active (single product).

   Solution (two-layer, no !important):

   Layer 1 — CSS variable override in :root above:
   Redefines --e-global-typography-* so Elementor's own widgets
   also pick up Be Vietnam Pro via their variable references.

   Layer 2 — Specificity bump here:
   `html body` = specificity (0,0,2) beats bare `body` (0,0,1).
   This rule is also placed LAST in the stylesheet, so it wins
   the cascade tie-break against any same-specificity rule from
   Elementor or other plugins that loaded earlier.

   Both layers together ensure Be Vietnam Pro is applied on ALL
   pages regardless of which plugins are active.
   ============================================================ */
html body {
  font-family: var(--font-base);
}

/* Headings: prevent Elementor's h1–h6 typography module from
   overriding weights/families on product pages. */
html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6 {
  font-family: var(--font-base);
}

/* Theme UI elements: explicit guard for nav, buttons, forms */
html body .site-header,
html body .site-nav,
html body .btn,
html body .product-summary,
html body .product-gallery,
html body .product-tabs-section,
html body .related-products,
html body .site-footer {
  font-family: var(--font-base);
}
