/* Karimer — light precision-hardware design system (navy + royal blue on white) */
:root {
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-tint: #eef3fa;
  --navy: #102a54;
  --navy-deep: #0c2145;
  --blue: #1d5bd8;
  --blue-bright: #3b74e8;
  --blue-wash: rgba(29, 91, 216, 0.08);
  --text: #1d2738;
  --muted: #5b6678;
  --faint: #8a94a6;
  --line: #e4eaf2;
  --line-strong: #d3dce8;
  --well: #fafbfd;
  --danger: #c65545;
  --radius: 14px;
  --radius-sm: 9px;
  --font-display: "Archivo", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --shadow-card: 0 1px 2px rgba(16, 42, 84, 0.06), 0 12px 32px -14px rgba(16, 42, 84, 0.14);
  --shadow-float: 0 2px 6px rgba(16, 42, 84, 0.08), 0 28px 60px -18px rgba(16, 42, 84, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 640;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--navy);
}
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- header ---------- */
.announce {
  background: var(--navy);
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.announce strong { color: #fff; font-weight: 600; }

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 36px; height: 70px; }
.logo img { height: 26px; width: auto; }
footer .logo img { height: 24px; }
nav.main { display: flex; gap: 28px; align-items: center; }
nav.main > a, .dd-trigger {
  font-size: 13.5px;
  font-weight: 550;
  color: var(--muted);
  letter-spacing: 0.02em;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
  background: none;
  border: none;
}
nav.main > a:hover, nav.main > a:focus-visible, .dd-trigger:hover { color: var(--navy); }
nav.main > a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: right 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
}
nav.main > a:hover::after { right: 0; }

.dd { position: relative; }
.dd-trigger::after { content: " ▾"; font-size: 9px; color: var(--faint); }
.dd-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -18px;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-float);
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  transform: translateY(6px);
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.dd:hover .dd-menu, .dd:focus-within .dd-menu { opacity: 1; transform: none; visibility: visible; }
.dd-menu a {
  font-size: 12.5px;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.dd-menu a:hover { color: var(--blue); background: var(--blue-wash); }

.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.cart-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--navy);
  border: 1px solid var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 550;
  padding: 9px 16px;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 16px -8px rgba(16, 42, 84, 0.4);
}
.cart-btn:hover { background: var(--blue); border-color: var(--blue); box-shadow: 0 8px 20px -8px rgba(29, 91, 216, 0.5); }
.cart-btn:active { transform: scale(0.97); }
.cart-count {
  background: #fff;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  min-width: 19px;
  height: 19px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
.menu-btn { display: none; background: none; border: none; color: var(--navy); font-size: 22px; padding: 4px 8px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--bg-soft), #fff 78%); }
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -15% auto;
  height: 130%;
  background:
    radial-gradient(46% 56% at 80% 34%, rgba(29, 91, 216, 0.10), transparent 65%),
    radial-gradient(36% 46% at 8% 88%, rgba(16, 42, 84, 0.05), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding: 84px 0 92px;
  position: relative;
}
.hero h1 { font-size: clamp(38px, 5vw, 58px); margin: 22px 0 20px; }
.hero h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 560; color: var(--blue); letter-spacing: -0.02em; }
.hero p.lead { color: var(--muted); font-size: 17px; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 26px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}
.hero-meta b { color: var(--navy); font-weight: 650; font-family: var(--font-display); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform 0.18s cubic-bezier(0.2, 0.9, 0.3, 1.4), box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  color: #fff;
  box-shadow: 0 2px 8px rgba(29, 91, 216, 0.28), 0 12px 28px -10px rgba(29, 91, 216, 0.5);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(29, 91, 216, 0.32), 0 16px 36px -10px rgba(29, 91, 216, 0.55); }
.btn-ghost { border-color: var(--line-strong); color: var(--navy); background: #fff; }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

.hero-visual { position: relative; }
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 44px;
  box-shadow: var(--shadow-float);
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(210deg, rgba(29, 91, 216, 0.07), transparent 50%);
  pointer-events: none;
}
.hero-card img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.hero-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow-card);
  z-index: 2;
}
.hero-chip .t { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--faint); }
.hero-chip .v { font-family: var(--font-display); font-weight: 650; font-size: 15px; color: var(--navy); }
.hero-chip.tl { top: 26px; left: -22px; }
.hero-chip.br { bottom: 30px; right: -18px; }
.hero-chip .v .price { color: var(--blue); }

