
:root {
  color-scheme: light dark;
  --bg: #f4f7fa;
  --surface: #fbfcfd;
  --surface-2: #e8eef3;
  --surface-3: #dbe4eb;
  --text: #071522;
  --muted: #53697a;
  --line: #cbd6df;
  --accent: #0369a1;
  --accent-strong: #0f3f79;
  --accent-soft: #dbeef9;
  --cta: #f26a21;
  --cta-strong: #d94f09;
  --success-soft: #e5f4ee;
  --shadow: 0 24px 64px rgb(16 50 74 / 0.15);
  --shadow-soft: 0 12px 32px rgb(16 50 74 / 0.09);
  --radius: 12px;
  --focus: 0 0 0 4px color-mix(in srgb, var(--accent) 24%, transparent);
  --hero-text: #071522;
  --hero-muted: #4f6677;
  --hero-bg-start: #fafdff;
  --hero-bg-mid: #eaf5fb;
  --hero-bg-end: #fff7ef;
  --product-image-bg: #fff;
}

[data-theme="dark"] {
  --bg: #0d141b;
  --surface: #141e27;
  --surface-2: #1d2a35;
  --surface-3: #283845;
  --text: #edf5f8;
  --muted: #b1c0ca;
  --line: #344858;
  --accent: #5bb4e5;
  --accent-strong: #8fd1f2;
  --accent-soft: #173349;
  --cta: #ff8a3d;
  --cta-strong: #ff9f61;
  --success-soft: #14352d;
  --shadow: 0 24px 70px rgb(2 6 12 / 0.42);
  --shadow-soft: 0 14px 34px rgb(2 6 12 / 0.32);
  --hero-text: #edf5f8;
  --hero-muted: #b8c8d3;
  --hero-bg-start: #17242e;
  --hero-bg-mid: #132b3d;
  --hero-bg-end: #263038;
  --product-image-bg: #fff;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0d141b;
    --surface: #141e27;
    --surface-2: #1d2a35;
    --surface-3: #283845;
    --text: #edf5f8;
    --muted: #b1c0ca;
    --line: #344858;
    --accent: #5bb4e5;
    --accent-strong: #8fd1f2;
    --accent-soft: #173349;
    --cta: #ff8a3d;
    --cta-strong: #ff9f61;
    --success-soft: #14352d;
    --shadow: 0 24px 70px rgb(2 6 12 / 0.42);
    --shadow-soft: 0 14px 34px rgb(2 6 12 / 0.32);
    --hero-text: #edf5f8;
    --hero-muted: #b8c8d3;
    --hero-bg-start: #17242e;
    --hero-bg-mid: #132b3d;
    --hero-bg-end: #263038;
    --product-image-bg: #fff;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-2) 64%, var(--bg)) 0, var(--bg) 620px);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
select { font: inherit; }
button, a, input { touch-action: manipulation; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 10px;
  background: var(--text);
  color: var(--surface);
  padding: 10px 14px;
  font-weight: 800;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) auto auto auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  height: 80px;
  padding: 0 clamp(16px, 3vw, 46px);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand-logo {
  width: min(590px, 39vw);
  height: 56px;
  object-fit: contain;
  object-position: left center;
}
.nav {
  --pill-x: 4px;
  --pill-w: 68px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid color-mix(in srgb, var(--line) 86%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  padding: 5px;
  color: var(--muted);
  font-size: 17px;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--surface) 70%, transparent);
}
.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 42px;
  min-width: 78px;
  border-radius: 999px;
  padding: 0 20px;
  color: var(--muted);
  font-weight: 800;
  transition: color .22s ease;
}
.nav a:hover,
.nav a.is-active {
  color: #f7fbff;
}
.nav-pill {
  position: absolute;
  left: 0;
  top: 5px;
  width: var(--pill-w);
  height: calc(100% - 10px);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 28%, transparent);
  transform: translateX(var(--pill-x));
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), width .34s cubic-bezier(.16, 1, .3, 1), opacity .2s ease;
  pointer-events: none;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  padding: 0 16px;
  font-weight: 900;
}
.header-whatsapp {
  gap: 8px;
  border: 1px solid #1f9d55;
  background: #1f9d55;
  color: #f7fff9;
  box-shadow: 0 10px 22px rgb(31 157 85 / .18);
}
.header-whatsapp svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  flex: 0 0 auto;
}
.header-whatsapp .header-mobile-icon {
  width: 18px;
  height: 18px;
}
.header-whatsapp:hover {
  background: #158348;
  border-color: #158348;
}
.theme-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  min-width: 56px;
  min-height: 44px;
  padding: 0 16px;
  cursor: pointer;
}

