@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  /* Logo palette — cyan #00A3E0 · indigo #302A81 */
  --bg: #eef3f8;
  --bg-elev: #ffffff;
  --bg-mist: #f5f8fc;
  --ink: #151c2e;
  --ink-soft: #3d4a63;
  --muted: #6a7890;
  --line: #cfd9e6;
  --line-soft: #e6edf5;
  --cyan: #00a3e0;
  --cyan-deep: #0089bf;
  --cyan-soft: rgba(0, 163, 224, 0.12);
  --indigo: #302a81;
  --indigo-deep: #241f63;
  --navy: #302a81; /* brand dark = logo indigo */
  --ok: #0f766e;
  --warn: #b45309;
  --danger: #b91c1c;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 0 rgba(48, 42, 129, 0.04);
  --shadow: 0 18px 40px rgba(21, 28, 46, 0.08);
  --font: 'Montserrat', system-ui, sans-serif;
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-serif: var(--font-display);
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --fs-display: clamp(2.2rem, 5vw, 3.5rem);
  --fs-h2: clamp(1.6rem, 2.8vw, 2.25rem);
  --fs-body: 1.02rem;
  --header-h: 64px;
  --max: 1280px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7fafd 0%, var(--bg) 28%, #eaf1f7 100%);
  line-height: 1.6;
  letter-spacing: -0.012em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

/* Topbar — logo indigo */
.topbar {
  background: linear-gradient(90deg, var(--indigo-deep) 0%, var(--indigo) 55%, #2a4a8f 100%);
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  font-weight: 500;
  padding: .48rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.topbar a { color: rgba(255,255,255,.88); transition: color .2s var(--ease); }
.topbar a:hover { color: #7dd3fc; }
.topbar-links { display: flex; gap: 1.1rem; flex-wrap: wrap; align-items: center; }
.topbar-badge {
  display: inline-flex;
  align-items: center;
  padding: .18rem .55rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a5f3fc;
}
.topbar-right { display: flex; gap: .45rem; align-items: center; }
.topbar-right .dot { opacity: .45; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid rgba(48, 42, 129, .08);
  box-shadow: none;
}
.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  gap: 1.1rem;
  align-items: center;
  padding: .65rem 0;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .1rem;
}
.brand img {
  height: 46px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.brand-sub {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Advanced search */
.search-shell { position: relative; }
.search-advanced {
  display: grid;
  grid-template-columns: 150px 130px 1fr auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: visible;
  transition: border-color .2s, box-shadow .2s;
}
.search-advanced:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-soft);
}
.search-select {
  border-right: 1px solid var(--line);
  background: #f8fafc;
}
.search-select select {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: .85rem .7rem;
  color: var(--ink-soft);
  font-weight: 550;
  font-size: .86rem;
  outline: none;
  cursor: pointer;
}
.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.search-input-wrap input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: .85rem 2.2rem .85rem 1rem;
  outline: none;
  min-width: 0;
  font-size: .95rem;
}
.search-input-wrap input::placeholder { color: #94a3b8; }
.search-clear {
  position: absolute;
  right: .55rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}
.search-submit {
  border: 0;
  background: var(--indigo);
  color: #fff;
  font-weight: 650;
  padding: 0 1.35rem;
  cursor: pointer;
  border-radius: 0 7px 7px 0;
  letter-spacing: .01em;
}
.search-submit:hover { background: var(--cyan-deep); }

.search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 80;
  padding: 1.1rem;
  animation: fadeUp .2s var(--ease);
}
.search-panel-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.25rem;
}
.search-col h4 {
  margin: 0 0 .65rem;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.search-chips a {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .4rem .65rem;
  font-size: .84rem;
  font-weight: 550;
  color: var(--ink-soft);
  background: #f8fafc;
}
.search-chips a:hover {
  border-color: var(--cyan);
  color: var(--cyan-deep);
  background: #fff;
}
.search-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
}
.search-brand-row a {
  width: 100px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #fff;
  flex: 0 0 100px;
}
.search-brand-row img {
  width: 84px;
  height: 36px;
  object-fit: contain;
  object-position: center;
  opacity: .95;
}
.search-hint { color: var(--muted); font-size: .9rem; margin: 0; }
.search-result-list { display: grid; gap: .35rem; }
.search-result-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: .75rem;
  align-items: center;
  padding: .55rem .45rem;
  border-radius: 8px;
}
.search-result-item:hover { background: #f1f5f9; }
.search-result-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 6px;
  border: 1px solid var(--line-soft);
}
.search-result-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.3;
}
.search-result-item span {
  display: block;
  font-size: .78rem;
  color: var(--muted);
}
.search-result-item em {
  font-style: normal;
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy);
  white-space: nowrap;
}
.search-mini-links { display: grid; gap: .35rem; margin-top: .75rem; }
.search-mini-links a {
  font-size: .88rem;
  color: var(--cyan-deep);
  font-weight: 550;
}
.search-empty { color: var(--muted); font-size: .9rem; padding: .5rem 0; }

.header-actions { display: flex; align-items: center; gap: .45rem; }
.mobile-nav-toggle {
  display: none;
  align-items: center;
  gap: .35rem;
  color: var(--ink-soft);
  padding: .55rem .8rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: .86rem;
  font-weight: 550;
  cursor: pointer;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  color: var(--ink-soft);
  padding: 0 .85rem;
  min-height: 46px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: .86rem;
  font-weight: 550;
  transition: .2s var(--ease);
  line-height: 1;
}
.icon-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.icon-btn-solid {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.icon-btn-solid:hover {
  background: #1c4268;
  color: #fff;
}
.icon-btn-cart { min-width: 88px; justify-content: center; }
.cart-count {
  background: var(--cyan);
  color: #fff;
  font-weight: 700;
  font-size: .68rem;
  min-width: 1.15rem;
  height: 1.15rem;
  border-radius: 4px;
  display: inline-grid;
  place-items: center;
}

/* Corporate nav + mega menu */
.main-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 50;
}
.nav-bar {
  display: flex;
  align-items: stretch;
  gap: .35rem;
  min-height: 48px;
}
.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 0;
  background: var(--navy);
  color: #fff;
  font-weight: 650;
  font-size: .9rem;
  padding: 0 1.1rem;
  cursor: pointer;
  white-space: nowrap;
}
.mega-trigger:hover { background: var(--cyan-deep); }
.mega-icon {
  width: 16px;
  height: 12px;
  display: inline-block;
  background:
    linear-gradient(#fff,#fff) 0 0/100% 2px no-repeat,
    linear-gradient(#fff,#fff) 0 5px/100% 2px no-repeat,
    linear-gradient(#fff,#fff) 0 10px/100% 2px no-repeat;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  overflow-x: auto;
  flex: 1;
}
.nav-list > li > a {
  display: block;
  color: var(--ink-soft);
  padding: .95rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-list > li > a:hover,
.nav-list > li > a.is-active {
  color: var(--navy);
  border-bottom-color: var(--cyan);
}
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 55;
  padding: .9rem 0 1rem;
  max-height: min(70vh, 480px);
  overflow-x: hidden;
  overflow-y: auto;
  animation: fadeUp .22s var(--ease);
}
.mega-grid {
  display: grid;
  /* min() prevents classic auto-fit overflow when mins exceed container */
  grid-template-columns: repeat(auto-fit, minmax(min(132px, 100%), 1fr));
  gap: .65rem .7rem;
  align-items: start;
}
.mega-col {
  min-width: 0;
}
.mega-col p { display: none; }
.mega-title {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: .86rem;
  margin-bottom: .4rem;
  line-height: 1.25;
}
.mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .28rem;
}
.mega-col ul a {
  color: var(--ink-soft);
  font-size: .82rem;
  line-height: 1.3;
}
.mega-col ul a:hover { color: var(--cyan-deep); }
.mega-sub {
  display: block;
  margin-top: .12rem;
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.35;
}
.mega-sub a { color: var(--muted); font-size: .72rem; }
.mega-sub a:hover { color: var(--cyan-deep); }
.mega-cta {
  grid-column: 1 / -1;
  background: #f1f5f9;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .7rem .9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .75rem;
}
.mega-cta strong { color: var(--navy); font-size: .88rem; margin-right: .25rem; }
.mega-cta p { display: none; }
.mega-cta .btn { margin: 0 !important; }
.mega-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 45, .28);
  z-index: 45;
}