/* ---------- brand strip ---------- */
.brand-strip { border-block: 1px solid var(--line); padding: 20px 0; overflow: hidden; background: var(--bg-soft); }
.brand-strip .row {
  display: flex;
  gap: 54px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 46s linear infinite;
  width: max-content;
}
.brand-strip span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9fadc2;
}
.brand-strip img {
  height: 30px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.brand-strip img:hover { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section.block { padding: 84px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(26px, 3.2vw, 36px); margin-top: 14px; }
.section-head .more { font-size: 13.5px; color: var(--blue); font-weight: 600; white-space: nowrap; padding-bottom: 6px; }
.section-head .more:hover { color: var(--navy); }

/* brand cards */
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.brand-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}
.brand-card:hover { transform: translateY(-4px); border-color: rgba(29, 91, 216, 0.4); box-shadow: var(--shadow-card); }
.brand-card .img {
  background: var(--well);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-card .img img { width: 78%; height: 78%; object-fit: contain; transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1); }
.brand-card:hover .img img { transform: scale(1.06); }
.brand-card .img.logo-img { background: #fff; aspect-ratio: 8 / 5; padding: 22px 26px; }
.brand-card .img.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.brand-card:hover .img.logo-img img { filter: none; opacity: 1; transform: scale(1.04); }
.logo-word {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  color: #3c4657;
  opacity: 0.72;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.brand-card:hover .logo-word { color: var(--navy); opacity: 1; }
.brand-card h3 { font-size: 16px; letter-spacing: -0.01em; }
.brand-card .n { color: var(--faint); font-size: 12.5px; margin-top: 3px; }

/* product cards */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prod-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}
.prod-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-card); }
.prod-card .img { background: var(--well); border-bottom: 1px solid var(--line); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.prod-card .img img { width: 84%; height: 84%; object-fit: contain; transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1); }
.prod-card:hover .img img { transform: scale(1.05); }
.prod-card .body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.prod-card .brand { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); font-weight: 650; }
.prod-card h3 { font-family: var(--font-body); font-size: 14px; font-weight: 550; letter-spacing: -0.01em; line-height: 1.45; color: var(--text); }
.prod-card .price { font-family: var(--font-display); font-weight: 650; font-size: 15px; margin-top: auto; padding-top: 8px; color: var(--navy); }
.quick-add {
  position: absolute;
  right: 12px;
  top: 12px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 15px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  z-index: 3;
  box-shadow: 0 6px 16px -6px rgba(16, 42, 84, 0.45);
}
.prod-card:hover .quick-add, .quick-add:focus-visible { opacity: 1; transform: none; }
.quick-add:hover { background: var(--blue); }

/* value props */
.props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.prop {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
}
.prop::before {
  content: "";
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0.55;
}
.prop .num { font-family: var(--font-display); color: var(--blue); font-size: 13px; font-weight: 650; letter-spacing: 0.1em; }
.prop h3 { font-size: 18px; margin: 12px 0 10px; }
.prop p { color: var(--muted); font-size: 14px; }