.hero {
  max-width: 1780px;
  min-height: auto;
  margin: clamp(24px, 3.2vw, 42px) auto 0;
  display: grid;
  grid-template-columns: minmax(470px, .72fr) minmax(620px, 1.28fr);
  gap: 0;
  align-items: center;
  width: calc(100% - clamp(36px, 8vw, 112px));
  padding: clamp(12px, 1.5vw, 20px);
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  border-radius: 16px;
  background: linear-gradient(118deg, var(--hero-bg-start) 0%, var(--hero-bg-mid) 54%, var(--hero-bg-end) 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero-copy {
  max-width: 540px;
  margin-left: clamp(6px, 1.2vw, 18px);
  border-left: 4px solid var(--accent);
  padding: clamp(18px, 2.3vw, 30px) clamp(18px, 2.5vw, 34px);
  color: var(--hero-text);
}
.kicker {
  margin: 0 0 20px;
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(40px, 3.1vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  max-width: none;
}
.hero-text {
  max-width: 48ch;
  margin: 24px 0 0;
  color: var(--hero-muted);
  font-size: clamp(17px, 2vw, 20px);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:active, .theme-toggle:active, .filter-button:active, .product-card:active { transform: translateY(1px); }
.primary { color: #f7fbff; background: var(--accent); }
.primary:hover { background: var(--accent-strong); box-shadow: 0 12px 24px color-mix(in srgb, var(--accent) 24%, transparent); }
.secondary { border: 1px solid var(--line); background: var(--surface); }
.secondary:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent-soft) 44%, var(--surface)); }
.whatsapp-button {
  border: 1px solid #1f9d55;
  background: #1f9d55;
  color: #f7fff9;
}
.whatsapp-button:hover {
  background: #158348;
  border-color: #158348;
  box-shadow: 0 12px 24px rgb(31 157 85 / .22);
}
.hero-contact {
  margin-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  padding-top: 15px;
}
.hero-contact span {
  display: block;
  color: var(--hero-muted);
  font-size: 13px;
}
.hero-contact strong {
  display: block;
  margin-top: 4px;
  color: var(--hero-text);
  font-size: 18px;
}
.hero-contact-line {
  display: flex !important;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}
.hero-contact-line > span,
.hero-contact-line a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: var(--text);
  font: inherit;
  letter-spacing: 0;
}
.hero-contact-line a {
  text-decoration: none;
}
.hero-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.hero-whatsapp-link svg {
  width: 19px;
  height: 19px;
  fill: #1f9d55;
}
.hero-media {
  position: relative;
  min-height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.company-banner {
  display: grid;
  place-items: center;
  min-height: auto;
  aspect-ratio: 1672 / 941;
  border: 0;
  background: transparent;
  padding: 0;
}
.company-banner img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  border-radius: 12px;
}
.hero-carousel {
  isolation: isolate;
}
.hero-carousel-track {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .48s ease, visibility .48s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-slide > img {
  width: 100%;
  height: 100%;
}
.simer-hero-slide > img {
  object-fit: cover;
  object-position: center;
}
.simer-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(4 20 35 / .84) 0%, rgb(4 20 35 / .66) 34%, rgb(4 20 35 / .12) 62%, transparent 76%);
  pointer-events: none;
}
.simer-hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(34px, 5vw, 76px);
  width: min(47%, 570px);
  color: #fff;
  transform: translateY(-50%);
  text-shadow: 0 2px 16px rgb(0 0 0 / .38);
}
.simer-hero-brand {
  margin: 0 0 10px;
  color: #6bd4f0;
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 900;
}
.simer-hero-content h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}
.simer-hero-content > p:not(.simer-hero-brand) {
  max-width: 42ch;
  margin: clamp(10px, 1.4vw, 18px) 0 0;
  color: rgb(255 255 255 / .9);
  font-size: clamp(14px, 1.3vw, 19px);
  line-height: 1.55;
}
.simer-hero-content > strong {
  display: inline-flex;
  margin-top: clamp(12px, 1.5vw, 20px);
  border: 1px solid rgb(125 224 244 / .5);
  border-radius: 999px;
  background: rgb(0 92 132 / .72);
  padding: 7px 13px;
  color: #fff;
  font-size: clamp(13px, 1.15vw, 17px);
  line-height: 1.35;
  backdrop-filter: blur(8px);
}
.simer-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(14px, 1.8vw, 24px);
}
.simer-hero-actions .button {
  min-height: 42px;
  padding: 0 17px;
  font-size: clamp(13px, 1vw, 16px);
  text-shadow: none;
}
.simer-product-button {
  background: #f7fbff;
  color: #07345b;
}
.simer-product-button:hover {
  background: #dff4ff;
  box-shadow: 0 10px 22px rgb(0 0 0 / .2);
}
.hero-carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(255 255 255 / .52);
  border-radius: 50%;
  background: rgb(3 25 43 / .54);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: background .18s ease, transform .18s ease;
}
.hero-carousel-arrow:hover {
  background: rgb(3 105 161 / .9);
  transform: translateY(-50%) scale(1.05);
}
.hero-carousel-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-carousel-prev { left: 14px; }
.hero-carousel-next { right: 14px; }
.hero-carousel-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 13px;
  display: flex;
  gap: 7px;
  align-items: center;
  border-radius: 999px;
  background: rgb(3 25 43 / .58);
  padding: 7px 9px;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}
.hero-carousel-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / .5);
  padding: 0;
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}
.hero-carousel-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: #fff;
}
.company-banner .hero-panel,
.company-banner .hero-checklist {
  display: none;
}
.hero-panel {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  backdrop-filter: blur(14px);
}
.hero-panel span { display: block; color: var(--muted); font-size: 12px; }
.hero-panel strong { font-size: 28px; line-height: 1; }
.hero-checklist {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  min-width: 138px;
}
.hero-checklist span {
  display: block;
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  padding: 8px 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.category-directory {
  max-width: 1680px;
  width: calc(100% - clamp(36px, 8vw, 112px));
  margin: clamp(8px, 1.5vw, 18px) auto clamp(24px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  padding: clamp(18px, 2.4vw, 30px);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.section-anchor {
  position: absolute;
  top: -104px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.category-directory-heading {
  display: grid;
  grid-template-columns: minmax(220px, .32fr) 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}
.category-directory-heading span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}
.category-directory-heading h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.12;
  letter-spacing: 0;
}
.category-directory-grid {
  display: grid;
  grid-template-columns: minmax(300px, .42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.category-directory-media,
.category-directory-panel {
  display: grid;
  gap: 10px;
  align-content: start;
}
.category-directory-media > span,
.category-directory-panel > span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}
.category-directory-media img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  padding: 10px;
}
.category-directory-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.category-chip {
  min-height: 30px;
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  padding: 0 10px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 750;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.category-chip:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent-soft) 58%, var(--surface));
  color: var(--accent-strong);
}

