/* ============================================================
   Fast WMS — Shared header + footer (namespaced .fw-*)
   Blue / logo palette. Loaded on every page AFTER each page's
   inline <style> so it controls the shared chrome consistently.
   ============================================================ */

:root {
  --fw-blue:      #1457A6;   /* forklift blue (primary) */
  --fw-blue-dk:   #0E3F7E;   /* hover / deeper */
  --fw-navy:      #0A2F5C;   /* deep navy */
  --fw-navy-2:    #081E3D;   /* footer base */
  --fw-green:     #1FA85A;   /* cold-chain green accent */
  --fw-green-dk:  #178A48;
  --fw-ink:       #10243f;
  --fw-text:      #46566b;
  --fw-line:      #e3e8ef;
  --fw-bg:        #ffffff;
  --fw-tint:      #eef4fb;   /* light blue tint */
  --fw-foot-text: #aab9cc;
  --fw-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fw-head: 'Bricolage Grotesque', var(--fw-sans);
}

/* ---------------- HEADER ---------------- */
.fw-head { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--fw-line); }
.fw-nav { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 68px;
  display: flex; align-items: center; gap: 20px; }
.fw-logo { display: flex; align-items: center; flex-shrink: 0; }
.fw-logo img { height: 52px; width: auto; display: block; }
.fw-spacer { flex: 1; }

/* desktop menu */
.fw-menu { display: flex; align-items: center; gap: 2px; height: 100%; }
.fw-mi { position: relative; height: 100%; display: flex; align-items: center; }
.fw-mi > a, .fw-mi > button {
  display: inline-flex; align-items: center; gap: 5px; height: 100%; padding: 0 14px;
  font-family: var(--fw-sans); font-size: 15px; font-weight: 500; color: var(--fw-ink);
  background: none; border: none; cursor: pointer; transition: color .15s; }
.fw-mi > a:hover, .fw-mi > button:hover, .fw-mi.open > button { color: var(--fw-blue); }
.fw-mi > button svg { transition: transform .2s; }
.fw-mi.open > button svg { transform: rotate(180deg); }

/* mega panel */
.fw-mega { position: absolute; top: calc(100% - 6px); left: 0;
  background: #fff; border: 1px solid var(--fw-line); border-radius: 14px;
  box-shadow: 0 24px 60px -18px rgba(8,30,61,.28); padding: 18px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease; pointer-events: none; }
.fw-mega.one-col { grid-template-columns: 1fr; min-width: 320px; }
.fw-mi:hover .fw-mega, .fw-mi.open .fw-mega { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.fw-mcol { display: flex; flex-direction: column; min-width: 250px; }
.fw-mhead { font-size: 11px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--fw-blue); padding: 4px 8px 10px; }
.fw-ml { display: flex; align-items: flex-start; gap: 11px; padding: 9px 8px; border-radius: 9px; transition: background .15s; }
.fw-ml:hover { background: var(--fw-tint); }
.fw-mlic { flex-shrink: 0; width: 34px; height: 34px; border-radius: 8px; background: var(--fw-tint);
  display: grid; place-items: center; color: var(--fw-blue); }
.fw-ml:hover .fw-mlic { background: var(--fw-blue); color: #fff; }
.fw-mlic svg { width: 18px; height: 18px; }
.fw-mlt strong { display: block; font-size: 14px; font-weight: 600; color: var(--fw-ink); line-height: 1.3; }
.fw-mlt small { display: block; font-size: 12px; color: var(--fw-text); line-height: 1.4; margin-top: 2px; }

/* actions */
.fw-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.fw-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: 8px;
  font-family: var(--fw-sans); font-size: 14px; font-weight: 600; white-space: nowrap;
  border: 1.5px solid transparent; cursor: pointer; transition: all .18s ease; }