/* B2B band */
.band {
  background:
    radial-gradient(70% 130% at 85% 20%, rgba(59, 116, 232, 0.28), transparent 60%),
    linear-gradient(180deg, var(--navy), var(--navy-deep));
  border-radius: 20px;
  padding: 58px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-float);
}
.band .eyebrow { color: #8fb0ee; }
.band h2 { font-size: clamp(24px, 3vw, 32px); margin-top: 14px; max-width: 480px; color: #fff; }
.band p { color: rgba(255, 255, 255, 0.72); max-width: 520px; margin-top: 12px; }
.band .btn-primary { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 12px 28px -10px rgba(0, 0, 0, 0.4); }

/* ---------- shop / listing ---------- */
.page-head { padding: 60px 0 34px; }
.page-head h1 { font-size: clamp(30px, 4vw, 44px); margin-top: 16px; }
.page-head p.sub { color: var(--muted); max-width: 560px; margin-top: 14px; }

.toolbar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 30px; }
.chip {
  font-size: 12.5px;
  font-weight: 550;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 100px;
  padding: 8px 16px;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.chip:hover { color: var(--blue); border-color: var(--blue); }
.chip.on { background: var(--navy); border-color: var(--navy); color: #fff; font-weight: 600; }
.toolbar .spacer { flex: 1; }
.search-input, .sort-select {
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--text);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-input:focus, .sort-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-wash); }
.search-input { width: 210px; }
.empty-note { color: var(--faint); padding: 60px 0; text-align: center; display: none; }
.empty-note a { color: var(--blue); }

/* ---------- product page ---------- */
.crumbs { font-size: 12.5px; color: var(--faint); padding: 26px 0 0; }
.crumbs a { color: var(--muted); transition: color 0.15s ease; }
.crumbs a:hover { color: var(--blue); }
.pdp { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; padding: 34px 0 90px; align-items: start; }
.gallery-main {
  background: var(--well);
  border: 1px solid var(--line);
  border-radius: 18px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.gallery-main img { width: 86%; height: 86%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.gallery-thumbs button {
  background: var(--well);
  border: 2px solid var(--line);
  border-radius: 10px;
  width: 72px;
  height: 72px;
  padding: 6px;
  transition: border-color 0.15s ease;
}
.gallery-thumbs button.on, .gallery-thumbs button:hover { border-color: var(--blue); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; }

.pdp-info h1 { font-size: clamp(24px, 3vw, 34px); margin: 14px 0 18px; }
.pdp-price { font-family: var(--font-display); font-size: 26px; font-weight: 650; color: var(--navy); }
.stock { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); margin-left: 16px; }
.stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #3d9e63; box-shadow: 0 0 0 3px rgba(61, 158, 99, 0.15); }
.buy-row { display: flex; gap: 12px; margin: 28px 0 10px; }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  overflow: hidden;
  background: #fff;
}
.qty button { background: none; border: none; color: var(--muted); width: 40px; height: 48px; font-size: 17px; transition: color 0.15s ease; }
.qty button:hover { color: var(--blue); }
.qty input {
  width: 38px;
  background: none;
  border: none;
  color: var(--navy);
  text-align: center;
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 650;
  outline: none;
}
.pdp-note { font-size: 12.5px; color: var(--faint); margin-top: 14px; }
.pdp-desc { margin-top: 36px; border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 2px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; color: var(--blue); font-size: 18px; font-weight: 400; transition: transform 0.2s ease; }
.acc[open] summary::after { transform: rotate(45deg); }
.acc .inner { padding: 0 2px 22px; color: var(--muted); font-size: 14.5px; }
.acc .inner p { margin-bottom: 12px; }
.acc .inner ul { list-style: disc; padding-left: 20px; margin-bottom: 12px; }
.acc .inner a { color: var(--blue); }

/* ---------- content pages ---------- */
.content-page { max-width: 720px; padding: 24px 0 90px; }
.content-page h2 { font-size: 22px; margin: 38px 0 14px; }
.content-page p, .content-page li { color: var(--muted); margin-bottom: 14px; }
.content-page ul { list-style: disc; padding-left: 22px; }
.content-page a { color: var(--blue); }
.content-page strong { color: var(--navy); }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 40px 0 60px; }
.contact-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.contact-card .t { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; }
.contact-card .v { font-family: var(--font-display); font-weight: 650; font-size: 16px; color: var(--navy); }
.contact-card .v a:hover { color: var(--blue); }
.contact-card p { color: var(--muted); font-size: 13px; margin-top: 8px; }

/* contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
  padding: 28px 0 90px;
}
.contact-side { display: flex; flex-direction: column; gap: 16px; }
.contact-b2b { color: var(--muted); font-size: 13.5px; padding: 6px 4px 0; }
.contact-b2b a { color: var(--blue); font-weight: 550; }
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px 40px 40px;
  box-shadow: var(--shadow-float);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright) 55%, transparent);
}
.form-card h2 { font-size: 22px; }
.form-card .form-sub { color: var(--muted); font-size: 14px; margin-top: 8px; }
.form-tight { margin-top: 26px; }
.form label .opt { text-transform: none; letter-spacing: 0; color: var(--faint); font-weight: 400; }
.form-note { color: var(--faint); font-size: 12.5px; text-align: center; }
.btn-block { width: 100%; justify-content: center; }

/* forms */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.form .full { grid-column: 1 / -1; }
.form label { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
.form input, .form textarea, .form select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 13px 16px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-wash); }
.form textarea { min-height: 130px; resize: vertical; }

/* ---------- cart drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 25, 50, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  z-index: 90;
}
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: #fff;
  border-left: 1px solid var(--line);
  z-index: 91;
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.3, 1);
  box-shadow: var(--shadow-float);
}
body.cart-open .cart-overlay { opacity: 1; visibility: visible; }
body.cart-open .cart-drawer { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 17px; }
.cart-close { background: none; border: none; color: var(--muted); font-size: 22px; transition: color 0.15s ease; }
.cart-close:hover { color: var(--navy); }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 24px; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item .im { background: var(--well); border: 1px solid var(--line); border-radius: 8px; width: 64px; height: 64px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: 6px; }
.cart-item .im img { max-height: 100%; object-fit: contain; }
.cart-item .nm { font-size: 13px; font-weight: 550; line-height: 1.4; color: var(--text); }
.cart-item .pr { font-family: var(--font-display); font-size: 13.5px; font-weight: 650; margin-top: 4px; color: var(--navy); }
.cart-item .ops { display: flex; align-items: center; gap: 10px; margin-top: 8px; font-size: 12.5px; color: var(--muted); }
.cart-item .ops button { background: #fff; border: 1px solid var(--line-strong); color: var(--muted); border-radius: 6px; width: 22px; height: 22px; line-height: 1; transition: color .15s ease, border-color .15s ease; }
.cart-item .ops button:hover { color: var(--blue); border-color: var(--blue); }
.cart-item .rm { margin-left: auto; background: none; border: none; color: var(--faint); font-size: 12px; text-decoration: underline; transition: color 0.15s ease; }
.cart-item .rm:hover { color: var(--danger); }
.cart-empty { color: var(--faint); text-align: center; padding: 70px 20px; }
.cart-foot { border-top: 1px solid var(--line); padding: 20px 24px 26px; background: var(--bg-soft); }
.ship-bar { margin-bottom: 16px; }
.ship-bar .t { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.ship-bar .t b { color: var(--blue); }
.ship-track { background: var(--line); border-radius: 100px; height: 5px; overflow: hidden; }
.ship-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); border-radius: 100px; transition: width 0.4s cubic-bezier(0.2, 0.9, 0.3, 1); }
.cart-sub { display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 650; font-size: 16px; margin-bottom: 14px; color: var(--navy); }
.cart-note { font-size: 11.5px; color: var(--faint); text-align: center; margin-top: 10px; }
.btn-checkout { width: 100%; justify-content: center; }

/* toast */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--navy);
  border: 1px solid var(--navy);
  color: #fff;
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 13.5px;
  font-weight: 550;
  box-shadow: var(--shadow-float);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1.3), visibility 0.25s;
  z-index: 95;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- footer ---------- */