/* Buttons — geometric, logo indigo / cyan */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .88rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 650;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
  text-align: center;
}
.btn-primary {
  background: var(--indigo);
  color: #fff;
  box-shadow: none;
}
.btn-primary:hover {
  background: var(--cyan-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  border-color: rgba(48, 42, 129, .18);
  color: var(--indigo);
  background: rgba(255, 255, 255, .7);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan-deep);
  background: #fff;
}
.btn-outline {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}
.btn-dark {
  background: var(--indigo-deep);
  color: #fff;
}
.btn-dark:hover { background: var(--indigo); }
.btn-sm { padding: .55rem .95rem; font-size: .86rem; }
.btn-block { width: 100%; }

/* Hero — cinematic stage */
.hero.hero-stage,
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1a1848;
  border-bottom: 0;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.02);
  animation: heroDrift 32s var(--ease) infinite alternate;
  filter: saturate(1.06) contrast(1.05);
}
@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-1%, -.5%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; transform: none; }
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(247, 250, 253, .94) 0%,
      rgba(247, 250, 253, .78) 22%,
      rgba(247, 250, 253, .28) 44%,
      transparent 62%),
    linear-gradient(0deg, rgba(36, 31, 99, .45) 0%, transparent 36%);
  pointer-events: none;
}
.hero-glow { display: none !important; }
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 0 6.5rem;
  max-width: 640px;
  align-self: end;
}
.hero-logo {
  display: block;
  height: clamp(72px, 11vw, 120px);
  width: auto;
  max-width: min(560px, 94vw);
  object-fit: contain;
  object-position: left center;
  margin: 0 0 1.75rem;
  animation: rise 1.05s var(--ease) both;
  filter: drop-shadow(0 8px 24px rgba(255, 255, 255, .35));
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 800;
  margin: 0 0 .7rem;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--indigo);
  animation: rise 1.05s .1s var(--ease) both;
  max-width: 12ch;
}
.hero-inner > p {
  margin: 0 0 2rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.5;
  max-width: 28rem;
  font-weight: 500;
  animation: rise 1.05s .16s var(--ease) both;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  animation: rise 1.05s .24s var(--ease) both;
}
.hero .btn-primary {
  min-width: 11rem;
  padding: 1rem 1.6rem;
  font-size: 1rem;
}
.hero .btn-ghost {
  background: rgba(255, 255, 255, .88);
  border-color: rgba(48, 42, 129, .18);
  color: var(--indigo);
  backdrop-filter: blur(8px);
  padding: 1rem 1.45rem;
}
.hero-orb,
.hero-kicker,
.hero-brand,
.hero-mark,
.hero-signals { display: none; }
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Full-bleed promo trilogy */
.promo-bleed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--indigo-deep);
}
.promo-bleed .promo-panel {
  min-height: min(42vh, 360px);
  border-radius: 0;
}
.promo-bleed .promo-panel-copy {
  padding: 1.6rem 1.5rem 1.7rem;
}
.promo-bleed .promo-panel-copy strong {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -.035em;
}
.promo-bleed .promo-panel-copy span {
  font-size: .95rem;
  max-width: 20ch;
}
.promo-bleed .promo-panel::after {
  background:
    linear-gradient(200deg, rgba(36, 31, 99, .2) 0%, transparent 40%),
    linear-gradient(180deg, transparent 30%, rgba(21, 18, 48, .72) 72%, rgba(21, 18, 48, .94) 100%);
}
.brand-rail-tight {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.brand-rail-tight .brand-rail-head { display: none; }

.solution-grid-editorial .solution-index,
.solution-grid-editorial .solution-link { display: none; }
.solution-grid-editorial .solution-panel {
  min-height: 220px;
  padding: 1.5rem;
  justify-content: flex-end;
}
.solution-grid-editorial .solution-copy h3 {
  font-size: 1.25rem;
  font-weight: 750;
}
@media (max-width: 900px) {
  .promo-bleed { grid-template-columns: 1fr; }
  .promo-bleed .promo-panel { min-height: 220px; }
  .hero.hero-stage,
  .hero {
    min-height: 92vh;
    min-height: 92dvh;
    align-items: end;
  }
  .hero-inner { padding: 0 0 3.75rem; max-width: none; }
  .hero-logo { height: clamp(58px, 16vw, 84px); margin-bottom: 1.25rem; }
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.35rem); max-width: 11ch; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(247,250,253,.2) 0%, rgba(247,250,253,.72) 48%, rgba(247,250,253,.95) 100%),
      linear-gradient(90deg, rgba(247,250,253,.55) 0%, transparent 75%);
  }
}

/* Slim header search */
.header-inner-slim {
  min-height: 72px;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 1rem;
  padding: .45rem 0;
}
.brand-sub { display: none; }
.search-simple {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  align-items: stretch;
  min-height: 46px;
}
.search-simple input {
  border: 0;
  padding: 0 1rem;
  outline: none;
  min-width: 0;
  background: transparent;
  height: 46px;
}
.search-simple .search-submit {
  border: 0;
  border-radius: 0;
  padding: 0 1.15rem;
  min-height: 46px;
  height: 46px;
}
.is-home .site-header {
  border-bottom-color: transparent;
}
.is-home .main-nav {
  border-bottom-color: rgba(213,222,232,.65);
}

/* Brand marquee */
.brand-rail {
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
  padding: 1.75rem 0;
  overflow: hidden;
}
.brand-rail-head {
  text-align: center;
  font-family: var(--font);
  font-size: .84rem;
  font-weight: 550;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--muted);
  margin-bottom: 1.15rem;
}
.brand-track {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.brand-track a,
.brand-track span {
  display: grid;
  place-items: center;
  width: 152px;
  height: 66px;
  flex: 0 0 152px;
  padding: 0;
  opacity: .9;
  filter: none;
  transition: opacity .25s, transform .25s var(--ease);
}
.brand-track a:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.brand-track img,
.brand-logo {
  width: 132px;
  height: 50px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

/* Sections */
.section { padding: 3.5rem 0; }
.section-mist {
  background:
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.2));
}
.section-kicker {
  margin: 0 0 .5rem;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 550;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--cyan-deep);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  margin: 0 0 .35rem;
  letter-spacing: -.03em;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}
.section-head p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.45; }
.section-tight { padding: 2.75rem 0; }
.section-link {
  color: var(--cyan-deep);
  font-weight: 650;
  font-size: .92rem;
  letter-spacing: -.01em;
}

/* Trust pulse — quiet metrics, not a dashboard */
.trust-pulse {
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
  padding: 1.65rem 0;
}
.trust-pulse-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.trust-item-soft {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  border-left: 2px solid var(--cyan);
  padding-left: 1rem;
}
.trust-item-soft strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--indigo);
  line-height: 1.2;
}
.trust-item-soft span {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 500;
}

/* Promo strip — edge-to-edge cinematic panels */
.promo-strip {
  padding: 2rem 0 0;
  background: #fff;
}
.promo-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}
.promo-panel {
  position: relative;
  display: block;
  min-height: 248px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  border-radius: 0;
}
.promo-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.03);
  transition: transform .7s var(--ease), filter .4s;
  filter: saturate(1.04) brightness(.9);
}
.promo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(195deg, rgba(36, 31, 99, .15) 0%, transparent 42%),
    linear-gradient(180deg, transparent 28%, rgba(21, 28, 46, .55) 62%, rgba(21, 28, 46, .92) 100%);
  pointer-events: none;
}
.promo-panel-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: .3rem;
  padding: 1.35rem 1.3rem 1.35rem;
}
.promo-panel-copy strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.12;
}
.promo-panel-copy span {
  font-size: .9rem;
  color: rgba(255, 255, 255, .88);
  line-height: 1.4;
  max-width: 22ch;
}
.promo-panel-copy em {
  font-style: normal;
  font-size: .84rem;
  font-weight: 650;
  color: #7dd3fc;
  margin-top: .25rem;
  letter-spacing: -.01em;
  transition: color .25s, transform .25s var(--ease);
}
.promo-panel:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) brightness(.96);
}
.promo-panel:hover .promo-panel-copy em {
  color: #fff;
  transform: translateX(4px);
}