.pump-page {
  min-height: calc(100dvh - 104px);
}
.pump-page-hero {
  max-width: 1780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 660px);
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
  padding: clamp(28px, 3.5vw, 46px) clamp(18px, 4vw, 56px) 0;
}
.pump-page-hero h1 {
  margin: 0;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(36px, 4.5vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}
.pump-page-hero p:not(.kicker) {
  max-width: 62ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}
.pump-page-hero .pump-page-subline {
  margin-top: 8px;
}
.pump-hero-badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: start;
  justify-self: end;
  width: 100%;
  gap: 14px;
  min-width: 0;
}
.pump-page-hero .pump-hero-logo {
  width: min(44%, 290px);
  flex: 0 1 290px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.pump-page-hero .pump-hero-distributor {
  width: min(56%, 370px);
  flex: 0 1 370px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  padding: 0;
  box-shadow: var(--shadow-soft);
}
.pump-page-hero .pump-hero-products {
  width: min(100%, 760px);
  display: block;
  margin-top: 14px;
  justify-self: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.pump-page .pump-finder {
  padding-top: clamp(10px, 1.5vw, 18px);
}
.tsurumi-hero {
  max-width: 1780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 4vw, 56px) clamp(24px, 4vw, 48px);
}
.tsurumi-hero h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}
.tsurumi-hero p:not(.kicker) {
  max-width: 68ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}
.tsurumi-hero-card {
  display: grid;
  gap: 14px;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.tsurumi-hero-card img {
  width: min(100%, 260px);
}
.tsurumi-hero-card span {
  color: var(--accent-strong);
  font-weight: 900;
}
.tsurumi-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1680px;
  width: calc(100% - clamp(36px, 8vw, 112px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}
.tsurumi-stats div {
  background: var(--surface);
  padding: 20px 22px;
}
.tsurumi-stats strong {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}
.tsurumi-stats span {
  color: var(--muted);
  font-size: 14px;
}
.tsurumi-products {
  padding-top: clamp(46px, 7vw, 86px);
}
.pump-page .pump-finder.tsurumi-products {
  padding-top: clamp(10px, 1.5vw, 18px);
}
.pump-finder .tsurumi-stats {
  width: 100%;
  margin: 0;
}
.anchor-target {
  position: relative;
  top: -96px;
  display: block;
  height: 0;
}
.tsurumi-tools {
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) repeat(6, minmax(118px, .72fr)) auto;
  gap: 9px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 12px;
  box-shadow: var(--shadow-soft);
  margin: 24px 0 18px;
}
.tsurumi-tools label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.tsurumi-tools input,
.tsurumi-tools select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  padding: 0 11px;
}
.tsurumi-tools input:focus,
.tsurumi-tools select:focus {
  border-color: var(--accent);
}
.tsurumi-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.tsurumi-model-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 12px;
  box-shadow: var(--shadow-soft);
}
.tsurumi-model-main {
  display: grid;
  gap: 4px;
}
.tsurumi-brand,
.tsurumi-series {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 900;
}
.tsurumi-series {
  color: var(--muted);
}
.tsurumi-model-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.1;
}
.tsurumi-model-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.tsurumi-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.tsurumi-spec-grid span {
  display: grid;
  gap: 2px;
  border-radius: 7px;
  background: var(--surface-2);
  padding: 6px 8px;
  color: var(--muted);
  font-size: 11px;
}
.tsurumi-spec-grid strong {
  color: var(--text);
  font-size: 12px;
  word-break: break-word;
}
.tsurumi-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 8px;
  background: #1f9d55;
  color: #f7fff9;
  font-size: 12px;
  font-weight: 900;
}
.tsurumi-inquiry:hover {
  background: #158348;
}
.tsurumi-empty {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  color: var(--muted);
  font-weight: 800;
}
.pump-finder {
  display: grid;
  gap: 22px;
}
.pump-finder-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 720px);
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
}
.pump-finder-intro-main {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.pump-finder-intro p {
  max-width: 70ch;
  color: var(--muted);
  font-size: 17px;
}
.pump-stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  list-style: none;
  overflow: visible;
}
.pump-stepper li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  align-content: center;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(12px, 1.25vw, 18px);
  color: var(--muted);
  box-shadow: var(--shadow-soft);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.pump-stepper li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 16px;
  font-weight: 950;
}
.pump-stepper strong {
  color: var(--text);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.25;
}
.pump-stepper small {
  margin-top: 6px;
  font-size: clamp(12px, .95vw, 14px);
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.pump-stepper li.is-current,
.pump-stepper li.is-complete {
  border-color: color-mix(in srgb, var(--accent) 44%, var(--line));
  background: color-mix(in srgb, var(--accent-soft) 46%, var(--surface));
}
.pump-stepper li.is-current > span,
.pump-stepper li.is-complete > span {
  background: var(--accent);
  color: #fff;
}
.pump-stepper li.is-complete > span::after {
  content: "✓";
}
.pump-stepper li.is-complete > span {
  font-size: 0;
}
.pump-stepper li.is-complete > span::after {
  font-size: 16px;
}
.pump-workbench {
  display: grid;
  grid-template-columns: clamp(250px, 16.5vw, 280px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
}
.pump-category-panel {
  position: static;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 12px;
  box-shadow: var(--shadow-soft);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.pump-category-panel.is-current {
  border-color: color-mix(in srgb, var(--accent) 58%, var(--line));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 9%, transparent), var(--shadow-soft);
}
.pump-category-heading {
  display: grid;
  grid-column: 1 / -1;
  gap: 5px;
  padding: 6px 6px 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2px;
}
.pump-category-heading strong {
  font-size: 18px;
  line-height: 1.1;
}
.pump-category-heading span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.pump-category-heading .pump-step-label {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 950;
}
.pump-category-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 4px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  min-height: 66px;
  padding: 9px 10px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
.pump-category-panel .pump-category-card {
  grid-template-columns: minmax(0, 1fr);
}
.pump-category-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.pump-category-card strong {
  font-size: 14px;
  line-height: 1.2;
}
.pump-category-card .pump-category-copy span {
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.pump-category-card:hover,
.pump-category-card.is-active {
  border-color: color-mix(in srgb, var(--accent) 34%, var(--line));
  background: color-mix(in srgb, var(--accent-soft) 44%, var(--surface));
}
.pump-category-card.is-active strong {
  color: var(--accent-strong);
}
.pump-main-panel {
  min-width: 0;
  display: grid;
  gap: 16px;
}
.distributor-proof {
  margin: 0;
  max-width: 420px;
}
.distributor-proof-hero {
  max-width: 1780px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  gap: clamp(24px, 5vw, 88px);
  width: 100%;
  margin: 0 auto clamp(18px, 3vw, 34px);
  padding: 0 clamp(18px, 4vw, 56px);
}
.distributor-proof img {
  grid-column: 2;
  justify-self: end;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: var(--shadow-soft);
}
.pump-finder-panel {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}
.pump-category-panel .pump-finder-panel {
  grid-column: 1 / -1;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 14px 0 0;
  box-shadow: none;
}
.pump-category-panel .pump-finder-panel input,
.pump-category-panel .pump-finder-panel select,
.pump-category-panel .pump-reset {
  min-height: 42px;
}
.pump-purpose-field {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface-2) 32%, var(--surface));
  padding: 12px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.pump-purpose-field small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}
.pump-purpose-field.is-current {
  border-color: color-mix(in srgb, var(--accent) 58%, var(--line));
  background: color-mix(in srgb, var(--accent-soft) 34%, var(--surface));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 9%, transparent);
}
.pump-form-sequence {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.pump-form-step {
  min-width: 0;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface-2) 32%, var(--surface));
  padding: 14px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.pump-form-step.is-current,