footer.site {
  margin-top: 40px;
  padding: 64px 0 34px;
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  color: rgba(255, 255, 255, 0.8);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.foot-grid .about p { color: rgba(255, 255, 255, 0.55); font-size: 13px; margin-top: 16px; max-width: 280px; }
.foot-grid h4 { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: #8fa5c8; margin-bottom: 18px; }
.foot-grid li { margin-bottom: 10px; }
.foot-grid li a { font-size: 13.5px; color: rgba(255, 255, 255, 0.62); transition: color 0.15s ease; }
.foot-grid li a:hover { color: #fff; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 50px;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.foot-bottom a { color: rgba(255, 255, 255, 0.45); }
.foot-bottom a:hover { color: rgba(255, 255, 255, 0.75); }

/* nav search + 404 brands */
.nav-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 100px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-search:hover, .nav-search:focus-visible { color: var(--navy); border-color: var(--line-strong); }
.notfound-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin-top: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.notfound-brands a { font-size: 13px; color: var(--muted); transition: color 0.15s ease; }
.notfound-brands a:hover { color: var(--blue); }

/* cookie consent banner */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  padding: 14px 20px;
  background: #fff;
  color: var(--text);
  border-top: 1px solid var(--line-strong);
  font-size: 13.5px;
  line-height: 1.5;
  box-shadow: 0 -6px 24px rgba(16, 42, 84, 0.08);
}
#cookie-banner[hidden] { display: none; }
#cookie-banner p { margin: 0; max-width: 620px; }
#cookie-banner a { color: var(--blue); text-decoration: underline; }
#cookie-banner .cb-actions { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-banner button {
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: 100px;
  padding: 7px 18px;
  transition: opacity 0.15s ease;
}
#cookie-banner button:hover { opacity: 0.85; }
#cookie-banner button:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
#cookie-accept { background: var(--navy); color: #fff; border: 1px solid var(--navy); }
#cookie-decline { background: transparent; color: var(--muted); border: 1px solid var(--line-strong); }

/* ---------- mobile ---------- */
.mobile-menu { display: none; }
@media (max-width: 980px) {
  .brand-grid, .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .props, .contact-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; padding: 56px 0 64px; }
  .hero-chip.tl { left: 10px; }
  .hero-chip.br { right: 10px; }
  .pdp { grid-template-columns: 1fr; gap: 36px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  nav.main { display: none; }
  .menu-btn { display: block; }
  .hero-chip { display: none; }
  .brand-grid, .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .form { grid-template-columns: 1fr; }
  .band { padding: 40px 28px; }
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 70px 0 auto;
    background: #fff;
    border-bottom: 1px solid var(--line-strong);
    padding: 18px 28px 26px;
    z-index: 60;
    box-shadow: var(--shadow-float);
  }
  body.menu-open .mobile-menu { display: block; }
  .mobile-menu a { display: block; padding: 12px 0; font-size: 15px; font-weight: 550; color: var(--navy); border-bottom: 1px solid var(--line); }
  .mobile-menu .sub { font-size: 13px; color: var(--muted); padding: 9px 0 9px 14px; border: none; }
  .wrap { padding: 0 20px; }
}