/* Stock focus rows — softer list */
.stock-rows {
  display: grid;
  gap: .75rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.stock-row {
  display: grid;
  grid-template-columns: 6.5rem 1fr auto;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), border-color .25s, box-shadow .35s;
}
.stock-row:last-child { border-bottom: 1px solid var(--line); }
.stock-row:hover {
  background: #fff;
  border-color: rgba(0,163,224,.45);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.stock-tag {
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: -.01em;
  text-align: center;
  padding: .45rem .55rem;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  background: #eef4f9;
}
.stock-tag.tag-fast { color: #fff; background: var(--ok); }
.stock-tag.tag-stock { color: #fff; background: var(--cyan-deep); }
.stock-tag.tag-rfq { color: #fff; background: var(--indigo); }
.stock-copy {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 0;
}
.stock-copy strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 650;
  color: var(--navy);
  letter-spacing: -.02em;
}
.stock-copy span {
  font-family: var(--font);
  font-size: .86rem;
  color: var(--muted);
  letter-spacing: -.01em;
}
.stock-arrow {
  font-family: var(--font);
  font-size: 1.25rem;
  color: var(--cyan-deep);
  transition: transform .3s var(--ease);
}
.stock-row:hover .stock-arrow { transform: translateX(5px); }

/* Solution panels */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .85rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.solution-panel {
  position: relative;
  min-height: 220px;
  padding: 1.35rem 1.3rem 1.2rem;
  background: #12253a;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .65rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), border-color .25s, box-shadow .35s;
}
.solution-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: blur(1.2px) saturate(1.05) brightness(.72);
  transition: transform .5s var(--ease), filter .35s;
}
.solution-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(36, 31, 99, .78) 0%, rgba(36, 31, 99, .45) 48%, rgba(21, 28, 46, .35) 100%),
    linear-gradient(180deg, rgba(21, 28, 46, .2) 0%, rgba(21, 28, 46, .55) 52%, rgba(21, 28, 46, .88) 100%);
  pointer-events: none;
}
.solution-panel:hover {
  border-color: rgba(0,163,224,.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.solution-panel:hover .solution-media img {
  transform: scale(1.14);
  filter: blur(.6px) saturate(1.08) brightness(.78);
}
.solution-index {
  position: absolute;
  top: 1.1rem;
  right: 1.15rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 650;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.72);
}
.solution-copy,
.solution-link { position: relative; z-index: 2; }
.solution-copy {
  max-width: 100%;
}
.solution-copy h3 {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.2;
  text-shadow: 0 1px 12px rgba(8,18,32,.35);
}
.solution-copy p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  line-height: 1.45;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  max-width: 18rem;
}
.solution-link {
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 650;
  color: #9fdfff;
  letter-spacing: -.01em;
}
.solution-panel:hover .solution-link { color: #fff; }

/* Process strip */
.process-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.7), rgba(237,243,248,.9));
  border-block: 1px solid var(--line-soft);
}
.process-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.process-step {
  padding: 1.4rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: .4rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.process-step:last-child { border-right: 1px solid var(--line); }
.process-num {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 650;
  letter-spacing: -.02em;
  color: var(--cyan);
}
.process-step strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 650;
  color: var(--navy);
  letter-spacing: -.02em;
}
.process-step span {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Expert CTA */
.expert-cta {
  background:
    linear-gradient(125deg, var(--indigo-deep) 0%, var(--indigo) 48%, #1a4f8c 100%);
  color: #fff;
  padding: 3.75rem 0;
  position: relative;
  overflow: hidden;
}
.expert-cta::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -40%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 163, 224, .28), transparent 68%);
  pointer-events: none;
}
.expert-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.expert-kicker {
  margin: 0 0 .45rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7dd3fc;
  font-weight: 650;
}
.expert-cta h2 {
  margin: 0 0 .5rem;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -.03em;
}
.expert-cta p {
  margin: 0;
  color: rgba(255,255,255,.82);
  max-width: 34rem;
  font-weight: 400;
}
.expert-cta-actions { display: flex; flex-wrap: wrap; gap: .65rem; }
.expert-cta .btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.expert-cta .btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

/* Legacy clinical aliases */
.promo-banner-track,
.stats-band,
.proof-section,
.testimonial-grid,
.kpi-band { display: none; }

.expert-cta .btn-primary {
  background: var(--cyan) !important;
  color: #042033 !important;
}
.expert-cta .btn-primary:hover {
  background: #38c9ff !important;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: #128c7e;
  color: #fff;
  font-size: .88rem;
  font-weight: 650;
  border: 0;
  transition: transform .25s var(--ease), background .2s;
}
.wa-float:hover {
  background: #0f766e;
  transform: translateY(-2px);
  color: #fff;
}
.wa-float-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  flex: 0 0 auto;
}
.wa-float-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #128c7e;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.cookie-banner p {
  margin: 0;
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.cookie-banner a {
  color: var(--cyan-deep);
  font-weight: 650;
  text-decoration: underline;
}
@media (max-width: 560px) {
  .cookie-banner { left: .65rem; right: .65rem; bottom: .75rem; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .3s var(--ease), border-color .3s;
}
.category-tile::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-soft), transparent 70%);
  transition: transform .4s var(--ease);
}
.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(0,168,232,.35);
}
.category-tile:hover::after { transform: scale(1.35) translate(-12px, 8px); }
.category-tile h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 .3rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.category-tile span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: .92rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.product-card {
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s var(--ease), transform .35s var(--ease);
  box-shadow: none;
}
.product-card:hover {
  border-color: rgba(0, 163, 224, .45);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.product-media {
  aspect-ratio: 5/4;
  background:
    linear-gradient(165deg, #eef2fb 0%, #f5f9fc 50%, #fff 100%);
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
  position: relative;
  padding: 1.15rem;
}
.product-media img {
  max-height: 124px;
  width: auto;
  object-fit: contain;
  transition: transform .45s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.04); }
.badges {
  position: absolute;
  left: .7rem;
  top: .7rem;
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  z-index: 2;
  max-width: 70%;
}
.badge {
  font-family: var(--font);
  font-size: .66rem;
  font-weight: 650;
  padding: .2rem .45rem;
  border-radius: 4px;
  background: var(--indigo);
  color: #fff;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.2;
}
.badge-new { background: var(--indigo); }
.badge-sale { background: var(--danger); }
.badge-ship { background: var(--ok); }
.badge-stock { background: var(--warn); }
.product-body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}
.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  min-height: 1.1rem;
}
.product-brand {
  font-size: .72rem;
  font-weight: 700;
  color: var(--cyan-deep);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.sku-mono {
  font-family: var(--font-mono);
  font-size: .64rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52%;
  text-align: right;
  opacity: .85;
}
.product-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.55em;
}
.data-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .3rem .4rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -.01em;
  padding: .15rem 0 .05rem;
  border: 0;
  margin: 0;
}
.data-cell.eta-fast,
.data-row .eta-fast { color: var(--ok); font-weight: 650; }
.data-cell.eta-quote,
.data-row .eta-quote { color: var(--indigo); font-weight: 650; }
.data-cell.eta-late,
.data-row .eta-late { color: var(--warn); }
.data-sep { opacity: .4; }
.data-usd {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--ink-soft);
}
.price-block { margin-top: auto; padding-top: .35rem; }
.price-usd {
  color: var(--muted);
  font-size: .78rem;
}
.price-usd s { opacity: .65; margin-right: .35rem; }
.price-tl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -.025em;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.price-quote {
  font-weight: 650;
  color: var(--indigo);
  font-size: .92rem;
}
.product-actions { display: flex; gap: .5rem; margin-top: .65rem; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease);
}
.trust-item:hover { transform: translateY(-3px); }
.trust-item h4 {
  margin: 0 0 .35rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.015em;
}
.trust-item p { margin: 0; color: var(--muted); font-size: .9rem; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Catalog */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.75rem;
  align-items: start;
}
.filters {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  position: sticky;
  top: calc(var(--header-h) + 14px);
  box-shadow: none;
  display: grid;
  gap: 1rem;
}
.filters h3 {
  margin: 0 0 .85rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.filters label {
  display: block;
  font-size: .82rem;
  color: var(--muted);
  margin: .75rem 0 .35rem;
  font-weight: 550;
}
.filters input,
.filters select,
.form-control {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .72rem .9rem;
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.filters input:focus,
.filters select:focus,
.form-control:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px var(--cyan-soft);
}
.filter-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.05rem 1.15rem;
}
.filter-check {
  display: flex !important;
  align-items: center;
  gap: .5rem;
  margin: 1rem 0 !important;
}
.filter-block .btn { margin-top: .35rem; }