.fw-btn svg { width: 13px; height: 13px; }
.fw-btn-outline { color: var(--fw-blue); border-color: var(--fw-line); background: #fff; }
.fw-btn-outline:hover { border-color: var(--fw-blue); }
.fw-btn-fill { background: var(--fw-blue); color: #fff; }
.fw-btn-fill:hover { background: var(--fw-blue-dk); }

/* hamburger */
.fw-burger { display: none; width: 44px; height: 44px; border: 1px solid var(--fw-line); border-radius: 9px;
  background: #fff; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.fw-burger span { width: 20px; height: 2px; background: var(--fw-ink); border-radius: 2px; transition: .25s; }
.fw-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fw-burger.open span:nth-child(2) { opacity: 0; }
.fw-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.fw-drawer { position: fixed; inset: 68px 0 0 auto; width: min(360px, 86vw); background: #fff;
  border-left: 1px solid var(--fw-line); box-shadow: -20px 0 50px -20px rgba(8,30,61,.3);
  transform: translateX(105%); transition: transform .28s ease; z-index: 999; overflow-y: auto;
  padding: 16px 18px 32px; -webkit-overflow-scrolling: touch; }
.fw-drawer.open { transform: translateX(0); }
.fw-scrim { position: fixed; inset: 68px 0 0 0; background: rgba(8,30,61,.32); opacity: 0; visibility: hidden;
  transition: opacity .25s; z-index: 998; }
.fw-scrim.open { opacity: 1; visibility: visible; }
.fw-acc { border-bottom: 1px solid var(--fw-line); }
.fw-acc-btn { width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 15px 4px; font-family: var(--fw-sans); font-size: 16px; font-weight: 600; color: var(--fw-ink);
  background: none; border: none; cursor: pointer; }
.fw-acc-btn svg { transition: transform .2s; color: var(--fw-text); }
.fw-acc.open .fw-acc-btn svg { transform: rotate(180deg); }
.fw-acc-panel { display: none; padding: 0 4px 14px; }
.fw-acc.open .fw-acc-panel { display: block; }
.fw-acc-panel a { display: block; padding: 9px 0 9px 12px; font-size: 14.5px; color: var(--fw-text);
  border-left: 2px solid var(--fw-line); }
.fw-acc-panel a:hover { color: var(--fw-blue); border-left-color: var(--fw-blue); }
.fw-mlink { display: block; padding: 15px 4px; font-size: 16px; font-weight: 600; color: var(--fw-ink);
  border-bottom: 1px solid var(--fw-line); }
.fw-drawer-cta { margin-top: 22px; display: grid; gap: 10px; }
.fw-drawer-cta .fw-btn { justify-content: center; padding: 13px; font-size: 15px; }

@media (max-width: 980px) {
  .fw-menu, .fw-actions { display: none; }
  .fw-burger { display: flex; }
  .fw-spacer { flex: 1; }
}
@media (min-width: 981px) { .fw-drawer, .fw-scrim { display: none; } }

/* ---------------- FOOTER ---------------- */
.fw-foot { background: var(--fw-navy-2); color: var(--fw-foot-text);
  font-family: var(--fw-sans); margin-top: 40px; }
.fw-foot-in { max-width: 1200px; margin: 0 auto; padding: 64px 24px 28px;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 40px 28px; }
.fw-fbrand { max-width: 320px; }
.fw-fbrand img { height: 42px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.fw-fbrand p { font-size: 14.5px; line-height: 1.7; color: var(--fw-foot-text); margin: 0 0 18px; }
.fw-fcontact { display: grid; gap: 10px; }
.fw-fcontact a { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; color: #d6e1ee; }
.fw-fcontact a:hover { color: #fff; }
.fw-fcontact svg { width: 17px; height: 17px; color: var(--fw-green); flex-shrink: 0; }
.fw-fhead { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: #fff; margin-bottom: 16px; }
.fw-fcol a { display: block; font-size: 15px; line-height: 1.45; color: #cdd9e7; padding: 7px 0; transition: color .15s; }
.fw-fcol a:hover { color: #fff; }
.fw-fbottom { border-top: 1px solid rgba(255,255,255,.12); }
.fw-fbottom-in { max-width: 1200px; margin: 0 auto; padding: 20px 24px; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 14px; }
.fw-fcopy { font-size: 13.5px; color: var(--fw-foot-text); }
.fw-fcerts { display: flex; flex-wrap: wrap; gap: 8px; }
.fw-fcert { font-size: 12px; color: #cdd9e7; border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; padding: 5px 12px; }
@media (max-width: 980px) {
  .fw-foot-in { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .fw-fbrand { grid-column: 1 / -1; max-width: 100%; }
}
@media (max-width: 560px) {
  .fw-foot-in { grid-template-columns: 1fr 1fr; gap: 28px 20px; padding: 48px 20px 24px; }
  .fw-fbottom-in { flex-direction: column; align-items: flex-start; }
}

/* WhatsApp float (shared) */
.fw-wa { position: fixed; right: 18px; bottom: 18px; z-index: 900; width: 54px; height: 54px;
  border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.6); transition: transform .2s; }
.fw-wa:hover { transform: scale(1.08); }
.fw-wa svg { width: 29px; height: 29px; }

/* ---------------- Hero / section label badges removed per design ---------------- */
.hero-badge, .ind-badge, .fhero-badge, .badge { display: none !important; }