/* ---------- blog / guides ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 10px 0 90px; }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 28px 26px; box-shadow: var(--shadow-card); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s cubic-bezier(.2,.8,.2,1), border-color .25s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); border-color: var(--line-strong); }
.post-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.post-meta { font-size: 12px; color: var(--faint); }
.post-card h3 { font-family: var(--font-display); font-size: 20px; line-height: 1.25; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 12px; }
.post-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; flex: 1; }
.post-card-more { margin-top: 20px; font-size: 13.5px; font-weight: 600; color: var(--blue); }
.post-card-more .arrow { display: inline-block; transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.post-card:hover .post-card-more .arrow { transform: translateX(4px); }
.crumbs { font-size: 13px; color: var(--faint); padding-top: 26px; }
.crumbs a { color: var(--muted); } .crumbs a:hover { color: var(--blue); }
.post { max-width: 720px; margin: 0 auto; padding: 40px 0 70px; }
.post-head h1 { font-size: clamp(30px, 4vw, 44px); line-height: 1.12; letter-spacing: -0.03em; margin-top: 16px; }
.post-lede { font-family: var(--font-serif); font-size: 19px; line-height: 1.55; color: var(--muted); margin-top: 18px; }
.post-byline { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--faint); margin: 24px 0 0; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.post-byline svg { color: var(--blue); }
.post-byline .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-strong); }
.post-body { padding-top: 8px; }
.post-body h2 { font-size: 24px; letter-spacing: -0.02em; margin: 44px 0 14px; }
.post-body h3 { font-size: 18px; margin: 30px 0 10px; }
.post-body p { color: var(--text); font-size: 16.5px; line-height: 1.75; margin-bottom: 18px; }
.post-body ul, .post-body ol { margin: 0 0 20px; padding-left: 0; list-style: none; }
.post-body li { position: relative; padding-left: 28px; color: var(--text); font-size: 16px; line-height: 1.7; margin-bottom: 10px; }
.post-body ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--blue); background: var(--blue-wash); }
.post-body ol { counter-reset: step; }
.post-body ol li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.post-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(29,91,216,.35); }
.post-body a:hover { text-decoration-color: var(--blue); }
.post-body strong { color: var(--navy); }
.post-body h2:last-of-type + p, .post-body h2:last-of-type ~ ul li { font-size: 13.5px; color: var(--muted); }
.post-related { padding: 30px 0 90px; border-top: 1px solid var(--line); }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } .post-head h1 { font-size: 30px; } }
.post-byline { flex-wrap: wrap; row-gap: 6px; }
.post-byline > span:not(.dot), .post-byline time { white-space: nowrap; }
@media (max-width: 600px) { .crumbs span { display: none; } .crumbs { padding-top: 18px; } .post-lede { font-size: 17px; } }

/* ---------- 28 Aug typographic + editorial refresh ---------- */
:root { --font-display: "Sora", system-ui, sans-serif; --font-body: "Inter", system-ui, sans-serif; --font-serif: "Space Grotesk", sans-serif; }
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.03em; }
h1 { letter-spacing: -0.02em; }
.hero h1 em { font-family: var(--font-serif); font-style: normal; font-weight: 700; letter-spacing: -0.03em; }
.eyebrow, .post-card-more, .btn, .cart-btn, .nav.main a, .prod-card .price, .hero-meta b, .hero-chip .v, .contact-card .v { font-family: var(--font-body); }
.eyebrow { font-weight: 600; letter-spacing: 0.18em; font-size: 11px; }
.section-head h2, .page-head h1 { line-height: 1.05; }
.page-head h1 { font-size: clamp(34px, 4.6vw, 56px); }
.page-head p.sub { font-size: 18px; line-height: 1.55; max-width: 620px; }
.page-head-wide h1 { max-width: 880px; }
.page-head-wide h1 em { font-family: var(--font-serif); font-style: normal; font-weight: 700; color: var(--blue); }
.prod-card h3 { font-family: var(--font-body); }
.post-card h3 { font-weight: 600; letter-spacing: -0.02em; }
.post-lede { font-family: var(--font-body); font-style: normal; font-weight: 400; }

/* lined forms */
.form-lined { gap: 26px 32px; margin-top: 8px; }
.form-lined label { font-size: 11px; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 6px; }
.form-lined input, .form-lined textarea, .form-lined select { border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0; background: transparent; padding: 10px 0 12px; font-size: 16px; color: var(--text); box-shadow: none; transition: border-color .25s; }
.form-lined input::placeholder, .form-lined textarea::placeholder { color: var(--faint); }
.form-lined input:focus, .form-lined textarea:focus, .form-lined select:focus { border-color: var(--navy); box-shadow: 0 1px 0 0 var(--navy); outline: none; }
.form-lined select { appearance: none; -webkit-appearance: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235b6678' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right center; padding-right: 22px; }
.form-lined textarea { min-height: 110px; }
.form-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.form-foot .form-note { text-align: left; font-size: 13px; }
.form-foot .btn svg { transition: transform .3s cubic-bezier(.2,.8,.2,1); margin-left: 6px; }
.form-foot .btn:hover svg { transform: translateX(3px); }
.form-head h2 { font-size: 26px; }
.form-head p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 10px 0 30px; max-width: 520px; }

/* contact editorial */
.contact-editorial { display: grid; grid-template-columns: 5fr 7fr; gap: 72px; padding: 16px 0 80px; align-items: start; }
.detail-list { border-top: 1px solid var(--line); }
.detail-list li { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.detail-list svg { color: var(--blue); flex: none; margin-top: 3px; }
.detail-list .k { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.detail-list a, .detail-list .v { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--navy); letter-spacing: -0.01em; }
.detail-list a:hover { color: var(--blue); }
.detail-list small { display: block; color: var(--muted); font-size: 13.5px; margin-top: 5px; line-height: 1.5; }
.detail-list a.dir, .map-chip a.dir { display: flex; width: fit-content; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 13.5px; font-weight: 600; color: var(--blue); margin-top: 8px; }
.detail-list a.dir svg, .map-chip a.dir svg { color: inherit; margin: 0; transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.detail-list a.dir:hover svg, .map-chip a.dir:hover svg { transform: translateX(3px); }
.contact-b2b { margin-top: 22px; font-size: 14px; }
.map-band { position: relative; background: var(--navy-deep); }
.map-frame { height: 440px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.05) brightness(0.96); display: block; }
.map-band .wrap { position: relative; }
.map-chip { position: absolute; left: 28px; bottom: 36px; max-width: 360px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-float); }
.map-chip-v { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--navy); margin-top: 10px; line-height: 1.3; }
.map-chip p { color: var(--muted); font-size: 13.5px; line-height: 1.55; margin-top: 10px; }
.map-chip a.dir { margin-top: 14px; }

