/**
 * Liquid solution power switcher (Banner).
 * Segmented control: 450 · 1240 · 1800 kW — navigates to per-SKU pages.
 * High contrast on photo heroes (mdc-band / on-media).
 */
.mdc-sol-switch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 auto 20px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.mdc-sol-switch-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mdc-on-media-muted, rgba(255, 255, 255, 0.72));
}
.mdc-sol-switch-seg {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 3px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.mdc-sol-switch-seg a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 10px 16px;
  margin: 0;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font: 700 15px/1.15 "Inter", system-ui, sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 120ms linear, color 120ms linear;
}
.mdc-sol-switch-seg a .mdc-sol-kw {
  font-variant-numeric: tabular-nums;
}
.mdc-sol-switch-seg a .mdc-sol-unit {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 4px;
}
.mdc-sol-switch-seg a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.mdc-sol-switch-seg a.is-active,
.mdc-sol-switch-seg a[aria-current="page"] {
  background: #fff;
  color: #0c0d10;
}
.mdc-sol-switch-seg a.is-active .mdc-sol-unit,
.mdc-sol-switch-seg a[aria-current="page"] .mdc-sol-unit {
  opacity: 0.7;
  color: inherit;
}
.mdc-sol-switch-seg a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
@media (max-width: 420px) {
  .mdc-sol-switch-seg a {
    min-width: 72px;
    padding: 10px 12px;
    font-size: 14px;
  }
}
