:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #101010;
  --panel-soft: #171717;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f7f7;
  --muted: #b8b8b8;
  --orange: #ff4b12;
  --orange-2: #ff9d12;
  --silver: #d8d8d8;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --display-size: 60px;
  --copy-size: 22px;
  font-family: Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 75, 18, 0.18), transparent 24rem),
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.08), transparent 21rem),
    linear-gradient(135deg, #030303, #101010 48%, #050505);
  color: var(--text);
}

body.locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.brand-logo img {
  width: 204px;
  max-height: 59px;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a,
.nav-menu > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: color 180ms ease;
}

.main-nav a:hover,
.nav-menu:hover > button,
.nav-menu:focus-within > button {
  color: var(--text);
}

.nav-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.nav-menu > button::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 240px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 12, 12, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu:hover .dropdown,
.nav-menu:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--silver);
  white-space: nowrap;
}

.dropdown a:hover {
  background: rgba(255, 75, 18, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-button,
.mobile-copy,
.hero-copy-mobile {
  display: none;
}

.icon-button,
.cart-button,
.mobile-menu-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-button svg,
.cart-button svg,
.mobile-menu-button svg,
.search-box svg,
.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.cart-button {
  position: relative;
}

.contact-email,
.quote-email-note a,
.site-footer a {
  color: var(--silver);
  font-weight: 800;
}

.contact-email {
  display: inline-flex;
  width: fit-content;
  font-size: 1rem;
}

.contact-email:hover,
.quote-email-note a:hover,
.site-footer a:hover {
  color: var(--text);
}

.mobile-menu-button {
  gap: 8px;
  width: auto;
  padding: 0 12px;
  color: var(--text);
  display: none;
  font-weight: 900;
}

.cart-button span {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #080808;
  font-size: 0.75rem;
  font-weight: 900;
}

.icon-button:hover,
.cart-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 75, 18, 0.55);
  background: rgba(255, 75, 18, 0.14);
}

.hero {
  position: relative;
  display: block;
  min-height: calc(100svh - 74px);
  overflow: hidden;
  padding: 0;
  background: #050505;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.location-actions,
.quick-links,
.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #080808;
  box-shadow: 0 16px 34px rgba(255, 75, 18, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 75, 18, 0.6);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide picture,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide picture {
  display: block;
}

.hero-slide img {
  object-fit: cover;
  object-position: center center;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 22%;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.72) 72%, rgba(5, 5, 5, 0.95));
  pointer-events: none;
}

.hero-slide-copy {
  position: absolute;
  top: 23.5%;
  left: clamp(18px, 4vw, 54px);
  z-index: 2;
  width: min(730px, calc(100% - 56px));
  color: var(--text);
}