/* Modern category nav */
.cat-nav {
  background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .85rem .7rem .75rem;
  overflow: hidden;
}
.cat-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 .35rem .65rem;
  margin-bottom: .35rem;
  border-bottom: 1px solid var(--line-soft);
}
.cat-nav-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.cat-nav-reset {
  font-size: .78rem;
  font-weight: 650;
  color: var(--cyan-deep);
}
.cat-nav-all,
.cat-acc-link,
.cat-acc-item > a,
.cat-acc-sub a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  text-decoration: none;
  color: var(--ink-soft);
  border-radius: 9px;
  transition: background .18s, color .18s, box-shadow .18s;
}
.cat-nav-all {
  margin: 0 .15rem .45rem;
  padding: .7rem .75rem;
  font-weight: 650;
  font-size: .9rem;
  background: #fff;
  border: 1px solid var(--line-soft);
}
.cat-nav-all:hover,
.cat-acc-link:hover,
.cat-acc-item > a:hover,
.cat-acc-sub a:hover {
  background: #eef5f9;
  color: var(--navy);
}
.cat-nav-all.is-active,
.cat-acc-link.is-active,
.cat-acc-item.is-active > a,
.cat-acc-sub a.is-active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 18px rgba(22, 50, 79, .16);
}
.cat-nav-all.is-active .cat-nav-count,
.cat-acc-link.is-active .cat-nav-count,
.cat-acc-item.is-active > a .cat-nav-count,
.cat-acc-sub a.is-active .cat-nav-count {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.cat-nav-count {
  flex: 0 0 auto;
  min-width: 1.5rem;
  padding: .12rem .42rem;
  border-radius: 999px;
  background: #e8eef5;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.cat-acc {
  margin: .1rem 0;
  border-radius: 10px;
}
.cat-acc-head {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: .1rem;
}
.cat-acc-toggle,
.cat-acc-spacer {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}
.cat-acc-toggle:hover { background: #e8eef5; }
.cat-acc-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
  transition: transform .2s var(--ease);
}
.cat-acc.is-open .cat-acc-toggle::before {
  transform: rotate(45deg);
  margin-top: 2px;
}
.cat-acc-link {
  padding: .55rem .65rem .55rem .45rem;
  font-weight: 650;
  font-size: .9rem;
  min-width: 0;
}
.cat-acc-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cat-acc-list {
  list-style: none;
  margin: 0 0 .35rem 1.85rem;
  padding: .15rem 0 .25rem .7rem;
  border-left: 2px solid var(--line-soft);
  display: none;
  gap: .15rem;
}
.cat-acc.is-open .cat-acc-list { display: grid; }
.cat-acc-item > a {
  padding: .42rem .55rem;
  font-size: .84rem;
  font-weight: 550;
}
.cat-acc-sub {
  list-style: none;
  margin: .15rem 0 .25rem .45rem;
  padding: 0 0 0 .55rem;
  border-left: 1px dashed var(--line);
  display: none;
  gap: .08rem;
}
.cat-acc.is-open .cat-acc-sub.is-open,
.cat-acc-item.is-active .cat-acc-sub,
.cat-acc-sub.is-open {
  display: grid;
}
.cat-acc-sub a {
  padding: .32rem .5rem;
  font-size: .78rem;
  color: var(--muted);
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
  margin: 0 0 .35rem;
  letter-spacing: -.03em;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 1.25rem;
}
.breadcrumb a:hover { color: var(--cyan-deep); }

.product-detail {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.detail-media {
  background: linear-gradient(165deg, #eef4fb, #f9fbfd);
  border-radius: var(--radius);
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.detail-media img { max-height: 280px; }
.detail-meta .brand {
  color: var(--cyan-deep);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .5rem;
}
.detail-meta h1 {
  font-family: var(--font);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  margin: 0 0 .75rem;
  letter-spacing: -.025em;
  line-height: 1.2;
  font-weight: 650;
}
.sku { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
.detail-prices { margin: 1rem 0 1.25rem; }
.detail-prices .price-tl { font-size: 1.75rem; }
.qty-row {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin: 1rem 0 1.25rem;
}
.qty-row input {
  width: 88px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .7rem;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.specs-table th,
.specs-table td {
  text-align: left;
  padding: .75rem .4rem;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.specs-table th { width: 36%; color: var(--muted); font-weight: 550; }

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 1.25rem;
  align-items: start;
}
.cart-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-row img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--bg);
  border-radius: 12px;
  padding: .35rem;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .45rem 0;
  color: var(--ink-soft);
}
.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 750;
  font-size: 1.2rem;
  margin-top: .75rem;
  padding-top: .85rem;
  border-top: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid .full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  margin-bottom: .35rem;
  font-size: .86rem;
  color: var(--muted);
  font-weight: 550;
}
.radio-stack { display: grid; gap: .65rem; }
.radio-card {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1rem;
  cursor: pointer;
  background: #fff;
  transition: border-color .2s, background .2s;
}
.radio-card:has(input:checked) {
  border-color: var(--cyan);
  background: rgba(0,168,232,.06);
}
.radio-card-hint {
  display: block;
  margin-top: .2rem;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.35;
}

.auth-wrap { max-width: 460px; margin: 2rem auto; }
.auth-wrap h1 {
  font-family: var(--font);
  margin: 0 0 .35rem;
  font-weight: 650;
}
.auth-wrap .muted { color: var(--muted); margin-bottom: 1.25rem; }

.flash-stack { display: grid; gap: .65rem; margin: 1rem 0; }
.alert {
  padding: .9rem 1.05rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: .95rem;
}
.alert-success { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.alert-error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.alert-info { background: #eff8ff; border-color: #bfdbfe; color: #1e40af; }

/* Footer — light premium */
.site-footer {
  margin-top: 0;
  background:
    radial-gradient(900px 280px at 8% 0%, rgba(0, 163, 224, .07), transparent 55%),
    linear-gradient(180deg, #f7fafc 0%, #fff 40%);
  color: var(--ink-soft);
  padding: 3.25rem 0 1.5rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 2.25rem 2rem;
  margin-bottom: 2.25rem;
}
.footer-brand {
  padding: .15rem 0;
}
.footer-brand img {
  height: 44px;
  margin-bottom: 1rem;
  padding: .45rem .65rem;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.footer-brand p {
  margin: 0;
  max-width: 32ch;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}
.site-footer h4 {
  color: var(--navy);
  margin: 0 0 .85rem;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.site-footer li { font-size: .9rem; line-height: 1.4; color: var(--ink-soft); }
.site-footer a { color: var(--ink-soft); transition: color .2s; }
.site-footer a:hover { color: var(--cyan-deep); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 1.15rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .86rem;
  color: var(--muted);
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}
.pagination {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.pagination a,
.pagination span {
  min-width: 2.35rem;
  height: 2.35rem;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: .9rem;
  font-weight: 550;
}
.pagination .current {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.thumb-row {
  display: flex;
  gap: .55rem;
  margin-top: .85rem;
  flex-wrap: wrap;
}
.thumb-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: .35rem;
  cursor: pointer;
  width: 72px;
  height: 72px;
}
.thumb-btn img { width: 100%; height: 100%; object-fit: contain; }
.thumb-btn:hover { border-color: var(--cyan); }
.variant-box { margin: 1rem 0; }
.variant-box > label { display: block; font-weight: 650; margin-bottom: .55rem; }
.variant-options { display: flex; flex-wrap: wrap; gap: .5rem; }
.variant-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .45rem .9rem;
  cursor: pointer;
  background: #fff;
  font-weight: 550;
}
.variant-chip:has(input:checked) {
  border-color: var(--cyan);
  background: rgba(0,168,232,.08);
  color: var(--cyan-deep);
}
.variant-chip input { display: none; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line);
  padding: .85rem .6rem;
  text-align: left;
  vertical-align: top;
  font-size: .92rem;
}
.compare-table th:first-child { width: 140px; color: var(--muted); font-weight: 550; }
.cms-body h3 { margin-top: 1.25rem; }
.cms-body p { color: var(--ink-soft); }
.cms-body ul { color: var(--ink-soft); }
.cms-shell { max-width: 900px; }
.cms-body { margin-top: 1.25rem; }
.cms-faq {
  margin-top: 1.25rem;
  padding: 1.15rem 1.25rem;
}
.cms-faq .faq-item:first-child { margin-top: 0; }
.cms-help-cta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
}
.cms-help-cta p {
  margin: .25rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}
.cms-help-actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.invoice-shell { max-width: 860px; }
.invoice-gate-lead {
  margin: 0 0 1rem;
  color: var(--muted);
}
.invoice-toolbar {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.invoice-sheet h1 { font-size: 1.35rem; }
.invoice-sheet h2 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: .35rem 0 1rem;
}
.invoice-sheet table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.invoice-sheet th,
.invoice-sheet td {
  border: 1px solid var(--line);
  padding: .55rem .65rem;
  font-size: .9rem;
}
.invoice-sheet th { background: #f5f8fb; text-align: left; }
@media print {
  .topbar,
  .site-header,
  .main-nav,
  .site-footer,
  .trust-bar,
  .wa-float,
  .cookie-banner,
  .cart-drawer,
  .toast-stack,
  .invoice-toolbar,
  .page-shell-head,
  .mega-backdrop { display: none !important; }
  .invoice-sheet.panel,
  .panel { box-shadow: none !important; border: 0 !important; }
  body { background: #fff !important; }
}

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}
.btn {
  border-radius: var(--radius-sm) !important;
}
.btn-primary {
  background: var(--indigo) !important;
  color: #fff !important;
  box-shadow: none !important;
}
.btn-primary:hover {
  background: var(--cyan-deep) !important;
  transform: translateY(-1px) !important;
  box-shadow: none !important;
}
.category-tile,
.product-card,
.panel,
.filter-block,
.cat-nav,
.trust-item {
  border-radius: var(--radius) !important;
}
.brand-rail-head {
  letter-spacing: .02em;
}

@media (max-width: 1100px) {
  .search-advanced { grid-template-columns: 1fr 1fr; }
  .search-select-brand { border-right: 0; border-bottom: 1px solid var(--line); }
  .search-input-wrap { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .search-submit { grid-column: 1 / -1; border-radius: 0 0 7px 7px; min-height: 46px; }
  .search-panel-grid { grid-template-columns: 1fr 1fr; }
  .mega-grid { grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr)); }
}
@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto auto; }
  .search-shell { grid-column: 1 / -1; order: 3; }
  .search-panel { position: static; margin-top: .65rem; }
  .nav-bar { flex-wrap: wrap; }
  .mega-trigger { width: 100%; justify-content: center; min-height: 46px; }
  .mega-menu {
    position: static;
    box-shadow: none;
    border-top: 1px solid var(--line);
    max-height: 280px;
    padding: .65rem 0;
  }
  .mega-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem .75rem; }
  .mega-backdrop { display: none !important; }
  .mega-cta { grid-column: 1 / -1; }
  .category-grid,
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-strip-inner { grid-template-columns: 1fr 1fr; }
  .promo-panel:last-child { grid-column: 1 / -1; min-height: 200px; }
  .trust-pulse-inner { grid-template-columns: repeat(2, 1fr); }
  .process-strip { grid-template-columns: 1fr; }
  .process-step { border-right: 1px solid var(--line); }
  .stock-row {
    grid-template-columns: 5.75rem 1fr auto;
    gap: .75rem;
    padding: 1rem 1.05rem;
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-layout,
  .product-detail,
  .cart-layout,
  .checkout-layout,
  .footer-grid { grid-template-columns: 1fr; }
  .filters { position: static; }
  .mobile-nav-toggle { display: inline-flex; }
  .main-nav.is-collapsed .nav-list { display: none; }
  .main-nav .nav-list { flex-direction: column; width: 100%; padding-bottom: .5rem; }
}

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
}
.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .45);
}
.nav-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(88vw, 320px);
  background: #fff;
  box-shadow: 8px 0 32px rgba(15, 23, 42, .18);
  display: flex;
  flex-direction: column;
  animation: navDrawerIn .22s ease;
}
@keyframes navDrawerIn {
  from { transform: translateX(-12px); opacity: .6; }
  to { transform: none; opacity: 1; }
}
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line-soft);
}
.nav-drawer-x {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
}
.nav-drawer-body {
  padding: 1rem 1.1rem 1.5rem;
  overflow: auto;
}
.nav-drawer-links {
  display: grid;
  gap: .15rem;
  margin-bottom: 1.25rem;
}
.nav-drawer-links a {
  display: block;
  padding: .55rem .35rem;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
}
.nav-drawer-label {
  margin: 0 0 .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-drawer-cats {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-drawer-cats a {
  display: block;
  padding: .45rem .2rem;
  color: var(--ink-soft);
  text-decoration: none;
}
.brands-index {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.brands-index-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  padding: 1.15rem .85rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--navy);
  background: #fff;
  text-align: center;
  font-weight: 600;
  font-size: .9rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.brands-index-card:hover {
  border-color: var(--cyan, #00A3E0);
  box-shadow: 0 6px 18px rgba(48, 42, 129, .08);
}
.brands-index-card .brand-logo {
  max-height: 36px;
  width: auto;
}
.quote-bulk { margin-bottom: 1.25rem; }
.datasheet-empty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .65rem;
  color: var(--muted);
}
.datasheet-quote-form { display: inline; margin: 0; }
.datasheet-quote-form .section-link {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}
/* Category tree (legacy fallback) */
.cat-tree { list-style: none; margin: 0; padding: 0; }

/* ETA / delivery */
.eta-pill, .eta-inline {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin: .55rem 0 .25rem;
  padding: .3rem .65rem;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  border: 1px solid var(--line);
  background: #fff;
}
.eta-inline { margin: .25rem 0 .45rem; padding: .2rem .45rem; font-size: .72rem; }
.eta-fast { color: #0a7a4a; border-color: #b7e4cd; background: #f0faf5; }
.eta-normal { color: var(--navy); border-color: #c9d6e5; background: #f5f8fc; }
.eta-late { color: #9a5b00; border-color: #f0d9a8; background: #fff8eb; }
.eta-quote { color: #355070; border-color: #c8d4e3; background: #f3f6fa; }

.trust-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.trust-mini div { display: flex; flex-direction: column; gap: .2rem; }
.trust-mini strong { font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); }
.trust-mini span { font-size: .85rem; color: var(--muted); }

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: .65rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}
.faq-item p {
  margin: .45rem 0 0;
  color: var(--ink-soft);
  font-size: .92rem;
}

@media (max-width: 560px) {
  .search-advanced { grid-template-columns: 1fr; }
  .search-select { border-right: 0; border-bottom: 1px solid var(--line); }
  .product-grid,
  .category-grid,
  .solution-grid,
  .promo-strip-inner,
  .trust-strip,
  .form-grid,
  .search-panel-grid,
  .trust-mini,
  .trust-pulse-inner { grid-template-columns: 1fr; }
  .promo-panel,
  .promo-panel:last-child { grid-column: auto; min-height: 190px; }
  .trust-item-soft {
    border-left: 3px solid var(--cyan);
    padding: .25rem 0 .25rem 1rem;
  }
  .stock-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "tag arrow"
      "copy copy";
  }
  .stock-tag { grid-area: tag; justify-self: start; }
  .stock-arrow { grid-area: arrow; }
  .stock-copy { grid-area: copy; }
  .solution-copy p { white-space: normal; }
  .brand img { height: 34px; }
  .hero.hero-stage,
  .hero {
    min-height: 92vh;
    min-height: 92dvh;
    align-items: end;
  }
  .hero-inner { padding: 0 0 3.5rem; max-width: none; }
  .hero-media img { object-position: 70% center; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(247,250,253,.15) 0%, rgba(247,250,253,.7) 50%, rgba(247,250,253,.95) 100%),
      linear-gradient(90deg, rgba(247,250,253,.5) 0%, transparent 72%);
  }
  .hero h1 { max-width: 11ch; }
  .brand-sub { display: none; }
  .wa-float span { display: none; }
  .wa-float { padding: .85rem; border-radius: 50%; }
  .expert-cta-inner { align-items: flex-start; }
  .header-inner-slim { grid-template-columns: auto auto; }
}

/* ===== E-commerce UX: trust, checkout steps, gallery, drawer, empty, toast ===== */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-soft);
  padding: 1.25rem 0;
  margin-top: 3.5rem;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-bar-item {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: .2rem .35rem .2rem 1rem;
  border-left: 3px solid var(--cyan);
}
.trust-bar-item strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.2;
}
.trust-bar-item span { font-size: .82rem; color: var(--muted); }
.trust-bar-item a { color: var(--cyan-deep); font-weight: 600; }

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0 0;
}
.trust-inline span {
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .7rem;
  border-radius: 999px;
  background: #eef5fa;
  color: var(--navy);
}
.trust-inline-compact span { font-size: .72rem; padding: .3rem .55rem; }

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin: 1.25rem 0 0;
}
.process-flow-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow-sm);
}
.process-flow-num {
  display: block;
  font-family: var(--font-display);
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: .35rem;
}
.process-flow-step strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: .35rem;
  letter-spacing: -.02em;
}
.process-flow-step p {
  margin: 0;
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.45;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin: 0 0 1.25rem;
}
.checkout-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
}
.checkout-step span {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8eef5;
  font-size: .78rem;
}
.checkout-step.is-active {
  border-color: var(--cyan);
  color: var(--navy);
  box-shadow: 0 0 0 3px var(--cyan-soft);
}
.checkout-step.is-active span { background: var(--cyan); color: #fff; }
.checkout-step.is-done { border-color: rgba(15,118,110,.35); color: var(--ok); }
.checkout-pane-title {
  font-size: 1.1rem;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  color: var(--navy);
}
.checkout-nav-row {
  display: flex;
  gap: .65rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.checkout-nav-row .btn { flex: 1; min-height: 48px; }
.checkout-next { margin-top: 1.25rem; min-height: 48px; }
.checkout-address-pick { margin-bottom: 1rem; }
.checkout-aside-link {
  display: inline-block;
  margin-top: .45rem;
  font-size: .85rem;
  color: var(--cyan-deep);
  font-weight: 600;
}
.checkout-legal {
  font-size: .85rem;
  color: var(--muted);
  margin: 1rem 0 0;
}
.checkout-legal a {
  color: var(--cyan-deep);
  font-weight: 600;
}
.checkout-summary-title {
  font-size: 1.15rem;
  margin: 0 0 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--navy);
}
.checkout-summary-trust { margin-top: 1rem; }
.checkout-summary .checkout-submit-desktop { margin-top: 1.25rem; }
@media (max-width: 900px) {
  .checkout-summary .checkout-submit-desktop { display: none; }
}
@media (min-width: 901px) {
  .checkout-pane[hidden] { display: block !important; }
  .checkout-steps { display: none; }
  .checkout-next, .checkout-nav-row { display: none; }
  .checkout-pane + .checkout-pane { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); }
}