.pump-result-controls.is-current {
  border-color: color-mix(in srgb, var(--accent) 58%, var(--line));
  background: color-mix(in srgb, var(--accent-soft) 34%, var(--surface));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 9%, transparent);
}
.pump-form-step.is-upcoming,
.pump-result-controls.is-upcoming {
  background: color-mix(in srgb, var(--surface-2) 58%, var(--surface));
}
.pump-form-step legend {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 9px;
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
}
.pump-form-step legend > span,
.pump-result-controls-heading > span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}
.pump-form-step legend strong,
.pump-result-controls-heading strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
}
.pump-form-step legend small,
.pump-result-controls-heading small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
.pump-step-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.pump-step-fields-single {
  grid-template-columns: 1fr;
}
.pump-advanced-filters {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}
.pump-finder-panel > .pump-advanced-filters:first-child {
  margin-top: 0;
  margin-bottom: 12px;
}
.pump-advanced-filters summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}
.pump-advanced-filters summary::-webkit-details-marker { display: none; }
.pump-advanced-filters summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--accent-strong);
  font-size: 18px;
  font-weight: 900;
}
.pump-advanced-filters[open] summary::after { content: "−"; }
.pump-advanced-filters summary span {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.pump-advanced-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 14px;
}
.pump-search-field { grid-column: auto; }
.pump-result-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: end;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.pump-category-panel .pump-result-controls {
  grid-template-columns: 1fr;
}
.pump-result-controls.is-current,
.pump-result-controls.is-upcoming {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}
.pump-result-controls.is-current {
  border-color: color-mix(in srgb, var(--accent) 58%, var(--line));
}
.pump-result-controls-heading {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 9px;
  align-self: center;
}
.pump-finder-panel label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.pump-finder-panel input,
.pump-finder-panel select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  padding: 0 14px;
}
.pump-finder-panel input:focus,
.pump-finder-panel select:focus {
  border-color: var(--accent);
  box-shadow: var(--focus);
}
.pump-reset {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--text);
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
}
.pump-reset:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent-soft) 48%, var(--surface));
}
.pump-bulk-inquiry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid color-mix(in srgb, #1f9d55 34%, var(--line));
  border-radius: 14px;
  background: linear-gradient(100deg, color-mix(in srgb, #e9fff1 72%, var(--surface)), var(--surface) 62%);
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
}
.pump-query-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1.58fr);
  align-items: stretch;
  border: 1px solid color-mix(in srgb, #1f9d55 34%, var(--line));
  border-radius: 14px;
  background: linear-gradient(100deg, color-mix(in srgb, var(--accent-soft) 48%, var(--surface)), color-mix(in srgb, #e9fff1 64%, var(--surface)) 58%, var(--surface));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.pump-query-toolbar .pump-finder-summary {
  display: flex;
  align-items: center;
  min-width: 0;
  border: 0;
  border-right: 1px solid color-mix(in srgb, #1f9d55 24%, var(--line));
  border-radius: 0;
  background: transparent;
  padding: 12px 14px;
  color: var(--accent-strong);
  white-space: normal;
}
.pump-query-toolbar .pump-bulk-inquiry {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 9px 12px;
  box-shadow: none;
}
.pump-bulk-inquiry div {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.pump-bulk-inquiry strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 950;
}
.pump-bulk-inquiry span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.pump-bulk-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 44px;
  border-radius: 10px;
  background: #1f9d55;
  color: #f7fff9;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(31, 157, 85, .24);
}
.pump-bulk-whatsapp:hover {
  background: #158348;
  color: #fff;
}
.pump-finder-summary {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.pump-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.pump-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.pump-pagination button,
.pump-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 900;
}
.pump-pagination button {
  cursor: pointer;
}
.pump-pagination button:hover:not(:disabled),
.pump-pagination button.is-active {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent-soft) 50%, var(--surface));
  color: var(--accent-strong);
}
.pump-pagination button:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.pump-pagination span {
  min-width: 24px;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
}
.pump-result-card {
  display: grid;
  grid-template-columns: minmax(116px, 34%) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 10px;
  box-shadow: 0 10px 26px rgba(7, 31, 52, .07);
}
.pump-result-image {
  display: grid;
  place-items: center;
  min-height: 158px;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(7, 31, 52, .08);
  overflow: hidden;
}
.pump-result-image img {
  width: 100%;
  height: 148px;
  object-fit: contain;
}
.pump-result-body {
  position: relative;
  display: grid;
  gap: 6px;
  align-content: start;
  padding-top: 2px;
}
.pump-result-brand {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center end;
  min-width: 78px;
  min-height: 24px;
}
.pump-result-brand img {
  width: auto;
  max-width: 92px;
  max-height: 24px;
  object-fit: contain;
  object-position: right center;
}
.pump-result-card h3 {
  margin: 0;
  padding-right: 94px;
  font-size: 18px;
  line-height: 1.12;
}
.pump-series {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.25;
}
.pump-series span {
  color: var(--accent-strong);
  font-size: 10px;
  font-weight: 950;
}
.pump-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}
.pump-specs span {
  display: grid;
  gap: 1px;
  border-radius: 6px;
  background: var(--surface-2);
  padding: 5px 6px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.15;
}
.pump-specs strong {
  color: var(--text);
  font-size: 11px;
  line-height: 1.2;
}
.pump-suitable {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pump-result-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pump-whatsapp,
.pump-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 7px;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 900;
}
.pump-whatsapp {
  border: 1px solid #1f9d55;
  background: #1f9d55;
  color: #f7fff9;
}
.pump-whatsapp:hover {
  background: #158348;
  border-color: #158348;
}
.pump-detail-button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--accent-strong);
  cursor: pointer;
}
.pump-detail-button:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent-soft) 42%, var(--surface));
}
.pump-empty {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  color: var(--muted);
  font-weight: 800;
}
.section {
  max-width: 1780px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 88px) clamp(18px, 4vw, 56px);
}
.section.catalog {
  padding-top: clamp(18px, 2vw, 28px);
}
.section-heading { max-width: 760px; margin-bottom: 28px; }
.catalog-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
}
.catalog-status {
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-soft) 58%, var(--surface));
  padding: 9px 14px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-heading p, .service-intro p, .about-copy p, .data-room p, .contact-strip p {
  color: var(--muted);
  max-width: 68ch;
}
.catalog-tools {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: 16px;
  align-items: end;
  margin-bottom: 24px;
}
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  min-height: 44px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.filter-button:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent-soft) 46%, var(--surface)); }
.filter-button.is-active { background: var(--accent); color: #f7fbff; border-color: var(--accent); box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 22%, transparent); }
.brand-filter-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin: -6px 0 22px;
  padding: 10px;
  border: 1px solid color-mix(in srgb, var(--line) 74%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--accent) 32%, transparent) transparent;
}
.brand-filter-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  padding: 7px 11px 7px 8px;
  cursor: pointer;
  flex: 0 0 auto;
  scroll-snap-align: start;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.brand-filter-button:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent-soft) 42%, var(--surface));
}
.brand-filter-button.is-active {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent-soft) 64%, var(--surface));
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 16%, transparent);
}
.brand-filter-logo,
.brand-filter-all {
  display: grid;
  place-items: center;
  width: 70px;
  height: 32px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--line) 68%, transparent);
  overflow: hidden;
}
.brand-filter-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px 6px;
}
.brand-filter-all {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 950;
}
.brand-filter-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  text-align: left;
  line-height: 1.15;
}
.brand-filter-copy strong {
  max-width: 112px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 900;
}
.brand-filter-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.search-box { display: grid; gap: 8px; color: var(--muted); font-size: 13px; }
.search-box input {
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 0 18px;
  outline: none;
}
.search-box input:focus { border-color: var(--accent); box-shadow: var(--focus); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.product-card {
  display: grid;
  grid-template-rows: auto auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: color-mix(in srgb, var(--surface) 96%, #fff);
  text-align: left;
  color: var(--text);
  padding: 0;
  position: relative;
  min-height: 0;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 70%, var(--line));
  box-shadow: var(--shadow-soft);
}
.product-card:focus-visible { outline: none; box-shadow: var(--focus), var(--shadow-soft); }
.product-image-wrap {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--product-image-bg);
  padding: 12px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.product-image-wrap img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .28s cubic-bezier(.16, 1, .3, 1);
}
.product-card:hover .product-image-wrap img { transform: scale(1.035); }
.product-card-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px;
  min-width: 0;
  height: 100%;
}
.product-brand-logo {
  display: flex;
  align-items: center;
  height: 24px;
  margin-bottom: 0;
}
.product-brand-logo img {
  width: auto;
  max-width: 128px;
  height: auto;
  max-height: 22px;
  object-fit: contain;
  object-position: left center;
}
.product-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-code {
  display: block;
  max-width: 100%;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-code small {
  display: inline;
  margin-left: 4px;
  color: color-mix(in srgb, var(--muted) 78%, var(--surface));
  font-size: 12px;
  line-height: 1.35;
}
.product-meta { display: flex; flex-wrap: wrap; align-content: flex-start; gap: 6px; color: var(--muted); font-size: 12px; overflow: hidden; }
.tag {
  display: inline-flex;
  border-radius: 999px;
  background: var(--surface-2);
  padding: 4px 8px;
  color: var(--muted);
}
.product-card-actions {
  width: 100%;
  display: block;
  margin-top: auto;
  padding-top: 8px;
}
.inquiry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 38px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}
.inquiry-button {
  border: 1px solid #1f9d55;
  background: #1f9d55;
  color: #f7fff9;
}
.inquiry-button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: currentColor;
}
.inquiry-button:hover { background: #158348; border-color: #158348; }
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
.service-intro {
  max-width: 760px;
}
.service-cells {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  min-height: 180px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 7%, transparent);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 58%, var(--line));
  box-shadow: var(--shadow-soft);
}
.service-card {
  display: grid;
  gap: 12px;
  grid-template-rows: auto auto auto 1fr;
  align-content: stretch;
}
.service-cells h3 { margin: 0 0 10px; font-size: 24px; }
.service-cells p { margin: 0; color: var(--muted); }
.service-cells article > span {
  display: block;
  margin-top: 18px;
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 13px;
}
.service-card > span {
  margin-top: 0;
}
.service-thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.service-thumb-grid {
  align-self: end;
  margin-top: 4px;
}
.service-thumb-grid img {
  width: 100%;
  aspect-ratio: 5 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(7, 31, 52, .07);
}
.service-thumb-grid img:nth-child(2),
.service-thumb-grid img:nth-child(3) {
  object-fit: contain;
  padding: 6px;
}
.image-cell { padding: 0 !important; overflow: hidden; }
.image-cell img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.about {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1.1fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}
.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow-soft);
}
.about-media img { width: 100%; height: auto; object-fit: contain; }
.about-copy p { font-size: 17px; }
.seo-faq {
  max-width: none;
  width: 100%;
  margin: clamp(20px, 4vw, 50px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(112deg, color-mix(in srgb, var(--accent-soft) 54%, var(--surface)), var(--surface) 64%);
  padding: clamp(44px, 6vw, 78px) max(clamp(18px, 4vw, 56px), calc((100% - 1668px) / 2));
  box-shadow: none;
}
.seo-faq > div:first-child {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}
.seo-faq > div:first-child span {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
}
.seo-faq h2 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.15;
}
.seo-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.seo-faq article {
  border: 0;
  border-top: 2px solid color-mix(in srgb, var(--accent) 45%, var(--line));
  border-radius: 0;
  background: transparent;
  padding: 18px 2px 8px;
}
.seo-faq article h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.4;
  text-wrap: balance;
}
.seo-faq p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.store-directions {
  margin: clamp(28px, 4vw, 54px) 0 0;
  border-top: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  background: linear-gradient(115deg, color-mix(in srgb, var(--accent-soft) 58%, var(--surface)), var(--surface) 74%);
}
.store-directions-inner {
  max-width: 1680px;
  width: calc(100% - clamp(36px, 8vw, 112px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(28px, 4vw, 56px) 0;
}
.store-directions-copy {
  max-width: 720px;
}
.store-directions-address {
  margin: 0 0 8px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 900;
}
.store-directions h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
  text-wrap: balance;
}
.store-directions-copy > p:not(.store-directions-address) {
  max-width: 62ch;
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  text-wrap: pretty;
}
.store-directions ol {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  counter-reset: route-step;
}
.store-directions li {
  counter-increment: route-step;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
}
.store-directions li::before {
  content: counter(route-step);
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}
.store-directions li strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.4;
}
.store-directions li span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.store-directions-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
}
.store-directions-link:hover {
  background: var(--accent-strong);
}
.store-directions-figure {
  display: grid;
  justify-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.store-directions-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 860px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 6px 8px rgb(8 45 72 / .14);
}
.data-room {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.data-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.data-links a {
  display: flex;
  align-items: center;
  min-height: 58px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 18px;
  font-weight: 700;
  transition: border-color .2s ease, transform .2s ease;
}
.data-links a:hover { border-color: var(--accent); transform: translateY(-2px); }
.contact-strip {
  max-width: 1680px;
  width: calc(100% - clamp(36px, 8vw, 112px));
  margin: clamp(18px, 3vw, 34px) auto 0;
  display: grid;
  grid-template-columns: minmax(220px, .28fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 26%, var(--line));
  border-radius: var(--radius);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-soft) 86%, #fff), color-mix(in srgb, var(--surface) 94%, #fff) 54%, #fff);
  padding: 14px 16px;
  box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 12%, transparent);
}
.contact-strip-heading {
  color: var(--text);
  padding: 0;
}
.contact-strip-heading h2 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}
.contact-strip-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.contact-strip-details {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-strip-details span,
.contact-strip-details a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, #fff 78%, var(--accent-soft));
  color: var(--text);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.contact-strip-details strong {
  margin-right: 6px;
  color: var(--accent-strong);
  font-weight: 900;
}
.contact-strip-details a:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent-soft) 56%, #fff);
}
.contact-strip-whatsapp {
  border-color: #1f9d55 !important;
  background: #1f9d55 !important;
  color: #f7fff9 !important;
}
.contact-strip-whatsapp strong {
  color: #f7fff9;
}
.contact-strip-whatsapp:hover {
  background: #158348 !important;
  border-color: #158348 !important;
}
.inline-whatsapp {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-left: 10px;
  border-radius: 999px;
  background: #e8f8ef;
  color: #137a43;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 900;
}
.inline-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 36%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-soft) 62%, var(--surface));
  color: var(--accent-strong);
  font-size: 17px;
  font-weight: 900;
  vertical-align: middle;
}
.inline-email:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #f7fbff;
}
dl { margin: 0; display: grid; gap: 1px; background: var(--line); }
dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  background: var(--surface);
  padding: 15px 0;
}
dt { color: var(--muted); }
dd { margin: 0; font-weight: 700; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer strong { color: var(--text); }

.product-dialog {
  width: min(1080px, calc(100vw - 28px));
  max-height: min(860px, calc(100dvh - 28px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
}
.product-dialog::backdrop { background: rgb(10 14 16 / .68); backdrop-filter: blur(4px); }
.dialog-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 88px);
  margin: 12px 12px 0 auto;
  display: block;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  min-height: 44px;
  padding: 9px 16px;
  cursor: pointer;
  z-index: 2;
}
.dialog-body {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) 1.1fr;
  gap: 24px;
  padding: 10px 24px 28px;
}
.dialog-gallery {
  display: grid;
  gap: 10px;
  align-content: start;
}
.dialog-gallery img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  border: 0;
}
.official-source-note {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--muted);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
}
.thumb-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.thumb-button {
  min-height: 78px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.thumb-row img { height: 78px; object-fit: cover; pointer-events: none; }
.dialog-content h2 { font-size: clamp(26px, 4vw, 42px); margin: 0 0 10px; line-height: 1.15; }
.dialog-summary {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.dialog-intro {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.dialog-intro p {
  margin: 0;
}
.dialog-facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 18px; }
.highlight-list {
  display: grid;
  gap: 7px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.highlight-list li {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 0 0 20px;
  color: var(--text);
  font-weight: 700;
}
.highlight-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.original-title {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  margin-bottom: 18px;
}
.original-title span,
.detail-heading {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.original-title p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.detail-heading {
  margin: 0 0 10px;
  text-transform: none;
}
.detail-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; color: var(--muted); }
.detail-list {
  max-height: 52dvh;
  overflow: auto;
  padding-right: 4px;
}
.detail-list li {
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  padding: 9px 0;
}
.compact-detail-list {
  max-height: none;
  margin-bottom: 18px;
}
.compact-detail-list li {
  display: grid;
  grid-template-columns: minmax(104px, .42fr) 1fr;
  gap: 16px;
  align-items: start;
}
.product-spec-table {
  max-height: 34dvh;
  margin-bottom: 4px;
}
.compact-detail-list strong {
  color: var(--text);
}
.compact-detail-list span {
  color: var(--muted);
}
.pdf-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.pdf-link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-soft) 44%, var(--surface));
  color: var(--accent-strong);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 900;
}
.small-note {
  font-size: 14px;
}
.whatsapp-link,
.source-link { display: inline-flex; align-items: center; min-height: 44px; margin-top: 20px; font-weight: 700; }
.whatsapp-link {
  justify-content: center;
  border-radius: 999px;
  background: #1f9d55;
  color: #f7fff9;
  padding: 0 18px;
}
.source-link { color: var(--accent-strong); }
.empty-state {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px;
  color: var(--muted);
}

