/* =========================================================================
   NDM Floors — Design System
   Brand: Navy Blue (trust) + Orange (action) on white
   Mobile-first, premium, clean
   ========================================================================= */

:root {
  /* Brand colors */
  --navy: #0A2540;
  --navy-700: #0F3057;
  --navy-600: #16406e;
  --navy-500: #1E4E82;
  --navy-050: #EEF3F8;

  --orange: #F26522;
  --orange-dark: #D9531A;
  --orange-light: #FF7A3C;
  --orange-050: #FFF2EA;

  --white: #ffffff;
  --ink: #12202E;
  --muted: #5A6B7B;
  --line: #E4EAF0;
  --bg-soft: #F7F9FC;

  --shadow-sm: 0 1px 3px rgba(10,37,64,.08);
  --shadow: 0 6px 24px rgba(10,37,64,.10);
  --shadow-lg: 0 18px 48px rgba(10,37,64,.16);

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --container: 1200px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;

  --header-h: 74px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: #F4F7FB;
  line-height: 1.6;
  font-size: 17px;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; position: relative; }
.section-sm { padding: 48px 0; }
/* Clean white panels lift off the soft page background */
.section.bg-white { background: #fff; }
/* Soft tinted panel with a subtle blueprint dot grid for texture */
.bg-soft {
  background-color: #EAF1F9;
  background-image: radial-gradient(rgba(10,37,64,.05) 1px, transparent 1.4px);
  background-size: 24px 24px;
  box-shadow: inset 0 1px 0 rgba(10,37,64,.06), inset 0 -1px 0 rgba(10,37,64,.06);
}
/* Bold orange accent panel — strong "Call Now" orange with a subtle dot texture */
.bg-warm {
  background-color: var(--orange);
  background-image: radial-gradient(rgba(255,255,255,.13) 1px, transparent 1.5px);
  background-size: 24px 24px;
  box-shadow: inset 0 3px 0 var(--orange-dark), inset 0 -3px 0 var(--orange-dark);
}
.bg-warm .section-head h2, .bg-warm .eyebrow { color: #fff; }
.bg-warm .section-head h2::after { background: #fff; }
.bg-warm .section-head .lead { color: rgba(255,255,255,.94); }
.bg-navy { background: var(--navy); color: #fff; }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.bg-navy .eyebrow { color: var(--orange-light); }

h1, h2, h3, h4 { color: var(--navy); line-height: 1.15; font-weight: 800; letter-spacing: -.01em; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; }
.bg-navy .lead { color: #C7D6E6; }
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { position: relative; display: inline-block; padding-bottom: 18px; }
.section-head h2::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 68px; height: 4px; border-radius: 2px; background: var(--orange); }
.section-head .lead { margin: 18px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  transition: transform .12s ease, background .18s ease, box-shadow .18s ease;
  white-space: nowrap; line-height: 1;
}
/* Base size for all inline icons so an unsized SVG never renders at the 300x150 default. */
svg { width: 20px; height: 20px; }
.cat-tile .arrow svg { width: 18px; height: 18px; }
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(242,101,34,.28); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-500); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.12); color:#fff; border:1px solid rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 16px; font-size: .9rem; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  border-top: 4px solid var(--orange);
}
.topbar {
  background: var(--navy); color: #fff; font-size: .82rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 38px; gap: 16px; }
.topbar a { color: #D7E3F0; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; gap: 20px; }
.topbar svg { width: 15px; height: 15px; color: var(--orange-light); }
.topbar .hide-mobile { display: inline-flex; }

.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 18px; }
/* Header logo — small gap from the left edge so the emblem isn't clipped */
.header .container { padding-left: 8px; }
.logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; text-decoration: none; }
/* NDM emblem + FLOORS DISTRIBUTOR wordmark lockup — matched letter heights */
.logo-emblem { height: 34px; width: auto; display: block; }
.logo-word { font-weight: 900; font-size: 1.62rem; letter-spacing: -.01em; text-transform: uppercase; line-height: 1; white-space: nowrap; }
.logo-word b { font-weight: 900; color: #17335f; }
.logo-word b.lw-o { color: var(--orange); }
/* drawer */
.drawer-logo { display: flex; align-items: center; gap: 8px; min-width: 0; }
.drawer-emblem { height: 26px; width: auto; display: block; flex: 0 0 auto; }
.drawer-logo .logo-word { font-size: 1rem; white-space: normal; line-height: 1.05; }
/* footer */
.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; min-width: 0; }
.footer-emblem { height: 44px; width: auto; display: block; flex: 0 0 auto; }
.footer-logo .logo-word { font-size: 2.1rem; white-space: normal; line-height: 1.05; }
.footer-logo .logo-word b { color: #fff; }
.footer-logo .logo-word b.lw-o { color: var(--orange); }
@media (max-width: 1140px) { .logo-emblem { height: 31px; } .logo-word { font-size: 1.46rem; } }
@media (max-width: 640px) { .logo-emblem { height: 28px; } .logo-word { font-size: 1.28rem; } .footer-emblem { height: 38px; } .footer-logo .logo-word { font-size: 1.82rem; } }
@media (max-width: 380px) { .logo-emblem { height: 25px; } .logo-word { font-size: 1.08rem; } }
.logo-mark {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, var(--navy), var(--navy-500));
  display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 1.15rem;
  position: relative; overflow: hidden;
}
.logo-mark::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 8px;
  background: var(--orange);
}
.logo-text { line-height: 1.05; }
.logo-text b { color: var(--navy); font-size: 1.2rem; font-weight: 900; letter-spacing: -.02em; display: block; }
.logo-text span { color: var(--muted); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }

.menu { display: flex; align-items: center; gap: 4px; }
.menu > li > a {
  display: block; padding: 10px 13px; border-radius: 8px; font-weight: 600; font-size: .96rem; color: var(--navy-700);
}
.menu > li > a:hover { background: var(--orange-050); color: var(--orange-dark); }
.menu > li > a.active { color: var(--orange-dark); box-shadow: inset 0 -3px 0 var(--orange); border-radius: 8px 8px 0 0; }

/* Products dropdown */
.menu li.has-dd { position: relative; }
.menu-link {
  display: flex; align-items: center; gap: 5px; padding: 10px 13px; border-radius: 8px;
  font-weight: 600; font-size: .96rem; color: var(--navy-700); background: none; cursor: pointer; font-family: inherit;
}
.menu-link:hover, .menu li.has-dd:hover .menu-link, .menu li.has-dd.active .menu-link { background: var(--orange-050); color: var(--orange-dark); }
.menu li.has-dd.active .menu-link { box-shadow: inset 0 -3px 0 var(--orange); border-radius: 8px 8px 0 0; }
.menu-link .caret { width: 15px; height: 15px; transition: transform .2s; }
.menu li.has-dd:hover .menu-link .caret, .menu li.has-dd.open .menu-link .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 8px; z-index: 210;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.dropdown::before { content: ""; position: absolute; top: -6px; left: 22px; width: 12px; height: 12px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line); transform: rotate(45deg); }
.menu li.has-dd:hover .dropdown, .menu li.has-dd.open .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown li { list-style: none; }
.dropdown a { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 10px; font-weight: 700; font-size: .94rem; color: var(--navy); }
.dropdown a:hover { background: var(--orange-050); color: var(--orange-dark); }
.dropdown a small { display: block; color: var(--muted); font-weight: 500; font-size: .8rem; margin-top: 2px; }
.dropdown a:hover small { color: var(--orange-dark); }
.dropdown .di { width: 38px; height: 38px; border-radius: 9px; background: var(--navy-050); display: grid; place-items: center; color: var(--navy); flex-shrink: 0; }
.dropdown .di svg { width: 20px; height: 20px; }
.dropdown a:hover .di { background: var(--orange); color: #fff; }

/* Drawer product group (mobile) */
.drawer-group { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: 16px 12px 6px; }
.drawer a.drawer-sub { padding-left: 26px; font-size: .95rem; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* language toggle */
.lang-toggle {
  display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; font-size: .8rem; font-weight: 700;
}
.lang-toggle button { padding: 7px 12px; color: var(--muted); }
.lang-toggle button.active { background: var(--navy); color: #fff; }
.drawer-lang { display: inline-flex; margin-top: 18px; font-size: .9rem; }
.drawer-lang button { padding: 9px 20px; }

.burger { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line); }
.burger span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 4px auto; border-radius: 2px; }

/* mobile drawer */
.drawer-backdrop { display:none; position: fixed; inset: 0; background: rgba(10,37,64,.5); z-index: 299; }
.drawer {
  position: fixed; top: 0; right: 0; width: 300px; max-width: 85vw; height: 100%;
  background: #fff; z-index: 300; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .28s ease; will-change: transform;
  padding: 20px; overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-backdrop.open { display: block; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.drawer-close { font-size: 1.6rem; color: var(--navy); width: 40px; height: 40px; }
.drawer a { display: block; padding: 13px 12px; border-radius: 10px; font-weight: 600; color: var(--navy-700); border-bottom: 1px solid var(--line); }
.drawer a.btn { border-bottom: 0; }
.drawer a.btn-primary, .drawer a.btn-primary span { color: #fff; }
.drawer a.btn-secondary, .drawer a.btn-secondary span { color: #fff; }
.drawer a:hover { background: var(--navy-050); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 82vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-video, .hero-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
/* Hero slideshow (cross-fading images) */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease-in-out; filter: brightness(1.06) saturate(1.06);
}
.hero-slide.active { opacity: 1; }
.hero-fallback {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(242,101,34,.35), transparent 60%),
    linear-gradient(120deg, #061a30 0%, #0A2540 45%, #123a63 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(6,20,36,.86) 0%, rgba(6,20,36,.5) 42%, rgba(6,20,36,.12) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero-inner { max-width: 680px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero .lead { color: #DCE7F2; font-size: 1.22rem; max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--orange);
  border: 1px solid var(--orange); color: #fff; padding: 8px 16px; border-radius: 999px;
  font-size: .82rem; font-weight: 800; letter-spacing: .04em; margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(242,101,34,.35);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 22px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-meta .hm { display: flex; gap: 11px; align-items: flex-start; }
.hero-meta svg { width: 22px; height: 22px; color: var(--orange-light); flex-shrink: 0; margin-top: 2px; }
.hero-meta .hm b { display: block; font-size: .95rem; color: #fff; }
.hero-meta .hm span { font-size: .85rem; color: #B9CADB; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy); color: #fff; border-bottom: 4px solid var(--orange); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; padding: 26px 0; }
.trust-grid .t { padding: 6px; }
.trust-grid svg { width: 26px; height: 26px; color: var(--orange-light); margin: 0 auto 8px; }
.trust-grid b { display: block; font-size: .98rem; }
.trust-grid span { font-size: .8rem; color: #A9BCD0; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* category tile */
.cat-tile {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 232px;
  display: flex; align-items: flex-end; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,.06); border-bottom: 4px solid var(--orange);
  background: linear-gradient(150deg, #16406e 0%, var(--navy) 52%, #061a30 100%);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cat-tile::before {
  content: ""; position: absolute; top: -45px; right: -45px; width: 165px; height: 165px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,.5), transparent 70%);
  opacity: .5; transition: opacity .25s ease, transform .3s ease; z-index: 0;
}
.cat-tile:hover::before { opacity: .95; transform: scale(1.18); }
.cat-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-ico { position: absolute; top: 16px; left: 20px; z-index: 1; color: rgba(255,180,140,.22); transition: transform .3s ease, color .25s ease; }
.cat-ico svg { width: 82px; height: 82px; }
.cat-tile:hover .cat-ico { color: rgba(255,180,140,.4); transform: scale(1.08) translateY(-2px); }
.cat-tile .body { position: relative; z-index: 2; padding: 20px; color: #fff; width: 100%;
  background: linear-gradient(0deg, rgba(6,20,36,.92), rgba(6,20,36,.25) 62%, transparent); }
.cat-tile .body b { font-size: 1.2rem; display: block; letter-spacing: -.01em; }
.cat-tile .body span { font-size: .85rem; color: #CBD9E7; }
.cat-tile .arrow { position: absolute; top: 16px; right: 16px; z-index: 3; background: var(--orange); width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center; color: #fff; box-shadow: 0 6px 16px rgba(242,101,34,.45); transition: transform .2s ease; }
.cat-tile:hover .arrow { transform: translateX(3px); }
.cat-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.cat-chip { font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.13); color: #EAF1F8; border: 1px solid rgba(255,255,255,.2); white-space: nowrap; }
.cat-chip.more { background: var(--orange); color: #fff; border-color: var(--orange); }
.cat-tile:hover .cat-chip:not(.more):not(.brand-chip) { background: rgba(255,255,255,.2); }
/* brand-logo chips: white pill with the logo; falls back to the name */
.cat-chip.brand-chip { background: #fff; border-color: #fff; padding: 5px 9px; display: inline-flex; align-items: center; }
.cat-chip.brand-chip img { height: 16px; max-width: 76px; object-fit: contain; display: block; }
.cat-chip.brand-chip .chip-txt { display: none; }
.cat-chip.brand-chip.txt { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.2); padding: 4px 10px; }
.cat-chip.brand-chip.txt .chip-txt { display: inline; color: #EAF1F8; }

/* product card */
.product-card {
  background: #fff; border: 1px solid var(--line); border-top: 3px solid transparent; border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-top-color: var(--orange); }
.pc-media { position: relative; aspect-ratio: 4/3; background: var(--bg-soft); overflow: hidden; }
.pc-media .ph { position: absolute; inset: 0; }
.pc-brandtag { position: absolute; top: 12px; left: 12px; background: rgba(10,37,64,.92); color: #fff; font-size: .72rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; letter-spacing: .03em; z-index:2; }
.pc-stock { position: absolute; top: 12px; right: 12px; background: #12903f; color:#fff; font-size:.68rem; font-weight:700; padding: 5px 10px; border-radius: 999px; z-index:2; }
.pc-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.pc-cat { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); margin-bottom: 5px; }
.pc-body h3 { font-size: 1.06rem; margin-bottom: 6px; }
.pc-desc { font-size: .9rem; color: var(--muted); margin-bottom: 10px; flex: 1; }
.pc-use { font-size: .82rem; color: var(--navy-700); background: var(--navy-050); border-radius: 8px; padding: 8px 10px; margin-bottom: 14px; }
.pc-use b { color: var(--navy); }
.pc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pc-actions .btn { padding: 10px; font-size: .82rem; }
.pc-actions .full { grid-column: 1 / -1; }

/* Featured Brands — premium navy section, orange as accent */
.brands-dark { background: linear-gradient(165deg, #0d2f52 0%, var(--navy) 55%, #061a30 100%); position: relative; }
.brands-dark .eyebrow { color: var(--orange-light); }
.brands-dark .section-head h2 { color: #fff; }
.brands-dark .section-head h2::after { background: var(--orange); }
.brands-dark .section-head .lead { color: rgba(226,236,246,.9); }
.brands-dark .btn-outline { background: var(--orange); color: #fff; border-color: var(--orange); }
.brands-dark .btn-outline:hover { background: var(--orange-dark); color: #fff; border-color: var(--orange-dark); }

/* brand card — clean white with animated orange side accent */
.brand-card {
  position: relative; overflow: hidden;
  background:#fff; border:1px solid var(--line); border-radius: 16px;
  padding: 24px 22px 20px 26px; text-align:left;
  box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
  display:flex; flex-direction:column; gap: 12px;
}
.brand-card::before { /* side accent bar */
  content:""; position:absolute; top:0; bottom:0; left:0; width: 5px;
  background: var(--orange); transition: width .2s ease;
}
.brand-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,.3); }
.brand-card:hover::before { width: 10px; }
.bc-name { font-weight: 900; font-size: 1.34rem; color:#141414; letter-spacing: -.01em; line-height:1.15; transition: color .18s ease; }
.brand-card:hover .bc-name { color: var(--orange-dark); }
.brand-card p { font-size: .88rem; color: var(--muted); line-height: 1.55; margin:0; }
.brand-tags { display:flex; flex-wrap:wrap; gap: 6px; margin-top:auto; padding-top: 4px; }
.brand-tags span { font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; background: var(--navy-050); color: var(--navy-700); border: 1px solid var(--line); transition: background .18s ease, color .18s ease, border-color .18s ease; }
.brand-card:hover .brand-tags span { background: var(--orange-050); color: var(--orange-dark); border-color: var(--orange-100, #f7d3bf); }
/* Legacy brand-logo box kept for brand-page header */
.brand-logo {
  height: 62px; width: 100%; border-radius: 10px; background: #fff;
  display: grid; place-items: center; font-weight: 900; font-size: 1.3rem; color: var(--navy); letter-spacing: .02em;
  border-bottom: 3px solid var(--orange); overflow: hidden; padding: 8px;
}
.brand-logo img { max-height: 100%; max-width: 88%; object-fit: contain; }
.brand-logo.txt { background: var(--navy-050); }

/* feature (why choose) */
.feature { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.feature .ico { width: 52px; height: 52px; border-radius: 13px; background: var(--orange-050); display:grid; place-items:center; margin-bottom: 16px; }
.feature .ico svg { width: 26px; height: 26px; color: var(--orange); }
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: .93rem; color: var(--muted); }

/* split highlight */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split .media { border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; box-shadow: var(--shadow); position: relative; }
.split .media .ph { position:absolute; inset:0; }
.split ul.checks { margin: 18px 0 24px; display: grid; gap: 10px; }
.split ul.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: .98rem; color: var(--navy-700); }
.split ul.checks svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }

/* ---------- Category banner slideshow ---------- */
.cat-banner {
  position: relative; height: 440px; border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 44px; border-bottom: 4px solid var(--orange); box-shadow: var(--shadow);
  background: var(--navy);
}
.cat-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease-in-out; }
.cat-slide.active { opacity: 1; }
@media (max-width: 860px) { .cat-banner { height: 320px; } }
@media (max-width: 640px) { .cat-banner { height: 240px; margin-bottom: 30px; } }

/* ---------- Search / filter bar ---------- */
.searchbar { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-sm); }
.searchbar .row { display: grid; grid-template-columns: 2fr repeat(3, 1fr) auto; gap: 10px; }
.searchbar input[type=text], .searchbar select {
  width:100%; padding: 12px 14px; border:1px solid var(--line); border-radius: 10px; font-size: .95rem; font-family: inherit; background:#fff; color: var(--ink);
}
.searchbar input:focus, .searchbar select:focus { outline: 2px solid var(--orange); border-color: transparent; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

/* ---------- Product-type cards (category pages) ---------- */
.type-note { display: inline-block; margin: 0 0 4px; padding: 7px 14px; border-radius: 999px; background: var(--orange-50, #fdeee6); color: var(--orange-dark, #c14a12); font-weight: 700; font-size: .92rem; border: 1px solid var(--orange-100, #f7d3bf); }
.type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 12px; margin-top: 18px; }
.type-card {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--orange);
  border-radius: 12px; padding: 16px 18px; font-size: 1rem; font-weight: 700; color: var(--navy);
  line-height: 1.25; box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease, border-left-width .16s ease;
}
.type-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-left-width: 7px; }
.type-dot { width: 9px; height: 9px; border-radius: 999px; background: var(--orange); flex: 0 0 auto; }
@media (max-width: 560px) { .type-grid { grid-template-columns: 1fr; } }
.chip { padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line); font-size: .82rem; font-weight: 600; color: var(--navy-700); background:#fff; }
.chip.active { background: var(--navy); color:#fff; border-color: var(--navy); }
.result-meta { display:flex; justify-content: space-between; align-items:center; margin: 20px 0; color: var(--muted); font-size: .9rem; }

/* ---------- Placeholder graphics ---------- */
.ph { background: linear-gradient(135deg, var(--navy-050), #DCE6F1); display:grid; place-items:center; color: var(--navy-500); }
.ph-navy { background: linear-gradient(135deg, var(--navy), var(--navy-500)); color:#fff; }
.ph-orange { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color:#fff; }
.ph .ico { opacity:.85; }
.ph .ico svg { width: 46px; height: 46px; }
.ph .lbl { position:absolute; bottom:10px; left:0; right:0; text-align:center; font-size:.72rem; opacity:.7; }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: linear-gradient(120deg, #061a30, var(--navy) 60%, var(--navy-500)); color:#fff; padding: 56px 0; position: relative; border-bottom: 5px solid var(--orange); }
.page-hero h1 { color:#fff; }
.page-hero .lead { color:#C7D6E6; }
.breadcrumbs { font-size: .82rem; color:#9FB4C9; margin-bottom: 14px; }
.breadcrumbs a:hover { color:#fff; }
.breadcrumbs span { color: var(--orange-light); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--orange); color:#fff; border-radius: var(--radius-lg); padding: 48px 44px; text-align:center; position: relative; overflow:hidden; box-shadow: 0 20px 48px rgba(242,101,34,.28); }
.cta-band h2 { color:#fff; position:relative; }
.cta-band p { color: #FFEEE3; max-width: 560px; margin: 12px auto 24px; position: relative; }
.cta-band .btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position: relative; }
.cta-band .btn-primary { background:#fff; color: var(--navy); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.cta-band .btn-primary:hover { background: var(--navy); color:#fff; }
/* On the orange CTA band, the secondary button is navy (not a translucent
   orange-on-orange), so it clearly stands out from the background. */
.cta-band .btn-ghost-light { background: var(--navy); color: #fff; border: 1px solid var(--navy); }
.cta-band .btn-ghost-light:hover { background: var(--navy-700); border-color: var(--navy-700); color: #fff; }
.cta-band .btn-secondary { background: var(--navy); }
.cta-band .btn-secondary:hover { background: var(--navy-700); }

/* ---------- Contractors band ---------- */
.contractor-band { background: var(--navy); color:#fff; border-radius: var(--radius-lg); overflow:hidden; display:grid; grid-template-columns: 1.1fr .9fr; border-top: 5px solid var(--orange); }
.contractor-band .txt { padding: 44px; }
.contractor-band .txt h2 { color:#fff; }
.contractor-band .media { position: relative; min-height: 320px; }
.contractor-band .media .ph { position:absolute; inset:0; }
.perk-list { display:grid; gap: 12px; margin: 20px 0 26px; }
.perk-list li { display:flex; gap: 12px; align-items:flex-start; }
.perk-list svg { width: 22px; height: 22px; color: var(--orange-light); flex-shrink:0; margin-top:2px; }
.perk-list b { display:block; }
.perk-list span { font-size:.88rem; color:#B9CADB; }

/* ---------- Map ---------- */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display:block; }

/* ---------- Reviews ---------- */
.review-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 12px; font-size: 1.05rem; }
.review-card p { font-size: .96rem; color: var(--navy-700); margin-bottom: 16px; }
.review-author { display:flex; align-items:center; gap: 12px; }
.review-author .av { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color:#fff; display:grid; place-items:center; font-weight:800; }
.review-author b { display:block; font-size: .92rem; color: var(--navy); }
.review-author span { font-size: .8rem; color: var(--muted); }

/* ---------- Product detail ---------- */
.pdp { display:grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.pdp .gallery { border-radius: var(--radius-lg); overflow:hidden; aspect-ratio: 1/1; position: relative; border:1px solid var(--line); }
.pdp .gallery .ph { position:absolute; inset:0; }
.pdp .meta-row { display:flex; gap: 10px; flex-wrap:wrap; margin: 10px 0 18px; }
.pdp .tag { background: var(--navy-050); color: var(--navy); font-size:.8rem; font-weight:700; padding: 6px 12px; border-radius: 999px; }
.pdp .tag.orange { background: var(--orange-050); color: var(--orange-dark); }
.spec-table { width:100%; border-collapse: collapse; margin: 20px 0; }
.spec-table th, .spec-table td { text-align:left; padding: 12px 14px; border-bottom: 1px solid var(--line); font-size:.92rem; }
.spec-table th { color: var(--muted); font-weight:600; width: 42%; }
.spec-table td { color: var(--navy-700); font-weight:600; }
.pdp-actions { display:flex; flex-wrap:wrap; gap: 12px; margin-top: 18px; }

/* ---------- Blog ---------- */
.post-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); display:flex; flex-direction:column; transition: transform .16s ease, box-shadow .16s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card .media { aspect-ratio: 16/9; position: relative; }
.post-card .media .ph { position:absolute; inset:0; }
.post-card .body { padding: 20px; display:flex; flex-direction:column; flex:1; }
.post-card .body .tag { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--orange); margin-bottom:8px; }
.post-card h3 { font-size:1.1rem; margin-bottom: 8px; }
.post-card p { font-size:.9rem; color: var(--muted); flex:1; margin-bottom: 14px; }
.post-card .more { color: var(--navy); font-weight:700; font-size:.9rem; }

.article { max-width: 760px; margin: 0 auto; }
.article h2 { margin: 32px 0 12px; }
.article h3 { margin: 24px 0 10px; }
.article p { margin-bottom: 16px; color: var(--navy-700); }
.article ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; color: var(--navy-700); }
.article ul li { margin-bottom: 8px; }

/* ---------- FAQ ---------- */
.faq-item { border:1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow:hidden; background:#fff; }
.faq-q { width:100%; text-align:left; padding: 18px 20px; font-weight:700; color: var(--navy); display:flex; justify-content:space-between; align-items:center; gap: 12px; font-size: 1.02rem; }
.faq-q .plus { color: var(--orange); font-size: 1.4rem; flex-shrink:0; transition: transform .2s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { padding: 0 20px 20px; color: var(--muted); font-size: .95rem; }

/* ---------- Contact form ---------- */
.form-grid { display:grid; gap: 16px; }
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display:block; font-size:.85rem; font-weight:700; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width:100%; padding: 12px 14px; border:1px solid var(--line); border-radius: 10px; font-family:inherit; font-size:.95rem; background:#fff; color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--orange); border-color: transparent; }
/* address autocomplete dropdown */
.addr-field { position: relative; }
.addr-suggest {
  display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 50;
  list-style: none; margin: 0; padding: 6px; background:#fff; border:1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-lg); max-height: 260px; overflow-y: auto;
}
.addr-suggest.open { display: block; }
.addr-suggest li {
  padding: 10px 12px; border-radius: 8px; font-size: .9rem; color: var(--ink); cursor: pointer;
  display: flex; align-items: center; gap: 9px;
}
.addr-suggest li::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--orange); flex: 0 0 auto; }
.addr-suggest li:hover { background: var(--orange-050); color: var(--orange-dark); }
/* tax-exempt checkbox + file upload */
.checkline { display:flex; align-items:flex-start; gap: 10px; font-weight: 600; color: var(--ink); cursor: pointer; line-height: 1.4; margin: 0; }
.checkline input[type="checkbox"] { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 1px; accent-color: var(--orange); cursor: pointer; }
.field-hint { font-size: .8rem; color: var(--muted); margin: 8px 0 0; }
#st5-field { padding: 16px; border: 1px dashed var(--orange); border-radius: 12px; background: var(--orange-050); }
.field input[type="file"] { padding: 10px; background:#fff; cursor: pointer; }

/* info card list */
.info-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.info-card .ir { display:flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-card .ir:last-child { border-bottom: none; }
.info-card .ir svg { width: 22px; height: 22px; color: var(--orange); flex-shrink:0; margin-top: 3px; }
.info-card .ir b { display:block; color: var(--navy); }
.info-card .ir span { color: var(--muted); font-size: .92rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #C7D6E6; padding: 56px 0 0; border-top: 5px solid var(--orange); }
.footer h4 { color:#fff; font-size: 1rem; margin-bottom: 16px; }
.footer a { color:#C7D6E6; font-size: .92rem; }
.footer a:hover { color:#fff; }
.footer-grid { display:grid; grid-template-columns: 2.5fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer .logo-text b { color:#fff; }
.footer .logo-text span { color: #8FA6BD; }
.footer .desc { font-size: .92rem; margin: 16px 0; max-width: 300px; }
.footer .contactline { display:flex; gap: 10px; align-items:center; margin-bottom: 10px; font-size:.92rem; }
.footer .contactline svg { width: 18px; height: 18px; color: var(--orange-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding: 22px 0; font-size:.82rem; display:flex; justify-content:space-between; gap: 16px; flex-wrap:wrap; }

/* ---------- Floating Call Now button (desktop, follows scroll) ---------- */
.float-call {
  position: fixed; right: 24px; bottom: 26px; z-index: 240;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange); color: #fff; font-weight: 800; font-size: 1rem;
  padding: 15px 24px; border-radius: 999px; box-shadow: 0 12px 30px rgba(242,101,34,.45);
  transition: transform .15s ease, background .18s ease, box-shadow .18s ease;
}
.float-call:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(242,101,34,.55); }
.float-call svg { width: 20px; height: 20px; }

/* ---------- Sticky mobile action bar ---------- */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 250; background:#fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(10,37,64,.12); padding: 8px; grid-template-columns: 1fr 1fr; gap: 8px; }
.mobile-bar .btn { padding: 13px; font-size: .95rem; }

/* ---------- Utilities ---------- */
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}
.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}
.hide { display: none !important; }
.text-orange { color: var(--orange); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .grid-6 { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contractor-band { grid-template-columns: 1fr; }
  .contractor-band .media { min-height: 220px; }
}
@media (max-width: 860px) {
  .menu, .nav-actions .desktop-only, .nav-actions .lang-toggle { display: none; }
  .burger { display: block; }
  .topbar .tb-left .hide-mobile { display: none; }
  .searchbar .row { grid-template-columns: 1fr 1fr; }
  .searchbar .row .search-input { grid-column: 1 / -1; }
  .split, .pdp { grid-template-columns: 1fr; gap: 26px; }
  .contractor-band .txt { padding: 30px; }
  .cta-band { padding: 32px 22px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 48px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .hero-meta { gap: 16px; }
  .mobile-bar { display: grid; }
  .float-call { display: none; }
  body.has-mobile-bar { padding-bottom: 74px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .pc-actions { grid-template-columns: 1fr; }
}