.gallery .detail-media {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  background: #f4f7fa;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 280px;
}
.gallery .detail-media img { max-height: 300px; transition: transform .35s var(--ease); }
.gallery .detail-media:hover img { transform: scale(1.06); }
.gallery-zoom-hint {
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  font-size: .72rem;
  font-weight: 650;
  background: rgba(22,50,79,.85);
  color: #fff;
  padding: .3rem .55rem;
  border-radius: 999px;
}
.thumb-btn.is-active { outline: 2px solid var(--cyan); outline-offset: 1px; }

.empty-state {
  text-align: center;
  padding: 2.25rem 1.5rem;
}
.empty-state strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: .4rem;
}
.empty-state p {
  margin: 0 auto 1.15rem;
  max-width: 36ch;
  color: var(--muted);
}
.empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
}

.cart-drawer[hidden] { display: none !important; }
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
}
.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,27,45,.45);
}
.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px rgba(15,27,45,.18);
  animation: drawerIn .28s var(--ease);
}
@keyframes drawerIn {
  from { transform: translateX(16px); opacity: .6; }
  to { transform: none; opacity: 1; }
}
.cart-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem 1rem;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-kicker {
  margin: 0 0 .2rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}
.cart-drawer-head strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
}
.cart-drawer-x {
  border: 1px solid var(--line);
  background: #f7fafc;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: border-color .2s, color .2s;
}
.cart-drawer-x:hover {
  border-color: var(--cyan);
  color: var(--navy);
}
.cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: .85rem 1.1rem 1rem;
}
.cart-drawer-loading {
  margin: 1rem 0;
  color: var(--muted);
  font-size: .92rem;
}
.cart-drawer-empty {
  text-align: center;
  padding: 2rem .75rem 1.5rem;
  display: grid;
  gap: .45rem;
  justify-items: center;
}
.cart-drawer-empty strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
}
.cart-drawer-empty p {
  margin: 0 0 .65rem;
  color: var(--muted);
  font-size: .9rem;
}
.cart-drawer-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: .8rem;
  align-items: center;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  color: inherit;
  transition: background .2s;
}
.cart-drawer-item:hover { background: #f8fafc; }
.cart-drawer-thumb {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: #f3f7fb;
  border: 1px solid var(--line-soft);
}
.cart-drawer-thumb img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}
.cart-drawer-meta {
  min-width: 0;
  display: grid;
  gap: .2rem;
}
.cart-drawer-meta strong {
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.3;
  color: var(--navy);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-drawer-meta span { font-size: .78rem; color: var(--muted); }
.cart-drawer-line {
  font-style: normal;
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy);
  white-space: nowrap;
}
.cart-drawer-foot {
  padding: 1rem 1.2rem 1.35rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: .55rem;
  background: #fafcfd;
}
.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .15rem;
}
.cart-drawer-total span { color: var(--muted); font-size: .9rem; }
.cart-drawer-total strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
}