@supports (content-visibility: auto) {
  .category-directory,
  .service-grid,
  .about,
  .seo-faq,
  .contact-strip,
  .pump-workbench {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy, .hero-media, .product-card {
    animation: enter .32s cubic-bezier(.16, 1, .3, 1) both;
  }
  .hero-media { animation-delay: .08s; }
  .product-card { animation-delay: calc(min(var(--i), 8) * 35ms); }
  @keyframes enter {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-carousel-dots button,
  .hero-carousel-arrow {
    transition: none;
  }
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    height: auto;
    min-height: 76px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .brand-logo {
    width: min(560px, 54vw);
    height: 52px;
  }
  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    overflow-x: auto;
  }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto auto; height: auto; min-height: 68px; padding-top: 10px; padding-bottom: 10px; }
  .brand-logo { width: min(520px, 60vw); height: 50px; }
  .header-contact { gap: 6px; }
  .header-whatsapp { min-height: 42px; padding: 0 12px; }
  .nav { grid-column: 1 / -1; grid-row: 2; overflow-x: auto; padding: 5px; font-size: 16px; }
  .nav a { min-height: 44px; min-width: 78px; padding: 0 20px; }
  .nav-pill { top: 5px; height: calc(100% - 10px); }
  .hero, .service-grid, .about, .data-room, .dialog-body, .pump-finder-intro, .pump-page-hero, .distributor-proof-hero, .tsurumi-hero { grid-template-columns: 1fr; }
  .seo-faq-grid { grid-template-columns: 1fr; }
  .store-directions-inner {
    grid-template-columns: 1fr;
  }
  .store-directions-copy {
    max-width: none;
  }
  .store-directions-figure {
    width: min(100%, 560px);
    justify-self: center;
  }
  .contact-strip { grid-template-columns: 1fr; }
  .contact-strip-details { justify-content: flex-start; }
  .pump-hero-badges { justify-self: start; justify-content: flex-start; width: min(100%, 660px); }
  .distributor-proof img { grid-column: 1; justify-self: start; }
  .hero {
    width: calc(100% - 32px);
    margin: 24px auto;
    padding: 16px;
    gap: 12px;
  }
  .hero h1 { max-width: 12ch; }
  .hero-media, .hero-media img { min-height: 420px; }
  .company-banner, .company-banner img { min-height: 0; }
  .catalog-tools { grid-template-columns: 1fr; }
  .brand-filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px;
    scroll-snap-type: x proximity;
  }
  .brand-filter-button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-cells { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tsurumi-tools { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tsurumi-tools .pump-reset { grid-column: 1 / -1; }
  .tsurumi-model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pump-workbench { grid-template-columns: 1fr; }
  .pump-stepper small { display: block; }
  .pump-stepper li {
    min-height: 0;
    align-items: start;
  }
  .pump-category-panel {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pump-category-heading { grid-column: 1 / -1; }
  .pump-category-card { grid-template-columns: minmax(0, 1fr); }
  .pump-form-sequence { grid-template-columns: 1fr; }
  .pump-result-controls {
    grid-template-columns: minmax(200px, 1fr) repeat(2, minmax(130px, 180px));
  }
  .pump-result-controls .pump-reset { grid-column: 1 / -1; }
  .pump-finder-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pump-finder-panel.combined-pump-tools { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pump-reset { grid-column: 1 / -1; }
  .pump-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-heading { grid-template-columns: 1fr; }
  .category-directory-heading, .category-directory-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand-logo { width: min(232px, 61vw); height: 44px; }
  .header-whatsapp { width: 42px; min-width: 42px; min-height: 40px; padding: 0; gap: 4px; }
  .header-whatsapp span,
  .header-whatsapp .header-mobile-icon { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; }
  .nav { font-size: 15px; }
  .nav a { min-width: 72px; padding: 0 17px; }
  .section { padding-left: 16px; padding-right: 16px; }
  .pump-page-hero { padding: 24px 16px 4px; }
  .pump-page .pump-finder.tsurumi-products { padding-top: 12px; }
  .pump-page-hero h1 { font-size: clamp(27px, 8.4vw, 40px); }
  .hero h1 { font-size: clamp(32px, 9.2vw, 38px); }
  .hero-copy { margin-left: 0; padding: 16px 10px 12px 18px; }
  .hero-media, .hero-media img { min-height: 340px; }
  .company-banner, .company-banner img { min-height: 0; }
  .hero-contact { display: none; }
  .hero-carousel { aspect-ratio: 4 / 3; }
  .hero-carousel .hero-slide:first-child > img {
    object-fit: contain;
    background: #f7fbff;
  }
  .simer-hero-slide > img {
    object-position: 67% center;
  }
  .simer-hero-slide::after {
    background: linear-gradient(180deg, rgb(4 20 35 / .84) 0%, rgb(4 20 35 / .58) 45%, rgb(4 20 35 / .12) 74%, transparent 100%);
  }
  .simer-hero-content {
    top: 24px;
    left: 22px;
    width: calc(100% - 44px);
    transform: none;
  }
  .simer-hero-content h2 {
    max-width: 11ch;
    font-size: clamp(26px, 8vw, 34px);
  }
  .simer-hero-content > p:not(.simer-hero-brand) {
    display: none;
  }
  .simer-hero-content > strong { display: none; }
  .simer-hero-actions {
    margin-top: 14px;
  }
  .simer-hero-actions .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }
  .hero-carousel-arrow {
    top: auto;
    bottom: 10px;
    width: 38px;
    height: 38px;
    transform: none;
  }
  .hero-carousel-arrow:hover {
    transform: scale(1.05);
  }
  .hero-carousel-prev { left: 12px; }
  .hero-carousel-next { right: 12px; }
  .hero-carousel-dots { bottom: 13px; }
  .hero-checklist { position: static; padding: 12px; grid-template-columns: repeat(3, 1fr); }
  .hero-checklist span { text-align: center; font-size: 12px; }
  .tsurumi-stats { width: calc(100% - 32px); margin-left: 16px; margin-right: 16px; grid-template-columns: repeat(2, 1fr); }
  .category-directory { width: calc(100% - 32px); padding: 16px; }
  .category-directory-media img { max-height: 160px; }
  .seo-faq { width: 100%; padding: 36px 16px; }
  .store-directions-inner {
    width: calc(100% - 32px);
    gap: 24px;
    padding: 28px 0;
  }
  .store-directions h2 { font-size: 32px; }
  .store-directions-figure { width: 100%; }
  .category-directory-list { gap: 6px; }
  .category-chip { max-width: 100%; min-height: 30px; padding: 0 9px; font-size: 11px; }
  .contact-strip { width: calc(100% - 32px); padding: 14px; }
  .contact-strip-details {
    display: grid;
    grid-template-columns: 1fr;
  }
  .contact-strip-details span,
  .contact-strip-details a {
    justify-content: flex-start;
    width: 100%;
    white-space: normal;
    padding: 9px 12px;
  }
  .pump-category-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 10px; }
  .pump-category-card {
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    min-height: 62px;
    padding: 7px;
  }
  .pump-category-card strong { font-size: 12px; }
  .pump-category-card .pump-category-copy span {
    display: -webkit-box;
    overflow: hidden;
    font-size: 10.5px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .pump-finder-panel { grid-template-columns: 1fr; }
  .pump-finder-panel.combined-pump-tools { grid-template-columns: 1fr; }
  .pump-stepper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .pump-stepper li {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    min-height: 0;
    padding: 12px;
  }
  .pump-stepper li > span { width: 34px; height: 34px; margin-bottom: 9px; }
  .pump-stepper strong { font-size: 15px; }
  .pump-stepper small { font-size: 12px; }
  .pump-stepper li:nth-child(2n) { border-right: 1px solid var(--line); }
  .pump-step-fields,
  .pump-advanced-grid,
  .pump-result-controls { grid-template-columns: 1fr; }
  .pump-search-field { grid-column: auto; }
  .pump-advanced-filters summary span { display: none; }
  .pump-result-controls .pump-reset { grid-column: auto; }
  .pump-bulk-inquiry { align-items: stretch; flex-direction: column; }
  .pump-bulk-whatsapp { width: 100%; }
  .pump-query-toolbar { grid-template-columns: 1fr; }
  .pump-query-toolbar .pump-finder-summary {
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, #1f9d55 24%, var(--line));
  }
  .pump-results { grid-template-columns: 1fr; }
  .pump-result-card { grid-template-columns: minmax(108px, 34%) minmax(0, 1fr); }
  .pump-result-image { min-height: 132px; }
  .pump-result-image img { height: 124px; }
  .pump-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-card-content { padding: 10px; }
  .product-brand-logo img { max-width: 104px; }
  .product-card h3 { font-size: 13px; }
  .product-code,
  .product-code small { font-size: 10.5px; }
  .inquiry-button { min-height: 36px; gap: 5px; font-size: 11.5px; }
  .inquiry-button svg { width: 15px; height: 15px; }
  .tsurumi-hero { padding-left: 16px; padding-right: 16px; }
  .tsurumi-hero h1 { font-size: clamp(34px, 11vw, 48px); }
  .tsurumi-tools { grid-template-columns: 1fr; }
  .tsurumi-model-grid { grid-template-columns: 1fr; }
  .tsurumi-spec-grid { grid-template-columns: 1fr; }
  .service-cells, .data-links { grid-template-columns: 1fr; }
  dl div { grid-template-columns: 1fr; gap: 4px; }
  .footer { flex-direction: column; }
  .thumb-row { grid-template-columns: repeat(3, 1fr); }
}