/* content pages with aside */
.content-layout { display: grid; grid-template-columns: minmax(0, 680px) 300px; gap: 80px; justify-content: space-between; padding-bottom: 90px; }
.content-page { padding: 8px 0 0; max-width: none; }
.content-page > p:first-of-type { font-size: 18px; line-height: 1.65; }
.content-page h2 { font-size: 26px; margin: 42px 0 14px; }
.content-page p, .content-page li { font-size: 16.5px; line-height: 1.7; color: var(--text); }
.glance { position: sticky; top: 110px; border-top: 2px solid var(--navy); padding-top: 18px; }
.glance-t { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }
.glance ul li { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.5; color: var(--text); }
.glance ul li svg { color: var(--blue); flex: none; margin-top: 3px; }
.glance ul li a { color: var(--navy); font-weight: 600; }
.glance ul li a:hover { color: var(--blue); }
.glance-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--blue); }
.glance-cta svg { transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.glance-cta:hover svg { transform: translateX(3px); }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 30px 0 34px; }
.facts div { padding: 18px 20px 18px 0; border-right: 1px solid var(--line); }
.facts div + div { padding-left: 22px; }
.facts div:last-child { border-right: 0; }
.facts b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--navy); line-height: 1; letter-spacing: -0.02em; }
.facts span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 8px; }
@media (max-width: 960px) {
  .contact-editorial { grid-template-columns: 1fr; gap: 44px; }
  .content-layout { grid-template-columns: 1fr; gap: 40px; }
  .glance { position: static; }
  .map-chip { position: static; margin: 0 auto; transform: translateY(-40px); max-width: none; }
}
@media (max-width: 600px) { .facts { grid-template-columns: 1fr; } .facts div { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0 !important; } .facts div:last-child { border-bottom: 0; } .form-lined { gap: 20px; } .map-frame { height: 320px; } }
.map-frame { position: relative; overflow: hidden; height: 460px; }
.map-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; filter: none; }
.map-pin { position: absolute; left: 59.6%; top: 50%; transform: translate(-50%, -100%); color: var(--blue); z-index: 2; display: block; line-height: 0; }
.map-pin svg { filter: drop-shadow(0 6px 12px rgba(16,42,84,.35)); transition: transform .35s cubic-bezier(.2,.8,.2,1); transform-origin: bottom center; }
.map-pin:hover svg { transform: translateY(-4px) scale(1.06); }
.map-pin-ring { position: absolute; left: 50%; bottom: -6px; width: 14px; height: 14px; border-radius: 50%; background: var(--blue); transform: translateX(-50%); animation: mapPulse 2.4s ease-out infinite; opacity: .5; }
@keyframes mapPulse { 0% { transform: translateX(-50%) scale(.6); opacity: .55; } 100% { transform: translateX(-50%) scale(3.2); opacity: 0; } }
.map-attr { position: absolute; right: 10px; bottom: 8px; font-size: 10.5px; color: var(--muted); background: rgba(255,255,255,.7); padding: 2px 7px; border-radius: 4px; z-index: 2; }
.map-band { background: var(--bg-tint); }
@media (max-width: 960px) { .map-frame { height: 360px; } .map-pin { left: 59.6%; } }
.content-page ul { list-style: none; padding-left: 0; }
.content-page ul li { position: relative; padding-left: 26px; margin-bottom: 10px; }
.content-page ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--blue); background: var(--blue-wash); }