.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(10,16,28,.88);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.lightbox img {
  max-width: min(920px, 94vw);
  max-height: 86vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

.toast-stack {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 140;
  display: grid;
  gap: .5rem;
  width: min(92vw, 420px);
}
.toast {
  background: #16324f;
  color: #fff;
  padding: .85rem 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: .92rem;
  animation: rise .35s var(--ease);
}
.toast.is-error { background: #991b1b; }
.toast.is-ok { background: #0f766e; }

.btn.is-loading {
  opacity: .72;
  pointer-events: none;
  position: relative;
}
.btn.is-loading::after {
  content: "";
  width: .85rem;
  height: .85rem;
  margin-left: .45rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
  vertical-align: -2px;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .process-flow { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .trust-bar-grid,
  .process-flow { grid-template-columns: 1fr; }
  .checkout-step { font-size: .82rem; }
}

.product-card--oos {
  opacity: .78;
}
.product-card--oos:hover {
  transform: none;
}
.data-oos {
  color: #b42318;
  font-weight: 600;
}

/* —— Design batch: a11y, covers, brand, filters, auth —— */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--navy, #152033);
  color: #fff;
  padding: .75rem 1.1rem;
  font-weight: 650;
  border-radius: 0 0 10px 0;
}
.skip-link:focus {
  left: 0;
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.btn:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

.brand-kicker {
  margin: 0 0 .35rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-deep, #008fc7);
}

.mega-cover {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: .55rem;
  border: 1px solid var(--line);
  aspect-ratio: 16/10;
  background: #eef4fa;
}
.mega-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 45%;
  display: block;
  filter: saturate(1.08) brightness(.95);
}
.mega-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 28, 48, .15) 0%, rgba(12, 28, 48, .45) 48%, rgba(12, 28, 48, .88) 100%);
  pointer-events: none;
}
.mega-cover span {
  position: absolute;
  left: .55rem;
  right: .45rem;
  bottom: .5rem;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: clamp(.72rem, 1.05vw, .86rem);
  line-height: 1.2;
  text-shadow: 0 1px 10px rgba(15, 30, 50, .45);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.mega-col ul { margin: 0; padding: 0; list-style: none; }
.mega-col li { margin: .35rem 0; min-width: 0; }
.mega-col li > a {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: .86rem;
  line-height: 1.3;
  display: block;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.mega-col li > a:hover { color: var(--cyan-deep); }
.mega-sub {
  display: block;
  overflow-wrap: anywhere;
}

.cat-cover {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  min-height: 200px;
  display: grid;
  align-items: end;
  background: #e8eef5;
}
.cat-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-cover-copy {
  position: relative;
  z-index: 1;
  padding: 1.4rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 28, 48, .72) 100%);
  color: #fff;
}
.cat-cover-copy .page-title { color: #fff; margin: .35rem 0 .4rem; }
.cat-cover-copy p { margin: 0; color: rgba(255,255,255,.88); max-width: 42rem; }
.breadcrumb-on-dark a { color: rgba(255,255,255,.9); }
.breadcrumb-on-dark span { color: rgba(255,255,255,.55); }

.catalog-hero {
  margin-bottom: 1.15rem;
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: 18px;
  background:
    radial-gradient(720px 240px at 92% 0%, rgba(0,163,224,.14), transparent 55%),
    linear-gradient(135deg, #eef4fb 0%, #f7fafc 55%, #e8eef5 100%);
  border: 1px solid rgba(213,222,232,.85);
}
.catalog-hero .page-title {
  margin: .35rem 0 .45rem;
}
.catalog-hero-lead {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.02rem;
  line-height: 1.5;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  margin: 0 0 1.15rem;
  position: sticky;
  top: calc(var(--header-h) + 8px);
  z-index: 20;
  padding: .55rem 0;
  background: linear-gradient(180deg, var(--bg, #f4f7fb) 70%, transparent);
}
.filter-chips-label {
  font-size: .86rem;
  color: var(--muted);
  font-weight: 600;
  margin-right: .25rem;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}
.filter-chip.is-on {
  border-color: rgba(0,163,224,.45);
  background: rgba(0,163,224,.08);
  color: var(--cyan-deep);
}
.filter-chip-clear { color: var(--danger, #b91c1c); }
.filter-mobile-btn { display: none; margin-left: auto; }
.filters-mobile-head { display: none; }
.filters-backdrop { display: none; }

.brand-hero {
  padding: 2.2rem 0 1.25rem;
  background:
    radial-gradient(900px 320px at 90% 0%, rgba(0,163,224,.12), transparent 60%),
    linear-gradient(180deg, #eef4fb 0%, transparent 100%);
}
.brand-hero-inner {
  display: block;
}
.brand-hero-copy {
  max-width: 44rem;
}
.brand-kicker {
  margin: 0 0 .65rem;
  font-size: .88rem;
  font-weight: 550;
  color: var(--cyan-deep);
}
.brand-hero-lockup {
  margin: 0;
  line-height: 0;
}
.brand-hero-logo {
  display: block;
  width: 250px;
  height: 72px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.brand-blurb {
  margin: .85rem 0 0;
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.5;
}
.brand-bridge-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 1rem 0 0;
}
.brand-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.15rem;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-brand {
  color: inherit;
  text-decoration: none;
  font-weight: 650;
}
.product-brand:hover { color: var(--cyan-deep); }

.compare-wrap { padding: 0; overflow: hidden; }
.compare-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: -.35rem 0 1rem;
}
.compare-remove { margin-top: .5rem; }
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table thead th {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  min-width: 180px;
  vertical-align: top;
}
.compare-sticky {
  position: sticky;
  left: 0;
  background: #f7fafc;
  z-index: 3;
  min-width: 120px;
}
.compare-media {
  display: grid;
  place-items: center;
  height: 96px;
  background: #f3f7fb;
  border-radius: 10px;
  margin-bottom: .55rem;
}
.compare-media img { max-height: 72px; width: auto; object-fit: contain; }
.compare-name {
  display: block;
  font-weight: 650;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.3;
}
.compare-name:hover { color: var(--cyan-deep); }

.auth-section { padding-top: 2.5rem; }
.auth-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 2rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.auth-aside .page-title { margin: .2rem 0 .6rem; }
.auth-aside p { color: var(--muted); margin: 0; }
.auth-wrap h2 {
  margin: 0 0 .25rem;
  font-size: 1.35rem;
  font-family: var(--font-display, var(--font));
}
.auth-wrap .muted { margin: 0 0 1rem; color: var(--muted); }
.auth-foot { margin-top: 1rem; color: var(--muted); }
.auth-foot a { color: var(--cyan-deep); font-weight: 600; }

.contact-hero { margin-bottom: 1.35rem; max-width: 40rem; }
.contact-panel-title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--navy);
}
.contact-aside-lead {
  margin: -.35rem 0 1.1rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}
.contact-dl { margin: 0; display: grid; gap: .85rem; }
.contact-dl dt {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 700;
}
.contact-dl dd { margin: .15rem 0 0; color: var(--ink-soft); }
.contact-aside-links {
  display: grid;
  gap: .45rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.account-hero { margin-bottom: 1.25rem; }
.account-hero p { color: var(--muted); margin: .25rem 0 0; }
.account-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.account-tile {
  display: grid;
  gap: .2rem;
  padding: 1.1rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .25s var(--ease);
}
.account-tile:hover {
  border-color: rgba(0,163,224,.45);
  transform: translateY(-2px);
}
.account-tile strong {
  font-size: 1.45rem;
  font-family: var(--font-display, var(--font));
}
.account-tile span { color: var(--muted); font-size: .88rem; }
.account-orders-panel { margin-top: 1.25rem; }
.account-orders-title {
  font-size: 1.15rem;
  margin: 0 0 1rem;
}
.account-orders-empty { padding: 1rem 0; }
.table-scroll { overflow-x: auto; }
.account-orders a { color: var(--cyan-deep); font-weight: 600; }

.address-panel-title,
.address-form-title {
  font-size: 1.1rem;
  margin: 0 0 1rem;
}
.address-form-title { grid-column: 1 / -1; margin: 0; }
.address-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: .75rem;
  background: #fff;
}
.address-pre {
  white-space: pre-wrap;
  font-family: inherit;
  margin: .5rem 0;
  color: var(--ink-soft);
}
.address-actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
}
.address-empty { padding: .35rem 0 0; }

@media (max-width: 900px) {
  .auth-layout { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-mobile-btn { display: inline-flex; }
  .filters-mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .75rem;
  }
  .filters {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(340px, 92vw);
    top: 0;
    z-index: 80;
    background: #fff;
    padding: 1rem;
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform .28s var(--ease);
    box-shadow: var(--shadow);
  }
  .filters.is-open { transform: none; }
  .filters-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 30, 50, .45);
    z-index: 70;
  }
  .filters-backdrop[hidden] { display: none !important; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-chips {
    top: calc(var(--header-h) - 4px);
    background: var(--bg, #f4f7fb);
  }
}
@media (max-width: 560px) {
  .account-grid { grid-template-columns: 1fr 1fr; }
  .cat-cover { min-height: 170px; }
}

/* —— Design polish wave —— */
.page-shell-head { margin-bottom: 1.35rem; max-width: 40rem; }
.page-shell-lead { margin: .35rem 0 0; color: var(--muted); }

.brand-track-scroll {
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: max-content;
  animation: brandScroll 42s linear infinite;
  padding-left: 1rem;
}
.brand-rail:hover .brand-track-scroll { animation-play-state: paused; }
@keyframes brandScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-track-scroll {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
}

.detail-meta .brand a {
  color: inherit;
  text-decoration: none;
  font-weight: 650;
}
.detail-meta .brand a:hover { color: var(--cyan-deep); }

.buy-actions {
  display: grid;
  gap: .75rem;
  margin-top: .35rem;
}
.buy-actions-primary {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: stretch;
}
.buy-actions-primary .btn,
.buy-actions-primary .buy-quote-form {
  flex: 1 1 160px;
}
.buy-actions-primary .buy-quote-form {
  display: flex;
}
.buy-actions-primary .buy-quote-form .btn {
  width: 100%;
}
.buy-actions-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .85rem;
  align-items: center;
}
.btn-tool {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: .9rem;
  font-weight: 550;
  padding: .25rem 0;
  cursor: pointer;
  transition: color .2s;
}
.btn-tool:hover,
.btn-tool.is-on {
  color: var(--cyan-deep);
}
.btn-tool span[aria-hidden] {
  font-size: 1.05rem;
  line-height: 1;
}
.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: .85rem 0 1rem;
  position: static;
}
.detail-badges .badge {
  position: static;
}
.detail-stock {
  color: var(--muted);
  font-size: .9rem;
  margin-top: .35rem;
}
.detail-stock.is-out { color: #b42318; }
.price-quote {
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--navy);
}
.stock-alert-box {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #f8fafc;
}
.stock-alert-box label {
  display: block;
  font-weight: 600;
  margin-bottom: .45rem;
}
.stock-alert-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.stock-alert-row .form-control {
  flex: 1;
  min-width: 200px;
}
.detail-desc-block {
  margin-top: 1.25rem;
  padding: 1.25rem 1.35rem;
  border-top: 1px solid var(--line-soft);
}
.detail-desc-block h2 {
  font-size: 1.15rem;
  margin: 0 0 .65rem;
}
.detail-desc-block p {
  margin: 0;
  color: var(--ink-soft);
}
.datasheet-link {
  margin-top: 1rem;
}
.detail-section {
  margin-top: 2rem;
}
.detail-section.panel {
  margin-top: 1.25rem;
  padding: 1.25rem 1.35rem;
}
.detail-section .section-head {
  margin-bottom: 1rem;
}
.detail-section .section-head h2 {
  font-size: 1.25rem;
}
.buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(15,30,50,.08);
  padding: .7rem 0 calc(.7rem + env(safe-area-inset-bottom, 0px));
}
.buy-bar[hidden] { display: none !important; }
.buy-bar-inner {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.buy-bar-copy {
  display: grid;
  gap: .1rem;
  min-width: 0;
}
.buy-bar-copy strong {
  font-size: .92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--navy);
}
.buy-bar-copy span { color: var(--muted); font-size: .84rem; font-weight: 650; }
.buy-bar .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Lift WhatsApp above sticky buy bar on product mobile */
@media (max-width: 900px) {
  body.has-buy-bar .wa-float {
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }
}