.hero-slide-copy h1 {
  margin: 0;
  font-size: var(--display-size);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-slide-copy p {
  margin: 38px 0 0;
  color: var(--muted);
  font-size: var(--copy-size);
  font-weight: 300;
  line-height: 1.26;
}

.hero-slide-copy strong {
  font-weight: 900;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  width: max-content;
  max-width: 100%;
  margin: clamp(42px, 5.8vh, 74px) 0 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.hero .button {
  min-width: clamp(166px, 11vw, 218px);
  min-height: clamp(56px, 5.7vw, 78px);
  padding-inline: 28px;
  border-radius: clamp(13px, 1.2vw, 20px);
  font-size: clamp(1rem, 1.16vw, 1.18rem);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(34px, 6.4vh, 72px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 24px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-dots button.active {
  border-color: #fff;
  background: #fff;
  transform: scale(1.06);
}

.editorial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 42px);
  padding: 30px clamp(18px, 4vw, 54px);
}

.trust-band div {
  display: grid;
  align-content: center;
  min-height: 96px;
  padding: 4px 0;
  text-align: center;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 9px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-band span {
  max-width: 280px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.section,
.brands-section,
.services-callout,
.quote-section {
  padding: 86px clamp(18px, 4vw, 54px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(260px, 0.45fr);
  column-gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading.compact {
  grid-template-columns: minmax(0, 0.65fr) minmax(260px, 0.35fr);
}

#vitrine .section-heading {
  display: block;
  margin-bottom: 16px;
}

#vitrine .section-heading p {
  max-width: 760px;
  font-size: 15px;
}

.section-heading h2,
.feature-panel h2,
.quote-copy h2,
.location-copy h2,
.services-callout h2,
.page-hero h1 {
  margin: 0;
  font-size: var(--display-size);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p:last-child,
.feature-panel p,
.quote-copy p,
.location-copy p,
.services-callout p,
.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: var(--copy-size);
  font-weight: 300;
  line-height: 1.65;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 28px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.segmented {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 10px;
}

.segmented button {
  min-height: 46px;
  width: 100%;
  min-width: 0;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  color: var(--silver);
  cursor: pointer;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.segmented button.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #070707;
}

.category-explorer {
  margin: 0 0 28px;
  padding: clamp(16px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.category-explorer[hidden] {
  display: none;
}

.category-explorer-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.category-explorer-heading span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-explorer-heading h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.category-explorer-heading p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.category-explorer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.category-branch {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.category-branch summary {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.category-branch summary::-webkit-details-marker {
  display: none;
}

.category-branch summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.2rem;
}

.category-branch[open] summary::after {
  content: "-";
}

.category-branch-body {
  display: grid;
  gap: 12px;
  padding: 0 14px 14px;
}

.category-cluster {
  display: grid;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.category-cluster strong {
  color: var(--silver);
  font-size: 0.88rem;
}

.category-cluster ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-cluster li {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-empty {
  display: grid;
  grid-column: 1 / -1;
  gap: 14px;
  justify-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.product-empty h3,
.product-empty p {
  margin: 0;
}

.product-empty p {
  max-width: 660px;
  color: var(--muted);
  line-height: 1.5;
}

.product-empty .button {
  width: auto;
}

.product-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 170px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 75, 18, 0.2), rgba(255, 255, 255, 0.08)),
    #131313;
}

.product-visual::before {
  content: none;
}

.product-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-visual:has(img)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.56));
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: var(--silver);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.product-info h3 {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.25;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.price {
  color: var(--text);
  font-weight: 900;
}

.add-button {
  min-height: 40px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 13px;
  background: #f4f4f4;
  color: #050505;
  cursor: pointer;
  font-weight: 900;
}

.brands-section {
  border-top: 1px solid var(--line);
}

.brands-section .section-heading {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(28px, 3.8vw, 52px);
  margin-bottom: clamp(60px, 7vw, 108px);
  text-align: center;
}

.brands-section h2 {
  max-width: 1320px;
  justify-self: center;
  font-size: var(--display-size);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.brand-copy {
  max-width: 1580px;
  justify-self: center;
}

.brand-copy p:last-child {
  color: var(--muted);
  font-size: var(--copy-size);
  font-weight: 300;
  line-height: 1.25;
  text-align: center;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.brand-grid img {
  width: 100%;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: invert(1) grayscale(1) contrast(1.25);
  mix-blend-mode: screen;
  object-fit: contain;
}

.split-section,
.quote-section,
.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
  padding: 86px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
}

.feature-panel,
.quote-copy,
.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

.feature-panel p {
  margin-top: 20px;
  max-width: 640px;
}

.feature-panel .button {
  align-self: stretch;
  margin-top: 26px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.cable-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cable-showcase .editorial-card {
  min-height: 250px;
}

.editorial-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
}

.editorial-card.large {
  min-height: 360px;
}

.editorial-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.editorial-card div {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
}

.editorial-card strong {
  font-size: 1.12rem;
}

.editorial-card span {
  color: var(--muted);
  line-height: 1.45;
}

.services-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.services-callout p {
  max-width: 820px;
  margin-top: 18px;
}

.quote-section {
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
}

.service-actions,
.quote-card {
  display: grid;
  justify-self: start;
  align-self: center;
  align-content: center;
  justify-content: stretch;
  gap: 12px;
  width: 360px;
  max-width: 100%;
  margin-top: 0;
}

.quote-card {
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.service-actions .button,
.quote-card .button {
  width: 100%;
  min-height: 58px;
  padding-inline: 20px;
}

.quote-copy p,
.location-copy p {
  margin-top: 22px;
}

.location-copy {
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
}

.location-copy p {
  max-width: 680px;
  margin-top: 0;
}

.store-hours {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.location-copy .location-actions {
  margin-top: 0;
}

.location-title {
  display: block;
  margin: 0;
  line-height: 0;
}

.location-title img {
  width: min(330px, 68vw);
  height: auto;
}

.location-section iframe {
  width: 100%;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  filter: grayscale(0.8) contrast(1.05);
}

.cart-drawer,
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.cart-drawer.open,
.quote-modal.open {
  display: block;
}

.cart-backdrop,
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.cart-panel,
.modal-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(460px, 100%);
  height: 100%;
  flex-direction: column;
  border-left: 1px solid var(--line);
  background: #0b0b0b;
  box-shadow: var(--shadow);
}

.cart-header,
.cart-summary,
.modal-header {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-header,
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2,
.modal-header h2 {
  margin: 0;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 10px 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item button {
  align-self: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.cart-summary {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cart-summary span,
.cart-summary p {
  color: var(--muted);
}

.cart-summary .button {
  width: 100%;
}

.cart-summary p {
  margin: 12px 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  overflow: auto;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--silver);
  font-weight: 700;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  outline: 0;
}

.quote-form input {
  min-height: 48px;
  padding: 0 13px;
}

.quote-form input[type="file"] {
  padding: 12px;
}

.quote-form textarea {
  resize: vertical;
  padding: 13px;
}

.quote-form label span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.quote-email-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #18d163, #0da84b);
  color: white;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

.site-footer {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 42px 18px 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.site-footer img {
  width: min(270px, 72vw);
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: inline-flex;
}

.page-main {
  min-height: 100svh;
}

.page-hero {
  display: grid;
  gap: 20px;
  padding: 96px clamp(18px, 4vw, 54px) 46px;
}

.page-hero p {
  max-width: 760px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 4vw, 54px) 80px;
}

.page-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.page-card h2,
.page-card h3,
.page-card p {
  margin: 0;
}

.page-card p {
  color: var(--muted);
  line-height: 1.55;
}

.page-card:has(.simple-table) {
  grid-column: span 2;
}

.simple-table {
  width: 100%;
  border-collapse: collapse;
}

.simple-table th,
.simple-table td {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.simple-table td:last-child {
  width: 150px;
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .product-grid,
  .brand-grid,
  .cable-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-explorer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --display-size: 48px;
    --copy-size: 21px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px;
  }

  .brand-logo img {
    width: 185px;
    max-height: 55px;
  }

  .header-actions {
    justify-self: end;
  }

  .header-email {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    overflow: visible;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 7, 7, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .main-nav {
    display: grid;
  }

  .main-nav a,
  .nav-menu > button {
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    padding: 0 10px;
  }

  .nav-menu {
    display: grid;
    width: 100%;
    min-height: 0;
  }

  .dropdown {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu:hover .dropdown,
  .nav-menu:focus-within .dropdown {
    transform: none;
  }

  .dropdown a {
    min-height: 38px;
    color: var(--muted);
  }

  .split-section,
  .quote-section,
  .location-section,
  .section-heading,
  .catalog-toolbar,
  .brands-section .section-heading,
  .services-callout {
    grid-template-columns: 1fr;
  }

  .brands-section h2 {
    justify-self: center;
    text-align: center;
  }

  .hero {
    min-height: min(720px, calc(100svh - 112px));
    padding: 0;
  }

  .hero-slide img {
    object-position: center center;
  }

  .hero-slide-copy {
    top: 19%;
    left: 22px;
    width: min(620px, calc(100% - 44px));
  }

  .hero-slide-copy p {
    margin-top: 30px;
  }

  .hero .hero-actions {
    gap: 12px;
    margin-top: 32px;
  }

  .hero .button {
    min-width: 164px;
    min-height: 56px;
  }

  .product-grid,
  .trust-band,
  .brand-grid,
  .cable-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .segmented {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-actions,
  .quote-card {
    width: 360px;
    max-width: 100%;
  }

  .service-actions {
    margin-top: 20px;
  }
}

@media (max-width: 560px) {
  :root {
    --display-size: 34px;
    --copy-size: 17px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-logo img {
    width: 142px;
    max-height: 48px;
  }

  .header-actions {
    gap: 8px;
  }

  .icon-button,
  .cart-button {
    width: 40px;
    height: 40px;
  }

  .mobile-menu-button {
    width: 40px;
    min-height: 40px;
    padding-inline: 0;
    font-size: 0.86rem;
  }

  .mobile-menu-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .desktop-copy,
  .hero-copy-desktop {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .hero-copy-mobile {
    display: block;
  }

  .section,
  .split-section,
  .brands-section,
  .services-callout,
  .quote-section,
  .location-section,
  .page-hero,
  .page-grid {
    padding-inline: 14px;
  }

  .hero-actions .button,
  .location-actions .button,
  .quote-card .button,
  .service-actions .button {
    width: 100%;
  }

  .hero {
    min-height: calc(100svh - 66px);
  }

  .hero-slide img {
    object-fit: cover;
    object-position: center top;
  }

  .hero-slide-copy {
    top: auto;
    right: 16px;
    bottom: 56px;
    left: 16px;
    width: auto;
    text-align: center;
  }

  .hero-slide-copy h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.05;
  }

  .hero-slide-copy p {
    font-size: 18px;
    font-weight: 400;
  }

  .hero-slide-copy p {
    margin-top: 22px;
    line-height: 1.35;
  }

  .hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    gap: 12px;
    margin-top: 24px;
  }

  .button,
  .hero .button {
    min-height: 52px;
    min-width: 0;
    padding-inline: 18px;
    font-size: 17px;
  }

  .hero-dots {
    bottom: 18px;
    gap: 16px;
  }

  .hero-dots button {
    width: 12px;
    height: 12px;
  }

  .product-grid,
  .trust-band,
  .cable-showcase,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .segmented {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-explorer {
    padding: 14px;
  }

  .category-explorer-heading h3 {
    font-size: 28px;
  }

  .category-explorer-grid {
    grid-template-columns: 1fr;
  }

  .category-cluster li {
    font-size: 0.75rem;
  }

  .product-empty .button {
    width: 100%;
  }

  .product-visual {
    min-height: 240px;
  }

  .product-info h3 {
    font-size: 1.15rem;
  }

  .product-info p {
    font-size: 1rem;
  }

  .product-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .add-button {
    min-height: 52px;
    width: 100%;
    font-size: 1.05rem;
  }

  .page-card:has(.simple-table) {
    grid-column: auto;
  }

  .brands-section .section-heading {
    gap: 18px;
    margin-bottom: 36px;
  }

  .brand-copy p:last-child {
    font-size: 17px;
    line-height: 1.45;
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }

  .brand-grid img {
    height: 86px;
  }

  .feature-panel,
  .quote-copy,
  .location-copy {
    min-height: 0;
  }

  .location-copy {
    align-items: center;
    text-align: center;
  }

  .location-title img {
    width: min(231px, 48vw);
  }

  .location-copy .location-actions {
    justify-content: center;
    width: 100%;
  }

  .location-actions .button {
    width: min(220px, 100%);
  }

  .feature-panel p,
  .quote-copy p,
  .location-copy p,
  .store-hours,
  .services-callout p {
    line-height: 1.45;
  }

  .feature-panel .button {
    width: 100%;
    margin-top: 22px;
  }

  .service-actions,
  .quote-card {
    width: 100%;
  }

  .simple-table td:last-child {
    width: 115px;
  }
}