.fav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.fav-item {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.fav-item .product-card { flex: 1; }
.fav-remove { margin: 0; }
.fav-remove-btn {
  border-radius: var(--radius-sm) !important;
  font-weight: 600;
  color: var(--muted);
}
.fav-remove-btn:hover {
  color: var(--danger);
  border-color: rgba(185, 28, 28, .35);
}
.fav-count-badge {
  display: inline-block;
  margin-left: .45rem;
  padding: .15rem .5rem;
  border-radius: 999px;
  background: rgba(0, 163, 224, .1);
  color: var(--cyan-deep);
  font-size: .78rem;
  font-weight: 700;
  vertical-align: middle;
}

.cart-panel { padding-top: .35rem; padding-bottom: .35rem; }
.cart-thumb {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 12px;
  background: #f3f7fb;
  border: 1px solid var(--line-soft);
}
.cart-thumb img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: transparent;
  padding: 0;
}
.cart-name {
  color: var(--navy);
  text-decoration: none;
  font-weight: 650;
  line-height: 1.3;
}
.cart-name:hover { color: var(--cyan-deep); }
.cart-meta { color: var(--muted); font-size: .86rem; margin-top: .2rem; }
.cart-unit { margin-top: .35rem; font-weight: 600; }
.cart-qty {
  display: flex;
  gap: .45rem;
  margin-top: .65rem;
  align-items: center;
}
.cart-qty label { font-size: .8rem; color: var(--muted); }
.cart-qty .form-control { width: 72px; }
.cart-side { text-align: right; }
.cart-line-total { font-weight: 750; margin-bottom: .55rem; color: var(--navy); }
.cart-summary h2 {
  font-size: 1.15rem;
  margin: 0 0 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--navy);
}
.coupon-form {
  margin-top: 1rem;
  display: grid;
  gap: .5rem;
}
.cart-continue {
  display: block;
  text-align: center;
  margin-top: .85rem;
  color: var(--cyan-deep);
  font-weight: 650;
  text-decoration: none;
}
.cart-continue:hover { text-decoration: underline; }

@media (max-width: 1100px) {
  .fav-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .fav-grid { grid-template-columns: repeat(2, 1fr); }
  .buy-bar { display: block; }
  .buy-bar-inner {
    gap: .65rem;
  }
  .buy-bar-copy strong {
    font-size: .84rem;
    max-width: 52vw;
  }
}
@media (min-width: 901px) {
  .buy-bar { display: none !important; }
}
@media (max-width: 560px) {
  .fav-grid { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 72px 1fr; }
  .cart-side { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; text-align: left; }
  .buy-bar-inner { gap: .5rem; }
  .buy-bar-copy strong { max-width: 46vw; }
}

/* Track / order success */
.track-shell { max-width: 760px; }
.track-gate-lead {
  color: var(--muted);
  margin: 0 0 1rem;
}
.track-result-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.track-order-no {
  margin: 0;
  font-family: var(--font-display, var(--font));
  font-size: 1.2rem;
  font-weight: 650;
  color: var(--navy);
}
.track-result-meta {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .95rem;
}
.track-timeline {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
}
.track-timeline li {
  position: relative;
  display: grid;
  gap: .45rem;
  justify-items: center;
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 550;
}
.track-timeline li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: calc(-50% + 10px);
  right: calc(50% + 10px);
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.track-timeline li:first-child::before { display: none; }
.track-dot {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: #fff;
}
.track-timeline .is-done .track-dot,
.track-timeline .is-current .track-dot {
  border-color: var(--cyan);
  background: var(--cyan);
}
.track-timeline .is-done::before,
.track-timeline .is-current::before {
  background: var(--cyan);
}
.track-timeline .is-done,
.track-timeline .is-current {
  color: var(--navy);
}
.track-cargo { margin: 0 0 1rem; }
.track-success-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.track-havale { margin-top: 1rem; }
.track-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0 1rem;
}
.track-detail-block {
  padding: .85rem 1rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: #f8fafc;
}
.track-detail-block h3 {
  margin: 0 0 .45rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.track-detail-block p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.track-detail-meta { color: var(--muted); font-size: .84rem; }
.track-items-title {
  margin: 1.25rem 0 .55rem;
  font-size: 1rem;
  font-family: var(--font-display);
  color: var(--navy);
}
.track-items-table th:nth-child(3),
.track-items-table td:nth-child(3),
.track-items-table th:nth-child(4),
.track-items-table td:nth-child(4),
.track-items-table th:nth-child(5),
.track-items-table td:nth-child(5) { text-align: right; }
.track-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.15rem;
}
@media (max-width: 640px) {
  .track-detail-grid { grid-template-columns: 1fr; }
}
.cart-note {
  font-size: .85rem;
  color: var(--ink-soft);
  margin-top: .2rem;
}
.quote-clear-form { margin-top: 1rem; }
.quote-form-shell { max-width: 720px; }
.quote-form-panel { margin-top: .25rem; }
.quote-form-title {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 1.1rem;
}
@media (max-width: 640px) {
  .track-timeline {
    grid-template-columns: 1fr 1fr;
    gap: .85rem .5rem;
  }
  .track-timeline li::before { display: none; }
}

/* ═══════════════════════════════════════════════
   Brand award layer — logo indigo × cyan
   ═══════════════════════════════════════════════ */
.brand-kicker {
  color: var(--cyan);
  letter-spacing: .14em;
}
.section-kicker {
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
  margin: 0 0 .4rem;
}
.section-head h2 {
  color: var(--indigo);
  font-weight: 750;
  letter-spacing: -.03em;
}
.page-title {
  color: var(--indigo);
  font-weight: 750;
  letter-spacing: -.03em;
}
.page-shell-head .brand-kicker { color: var(--cyan); }

.site-footer {
  background:
    linear-gradient(180deg, #f7fafd 0%, #eef2f8 100%);
  border-top: 1px solid rgba(48, 42, 129, .1);
}
.footer-brand img {
  background: #fff;
  border: 1px solid rgba(48, 42, 129, .1);
  box-shadow: none;
  border-radius: 8px;
}
.site-footer h4 {
  color: var(--indigo);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .72rem;
}

.panel {
  border: 1px solid var(--line-soft);
  box-shadow: none;
  background: #fff;
}
.main-nav {
  background: transparent;
  border-bottom: 0;
}
.nav-list a {
  font-weight: 600;
  color: var(--ink-soft);
}

.icon-btn {
  font-weight: 600;
  color: var(--ink-soft);
}
.icon-btn:hover { color: var(--indigo); }
.icon-btn-cart .cart-count,
[data-quote-count].cart-count,
.cart-count {
  background: var(--cyan);
  color: #042033;
  font-weight: 700;
}

.brand-rail {
  background: linear-gradient(180deg, #fff 0%, #f7fafd 100%);
  padding: 2rem 0;
}
.brand-rail-head {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.stock-row {
  border-radius: var(--radius-sm);
  box-shadow: none;
  border-color: var(--line-soft);
}
.stock-row:hover {
  border-color: rgba(0, 163, 224, .4);
  transform: translateX(4px);
}
.stock-tag.tag-fast { background: var(--cyan); color: #042033; }
.stock-tag.tag-stock { background: var(--indigo); color: #fff; }

.process-step {
  box-shadow: none;
  border-color: var(--line-soft);
}
.process-num { color: var(--cyan); }
.process-step strong { color: var(--indigo); }

.trust-bar {
  background: var(--indigo-deep);
  color: rgba(255, 255, 255, .78);
  border: 0;
}
.trust-bar-item strong { color: #fff; }
.trust-bar-item a { color: #7dd3fc; }

.is-home .hero {
  margin-top: 0;
}
.is-home .site-header {
  background: rgba(255, 255, 255, .78);
}

/* Inner pages: atmospheric page head */
.page-shell-head {
  padding-bottom: .25rem;
  border-bottom: 0;
  position: relative;
}
.page-shell-head::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 1.1rem;
  background: linear-gradient(90deg, var(--cyan), var(--indigo));
  border-radius: 2px;
}

@media (max-width: 900px) {
  .trust-pulse-inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .promo-strip-inner { grid-template-columns: 1fr; }
  .promo-bleed { grid-template-columns: 1fr; }
  .promo-bleed .promo-panel,
  .promo-panel { min-height: 220px; }
  .hero.hero-stage,
  .hero {
    min-height: 92vh;
    min-height: 92dvh;
    align-items: end;
  }
  .hero-inner { padding: 0 0 3.5rem; max-width: none; }
  .hero-logo { height: clamp(58px, 15vw, 86px); }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(247,250,253,.18) 0%, rgba(247,250,253,.75) 48%, rgba(247,250,253,.96) 100%),
      linear-gradient(90deg, rgba(247,250,253,.55) 0%, transparent 75%);
  }
}

