:root {
  --ink: #18212d;
  --muted: #657184;
  --line: #d8dee7;
  --soft: #f4f7fa;
  --white: #ffffff;
  --navy: #123456;
  --blue: #1f6fb2;
  --copper: #b66a37;
  --charcoal: #111820;
  --shadow: 0 18px 44px rgba(17, 24, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  color: rgba(255, 255, 255, 0.84);
  background: var(--charcoal);
  font-size: 13px;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.language {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language--mobile {
  display: none;
}

.language__btn {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 4px;
  color: var(--navy);
  background: #f0f3f6;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.language__btn.is-active {
  display: inline-flex;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 5px 14px rgba(18, 52, 86, 0.2);
}

.language__btn.is-active:hover {
  background: var(--blue);
}

.language__btn.is-active::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language.is-open .language__btn:not(.is-active) {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 80;
  display: inline-flex;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.16);
}

.language.is-open .language__btn:not(.is-active):hover {
  color: var(--copper);
  background: var(--soft);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.nav__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 270px;
  min-width: 270px;
  margin-left: -10px;
}

.brand__logo {
  display: block;
  width: 100%;
  height: 64px;
  object-fit: contain;
}

.brand__logo--current {
  object-position: left center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #263244;
  font-size: 14px;
  font-weight: 700;
}

.nav__links a {
  padding: 28px 0;
  border-bottom: 2px solid transparent;
}

.nav__links a:hover {
  color: var(--blue);
  border-color: var(--copper);
}

.site-search-toggle {
  width: 34px;
  height: 34px;
  display: inline-grid;
  flex: 0 0 34px;
  place-items: center;
  padding: 0;
  color: var(--navy);
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.site-search-toggle:hover {
  color: var(--copper);
  background: rgba(18, 52, 86, 0.06);
  transform: translateY(-1px);
}

.site-search-toggle--mobile {
  display: none;
}

.site-search-toggle:focus-visible,
.language__btn:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.site-search-toggle svg,
.site-search__field svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

body.search-open {
  overflow: hidden;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.site-search.is-open {
  display: block;
}

.site-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 28, 0.72);
}

.site-search__panel {
  position: relative;
  width: min(720px, calc(100% - 40px));
  max-height: calc(100vh - 64px);
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  padding: 32px;
  overflow: hidden;
  border-top: 4px solid var(--copper);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.site-search__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-search__head h2 {
  margin: 5px 0 0;
  color: var(--navy);
  font-size: 30px;
}

.site-search__close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--navy);
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.site-search__close:hover {
  color: var(--copper);
  background: rgba(18, 52, 86, 0.06);
  transform: translateY(-1px);
}

.site-search__close:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.site-search__close span {
  font-size: 28px;
  line-height: 1;
}

.site-search__intro {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.site-search__field {
  min-height: 56px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: var(--navy);
  border: 2px solid var(--navy);
  background: var(--white);
}

.site-search__field input {
  min-width: 0;
  width: 100%;
  height: 52px;
  padding: 0;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 17px;
}

.site-search__results {
  min-height: 120px;
  margin-top: 20px;
  overflow-y: auto;
  border-top: 1px solid var(--line);
}

.site-search__results.is-empty {
  min-height: 0;
  margin-top: 0;
  border-top: 0;
}

.site-search__result {
  min-height: 72px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
}

.site-search__result:hover {
  color: var(--navy);
  background: var(--soft);
}

.site-search__result-icon {
  width: 34px;
  height: 34px;
  display: block;
  border: 7px solid var(--navy);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--copper);
}

.site-search__result strong,
.site-search__result small {
  display: block;
}

.site-search__result strong {
  color: var(--ink);
  font-size: 15px;
}

.site-search__result small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.site-search__arrow {
  color: var(--copper);
  font-size: 20px;
  font-weight: 800;
}

.site-search__empty {
  margin: 0;
  padding: 34px 10px;
  color: var(--muted);
  text-align: center;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.mega-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 70;
  width: min(980px, calc(100vw - 72px));
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 34px;
  padding: 34px;
  border-top: 4px solid var(--copper);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(17, 24, 32, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

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

.nav-dropdown.closing .mega-menu,
.nav-dropdown.closing:hover .mega-menu {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
}

.mega-menu__list {
  display: grid;
  gap: 4px;
  max-height: min(430px, calc(100vh - 160px));
  align-content: start;
  overflow-y: auto;
  padding-right: 34px;
  border-right: 1px solid var(--line);
  scrollbar-width: thin;
  scrollbar-color: #aeb8c5 transparent;
}

.mega-menu__list a {
  padding: 11px 14px;
  border: 0;
  color: #263244;
  font-weight: 700;
}

.mega-menu__list a:hover {
  color: var(--blue);
  background: #f0edf1;
}

.mega-menu__brand {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 250px;
  text-align: center;
}

.mega-menu__brand img {
  width: min(330px, 100%);
  height: auto;
}

.mega-menu__brand .mega-menu__current-logo {
  width: min(410px, 100%);
}

.mega-menu__brand strong {
  margin-top: 12px;
  color: #4f5561;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.menu-toggle:hover {
  background: rgba(18, 52, 86, 0.06);
  transform: translateY(-1px);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero__slides,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slides {
  background: #0a1018;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 900ms ease,
    transform 3900ms ease;
}

.hero__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 16, 24, 0.92) 0%, rgba(10, 16, 24, 0.72) 44%, rgba(10, 16, 24, 0.16) 100%),
    linear-gradient(180deg, rgba(10, 16, 24, 0.1), rgba(10, 16, 24, 0.58));
}

@media (prefers-reduced-motion: reduce) {
  .hero__image {
    transition: none;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 92px 0 72px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.btn--primary {
  color: var(--white);
  background: var(--copper);
}

.btn--primary:hover {
  background: #9b5528;
}

.btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero__stats {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: rgba(255, 255, 255, 0.2);
}

.hero__stats div {
  padding: 20px;
  background: rgba(12, 19, 27, 0.7);
}

.hero__stats strong {
  display: block;
  font-size: 24px;
}

.hero__stats span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.section {
  padding: 86px 0;
}

.section__head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
}

.products {
  background: var(--soft);
}

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

.product-card {
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18, 52, 86, 0.06);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 106, 55, 0.55);
  box-shadow: 0 18px 38px rgba(18, 52, 86, 0.12);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border-bottom: 3px solid var(--copper);
  transition: transform 260ms ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.035);
}

.product-card h3 {
  min-height: 48px;
  margin: 20px 22px 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.32;
}

.product-card p {
  margin: 0 22px 22px;
  font-size: 14px;
}

.split__grid,
.quality__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.about-brand {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 36px;
}

.about-brand img {
  width: min(100%, 430px);
  height: auto;
  display: block;
  object-fit: contain;
}

.about-brand .about-brand__current-logo {
  width: min(100%, 560px);
}

.quality {
  color: var(--white);
  background: var(--charcoal);
}

.quality h2,
.quality p {
  color: var(--white);
}

.quality p {
  color: rgba(255, 255, 255, 0.76);
}

.quality__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 530px;
}

.quality__badges span {
  min-height: 108px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 28px;
  font-weight: 900;
}

.catalog {
  background: var(--white);
}

.catalog__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.catalog__inner p {
  max-width: 720px;
  margin-bottom: 0;
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: #0b1622;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.75fr 1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 54px;
}

.footer__brand img {
  width: min(100%, 230px);
  display: block;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  max-width: 310px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.footer__certificates {
  display: flex;
  gap: 9px;
}

.footer__certificates span {
  min-width: 58px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  text-align: center;
  font-weight: 800;
}

.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer__column h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 16px;
}

.footer__column > a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.footer__column > a:hover {
  color: var(--copper);
}

.footer__contact > a:not(.footer__whatsapp) {
  display: grid;
  gap: 3px;
}

.footer__contact a span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  text-transform: uppercase;
}

.footer__contact a strong {
  color: var(--white);
  font-size: 14px;
}

.footer__whatsapp {
  margin-top: 8px;
  padding: 11px 15px;
  border: 1px solid var(--copper);
  color: var(--white) !important;
  font-weight: 800;
}

.footer__whatsapp:hover {
  background: var(--copper);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom .container {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(17, 24, 32, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.whatsapp-float::before {
  content: "İletişime Geç";
  position: absolute;
  right: -2px;
  bottom: calc(100% + 10px);
  width: max-content;
  padding: 8px 11px;
  color: var(--white);
  border-radius: 4px;
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(17, 24, 32, 0.2);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 180ms ease, transform 180ms ease;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  right: 19px;
  bottom: calc(100% + 4px);
  border-top: 6px solid var(--navy);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #1fb85a;
  box-shadow: 0 20px 42px rgba(17, 24, 32, 0.34);
}

.whatsapp-float:hover::before {
  background: var(--blue);
  transform: translateY(-2px);
}

.whatsapp-float:hover::after {
  border-top-color: var(--blue);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: var(--white);
}

.product-hero {
  padding: 74px 0 54px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.96), rgba(18, 52, 86, 0.88)),
    url("assets/hero-cable-factory.png") center/cover;
}

.product-hero h1 {
  max-width: 780px;
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: 0;
}

.product-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.62;
}

.catalog-browser {
  padding: 46px 0 76px;
  background: var(--white);
}

.detail-hero {
  padding: 48px 0 38px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 22, 34, 0.98), rgba(18, 52, 86, 0.9)),
    url("assets/hero-cable-factory.png") center 48% / cover;
}

.detail-back {
  display: inline-block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.detail-back:hover {
  color: var(--copper);
}

.detail-hero .eyebrow {
  margin-bottom: 8px;
}

.detail-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.detail-content {
  padding: 56px 0 82px;
  background: #f4f7fa;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 38px;
  align-items: start;
}

.detail-main {
  min-width: 0;
}

.detail-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  background: var(--white);
  box-shadow: var(--shadow);
}

.detail-image-stage {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 34px;
  border-right: 1px solid var(--line);
  background: #eef2f6;
}

.detail-image-stage img {
  width: 100%;
  max-height: 430px;
  display: block;
  object-fit: contain;
}

.detail-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.catalog-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) minmax(160px, 0.8fr) minmax(180px, 0.9fr) 46px;
  align-items: end;
  gap: 14px;
  margin: 28px 0 10px;
  padding: 20px;
  border-top: 3px solid var(--copper);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 52, 86, 0.08);
}

.catalog-filter {
  min-width: 0;
}

.catalog-filter > span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-filter input,
.catalog-filter select {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: var(--white);
}

.catalog-filter input:focus,
.catalog-filter select:focus {
  border-color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--navy);
}

.catalog-filter-reset {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.catalog-filter-reset:hover {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.catalog-filter-reset svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-result-summary {
  min-height: 24px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.catalog-result-summary strong {
  color: var(--navy);
}

.catalog-empty {
  grid-column: 1 / -1;
  padding: 58px 20px;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--white);
}

.catalog-empty strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}

.catalog-empty p {
  margin: 10px 0 0;
  color: var(--muted);
}

.detail-code {
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.detail-summary h2 {
  margin: 12px 0 14px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.2;
}

.detail-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.detail-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: #f7f9fb;
  font-size: 11px;
  font-weight: 800;
}

.detail-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.detail-datasheet {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-weight: 800;
}

.detail-datasheet:hover {
  color: var(--white);
  background: var(--navy);
}

.detail-specification {
  margin-top: 28px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(18, 52, 86, 0.08);
}

.detail-tabs {
  display: grid;
  grid-template-columns: repeat(var(--detail-tab-count, 4), minmax(150px, 1fr));
  overflow-x: auto;
  background: var(--navy);
}

.detail-tab {
  min-height: 54px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.detail-tab:last-child {
  border-right: 0;
}

.detail-tab.is-active {
  color: var(--navy);
  background: var(--white);
  box-shadow: inset 0 3px 0 var(--copper);
}

.detail-table {
  padding: 10px 0;
}

.detail-table__row {
  display: grid;
  grid-template-columns: minmax(160px, 0.38fr) 1fr;
  border-bottom: 1px solid var(--line);
}

.detail-table__row:last-child {
  border-bottom: 0;
}

.detail-table__row span,
.detail-table__row strong {
  padding: 17px 22px;
  font-size: 13px;
  line-height: 1.55;
}

.detail-table__row span {
  color: var(--muted);
  background: #f7f9fb;
}

.detail-table__row strong {
  color: var(--ink);
  font-weight: 700;
}

.detail-sidebar {
  position: sticky;
  top: 104px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(18, 52, 86, 0.08);
}

.detail-sidebar h2 {
  margin: 0;
  padding: 22px;
  border-bottom: 3px solid var(--copper);
  color: var(--navy);
  font-size: 17px;
}

.detail-sidebar nav {
  display: grid;
  max-height: 620px;
  overflow-y: auto;
}

.detail-sidebar a {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.detail-sidebar a:hover,
.detail-sidebar a.is-active {
  color: var(--navy);
  background: #f4f7fa;
}

.detail-sidebar a.is-active {
  box-shadow: inset 3px 0 0 var(--copper);
  font-weight: 800;
}

.catalog-browser .container {
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.catalog-browser.is-switching .container {
  opacity: 0;
  transform: translateY(10px);
}

@media (prefers-reduced-motion: reduce) {
  .catalog-browser .container {
    transition: none;
  }
}

.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.category-tab {
  position: relative;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(18, 52, 86, 0);
  transform: translateY(0);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.category-tab::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  left: -1px;
  height: 3px;
  background: var(--copper);
  opacity: 0;
  transform: scaleX(0.25);
  transition: opacity 180ms ease, transform 180ms ease;
}

.category-tab:hover:not(.is-active) {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 9px 20px rgba(18, 52, 86, 0.16);
  transform: translateY(-2px);
}

.category-tab:hover::after,
.category-tab:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.category-tab:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.category-tab.is-active {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 6px 16px rgba(18, 52, 86, 0.14);
}

.category-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.category-title {
  text-align: center;
  margin-bottom: 34px;
}

.category-title h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 38px);
}

.category-title p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.cable-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px 28px;
}

.cable-item {
  display: grid;
  justify-items: center;
  gap: 12px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.cable-item--full-card {
  align-self: start;
  gap: 0;
}

.cable-card-photo {
  width: 192px;
  display: block;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(122, 63, 133, 0.18);
}

.cable-card-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.cable-item__visual {
  position: relative;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(182, 106, 55, 0.66);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.95), rgba(245, 247, 250, 0.76) 48%, rgba(216, 222, 231, 0.62)),
    #eef2f6;
  box-shadow: 0 14px 32px rgba(18, 52, 86, 0.1);
  overflow: hidden;
}

.cable-item__visual::before {
  content: "";
  width: 118px;
  height: 18px;
  display: block;
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.78) 8% 12%, transparent 12% 19%, rgba(182, 106, 55, 0.95) 19% 25%, transparent 25% 100%),
    linear-gradient(180deg, #f7fafc 0%, #c7d0dc 42%, #5f6c7a 43%, #202936 60%, #0f151d 100%);
  box-shadow: 0 7px 12px rgba(17, 24, 32, 0.22);
  transform: rotate(-10deg);
}

.cable-item__visual::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 8px;
  border-radius: 8px;
  background: #b66a37;
  transform: translateX(36px) rotate(-10deg);
}

.cable-item__visual--photo {
  background: radial-gradient(circle at 48% 35%, #ffffff 0%, #f3f5f7 48%, #d8dde3 100%);
}

.cable-item__visual--photo::before,
.cable-item__visual--photo::after {
  content: none;
}

.cable-item__visual--photo img {
  width: 116%;
  height: 116%;
  object-fit: cover;
  object-position: center 52%;
  transform: rotate(0deg);
}

.photo-rg59-mini {
  background: radial-gradient(circle at 50% 34%, #ffffff 0%, #f6f7f9 54%, #dfe3e8 100%);
}

.photo-rg59-mini img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  object-position: center 42%;
}

.photo-rg59-mini::after {
  content: "RG59 - Mini";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #7a3f85;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  transform: none;
}

.photo-rg59-u-2 img {
  width: 150%;
  height: 96%;
  object-fit: contain;
  object-position: center 84%;
}

.visual-coax::before {
  height: 17px;
  background:
    linear-gradient(90deg, #f9fbfd 0 58%, #d6dce4 58% 63%, #87929f 63% 68%, #f7f9fb 68% 76%, #cfd6df 76% 86%, #f8fafc 86% 95%, #c8783b 95% 100%),
    linear-gradient(180deg, #ffffff, #bfc8d3);
}

.visual-coax::after {
  width: 28px;
  height: 5px;
  background: #c8783b;
  transform: translateX(56px) rotate(-10deg);
}

.visual-energy::before {
  height: 19px;
  background:
    linear-gradient(90deg, #1e7bd6 0 44%, #f3f7fb 44% 53%, #dfe5eb 53% 60%, #c8783b 60% 100%),
    linear-gradient(180deg, #ffffff, #bfc8d3);
}

.visual-energy.visual-v2::before,
.visual-energy.visual-v4::before {
  height: 23px;
  background:
    linear-gradient(90deg, #eef2f6 0 45%, #f2d400 45% 52%, #2b7bd8 52% 59%, #9a2323 59% 66%, #aeb8c4 66% 76%, #c8783b 76% 100%),
    linear-gradient(180deg, #ffffff, #aeb8c4);
}

.visual-energy.visual-fire::before {
  background:
    linear-gradient(90deg, #e32d32 0 58%, #ffffff 58% 66%, #dfe5eb 66% 74%, #c8783b 74% 100%),
    linear-gradient(180deg, #ffffff, #bfc8d3);
}

.visual-data::before,
.visual-control::before,
.visual-communication::before {
  height: 24px;
  background:
    linear-gradient(90deg, #cfd5dd 0 45%, #f7f9fb 45% 50%, #e43d30 50% 53%, #ffffff 53% 56%, #2f81d0 56% 59%, #ffffff 59% 62%, #26a65b 62% 65%, #ffffff 65% 68%, #d77b37 68% 72%, transparent 72% 100%),
    linear-gradient(180deg, #ffffff, #aab4c0);
}

.visual-data::after,
.visual-control::after,
.visual-communication::after {
  width: 58px;
  height: 12px;
  background:
    repeating-linear-gradient(90deg, #e43d30 0 7px, #ffffff 7px 10px, #2f81d0 10px 17px, #ffffff 17px 20px, #26a65b 20px 27px, #ffffff 27px 30px, #d77b37 30px 37px);
  transform: translateX(38px) rotate(-10deg);
}

.visual-shielded::before {
  box-shadow:
    inset 42px 0 0 rgba(255, 255, 255, 0.3),
    inset 58px 0 0 rgba(118, 128, 140, 0.56),
    0 7px 12px rgba(17, 24, 32, 0.22);
}

.visual-security::before {
  height: 24px;
  background:
    linear-gradient(90deg, #d8dee7 0 48%, #ffffff 48% 54%, #e43d30 54% 58%, #f4d000 58% 62%, #111820 62% 66%, #28a45b 66% 70%, transparent 70% 100%),
    linear-gradient(180deg, #ffffff, #adb7c3);
}

.visual-security::after {
  width: 56px;
  height: 10px;
  background: repeating-linear-gradient(90deg, #e43d30 0 8px, #f4d000 8px 16px, #111820 16px 24px, #28a45b 24px 32px);
  transform: translateX(38px) rotate(-10deg);
}

.visual-fire-alarm::before {
  height: 22px;
  background:
    linear-gradient(90deg, #d82027 0 50%, #e9eef4 50% 56%, #f4d000 56% 61%, #d82027 61% 66%, #2f81d0 66% 71%, transparent 71% 100%),
    linear-gradient(180deg, #ff5a5f, #9f1118);
}

.visual-fire-alarm::after {
  background: #d82027;
}

.visual-fire-resistant::before {
  height: 22px;
  background:
    linear-gradient(90deg, #f07a24 0 52%, #ffffff 52% 59%, #8a94a3 59% 66%, #f07a24 66% 73%, #e9eef4 73% 82%, #c8783b 82% 100%),
    linear-gradient(180deg, #ff9a3d, #c25216);
}

.visual-fire-resistant::after {
  background: #f07a24;
}

.visual-audio,
.visual-audio::before {
  border-color: rgba(182, 106, 55, 0.66);
}

.visual-audio::before,
.visual-audio.visual-audio::before {
  height: 20px;
  background:
    linear-gradient(90deg, #111820 0 48%, #242c36 48% 58%, #c8783b 58% 63%, #111820 63% 76%, #e9eef4 76% 90%, #c8783b 90% 100%),
    linear-gradient(180deg, #394250, #080b0f);
}

.visual-audio::after {
  width: 28px;
  height: 5px;
  background: #c8783b;
  transform: translateX(58px) rotate(-10deg);
}

.visual-v2 {
  transform: rotate(3deg);
}

.visual-v3::before {
  transform: rotate(-4deg);
}

.visual-v4::before {
  transform: rotate(-14deg);
}

.visual-v5::before {
  width: 124px;
}

.visual-v6::before {
  width: 108px;
}

.cable-item strong {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #243043;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.cable-item:hover .cable-item__visual {
  border-color: var(--navy);
  box-shadow: 0 18px 38px rgba(18, 52, 86, 0.16);
}

.catalog-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 58px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--copper);
  background: var(--white);
  box-shadow: 0 18px 36px rgba(18, 52, 86, 0.11);
}

.catalog-support h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 19px;
}

.catalog-support p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(17, 24, 32, 0.62);
}

.product-modal[hidden] {
  display: none;
}

.product-modal__panel {
  position: relative;
  width: min(520px, 100%);
  padding: 34px;
  border-top: 5px solid var(--copper);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(17, 24, 32, 0.34);
}

.product-modal__panel h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 32px;
}

.product-modal__panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.product-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}

.modal-specs span {
  padding: 8px 10px;
  color: var(--navy);
  background: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.nav__links .is-current {
  color: var(--orange);
}

.contact-page {
  background: var(--white);
}

.contact-hero {
  padding: 58px 0 54px;
  color: var(--white);
  text-align: center;
  background: var(--navy);
  border-bottom: 4px solid var(--orange);
}

.contact-hero .eyebrow {
  color: var(--orange);
}

.contact-hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
}

.contact-hero p:last-child {
  margin: 0;
  color: #d6dfeb;
  font-size: 16px;
}

.contact-details {
  padding: 74px 0 86px;
}

.factory-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.factory-heading > span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.factory-heading h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 30px;
}

.factory-info {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1.15fr;
  max-width: 1040px;
  margin: 0 auto 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.factory-info__item {
  min-width: 0;
  padding: 26px 28px;
  color: var(--navy);
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease;
}

.factory-info__item:last-child {
  border-right: 0;
}

.factory-info__item:hover {
  color: var(--orange);
  background: var(--soft);
}

.factory-info__label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.factory-info__item strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.55;
}

.factory-map {
  position: relative;
  width: min(100%, 1040px);
  aspect-ratio: 16 / 7;
  min-height: 390px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(16, 43, 70, 0.12);
}

.factory-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.factory-map__consent {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 30px;
  text-align: center;
  background: var(--soft);
}

.factory-map__consent strong {
  color: var(--navy);
  font-size: 21px;
}

.factory-map__consent p {
  margin: 10px 0 20px;
  color: var(--muted);
}

.factory-map.is-loaded .factory-map__consent {
  display: none;
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.legal-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header img {
  width: 180px;
  height: 58px;
  object-fit: contain;
}

.legal-header__inner > a:last-child {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.legal-page {
  min-height: calc(100vh - 88px);
  padding: 64px 0 90px;
  background: var(--soft);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}

.legal-nav {
  position: sticky;
  top: 32px;
  display: grid;
  border: 1px solid var(--line);
  background: var(--white);
}

.legal-nav a {
  padding: 15px 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.legal-nav a:last-child {
  border-bottom: 0;
}

.legal-nav a:hover,
.legal-nav a.is-active {
  color: var(--white);
  background: var(--navy);
}

.legal-content {
  padding: 48px 54px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 32, 0.07);
}

.legal-content h1 {
  margin: 8px 0 6px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 52px);
}

.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--navy);
  font-size: 21px;
}

.legal-content p,
.legal-content li {
  color: #4e5c6e;
  font-size: 15px;
  line-height: 1.8;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.legal-updated {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 13px;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.footer__legal a:hover {
  color: var(--white);
}

.cookie-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: min(560px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 22px;
  color: var(--white);
  background: var(--charcoal);
  border-top: 3px solid var(--copper);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.cookie-panel strong {
  font-size: 16px;
}

.cookie-panel p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-panel p a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-panel__actions {
  display: grid;
  gap: 8px;
}

.cookie-panel .btn {
  min-width: 150px;
  padding: 11px 14px;
  font-size: 12px;
}

.cookie-panel__necessary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background: var(--soft);
}

.error-content {
  width: min(620px, 100%);
  text-align: center;
}

.error-content img {
  width: min(280px, 72vw);
  height: 100px;
  object-fit: contain;
}

.error-content > span {
  display: block;
  margin-top: 36px;
  color: var(--copper);
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
}

.error-content h1 {
  margin: 16px 0 12px;
  color: var(--navy);
  font-size: clamp(32px, 6vw, 52px);
}

.error-content p {
  color: var(--muted);
  font-size: 17px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.error-products {
  color: var(--navy);
  border: 1px solid var(--navy);
  background: transparent;
}

@media (max-width: 900px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

  .nav__inner {
    gap: 6px;
  }

  .menu-toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 76px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .brand {
    width: 218px;
    min-width: 218px;
    margin-left: -4px;
  }

  .brand__logo {
    height: 54px;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 16px 20px;
    border-top: 1px solid var(--line);
  }

  .site-search-toggle {
    display: none;
  }

  .site-search-toggle--mobile {
    width: 42px;
    height: 42px;
    display: inline-grid;
    flex: 0 0 42px;
    margin-left: auto;
    color: var(--navy);
    border: 0;
    background: transparent;
  }

  .nav__links > .language {
    display: none;
  }

  .language--mobile {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .language--mobile + .menu-toggle {
    margin-left: 0;
  }

  .nav-dropdown > a {
    display: flex;
    width: 100%;
    padding: 16px 20px;
    border-top: 1px solid var(--line);
  }

  .nav-dropdown {
    width: 100%;
  }

  .mega-menu {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

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

  .nav-dropdown.is-open .mega-menu,
  .nav-dropdown.is-open:hover .mega-menu,
  .nav-dropdown.is-open:focus-within .mega-menu {
    display: block;
    transform: none;
  }

  .nav-dropdown.closing .mega-menu,
  .nav-dropdown.closing:hover .mega-menu {
    display: none;
  }

  .mega-menu__list {
    width: 100%;
    max-height: none;
    display: block;
    overflow: visible;
    padding-right: 0;
    border-right: 0;
  }

  .mega-menu__list a {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 12px 32px;
    border-top: 1px solid var(--line);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .mega-menu__list a:hover {
    color: var(--navy);
    background: var(--soft);
  }

  .mega-menu__brand {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero__stats,
  .product-grid,
  .cable-grid,
  .split__grid,
  .quality__grid {
    grid-template-columns: 1fr;
  }

  .detail-layout,
  .detail-overview {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

  .detail-image-stage {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .catalog__inner,
  .catalog-support {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .catalog-filter--search {
    grid-column: 1 / -1;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 32px;
  }

  .cable-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .factory-info {
    grid-template-columns: 1fr;
  }

  .factory-info__item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .factory-info__item:last-child {
    border-bottom: 0;
  }

  .factory-map {
    aspect-ratio: 4 / 3;
    min-height: 360px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-panel {
    grid-template-columns: 1fr;
  }

  .cookie-panel__actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .section {
    padding: 62px 0;
  }

  .detail-content {
    padding: 34px 0 58px;
  }

  .detail-image-stage {
    min-height: 280px;
    padding: 20px;
  }

  .detail-summary {
    padding: 28px 22px;
  }

  .detail-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-tab:nth-child(2) {
    border-right: 0;
  }

  .detail-table__row {
    grid-template-columns: 1fr;
  }

  .detail-table__row span {
    padding-bottom: 5px;
  }

  .detail-table__row strong {
    padding-top: 5px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 48px;
    padding-bottom: 42px;
  }

  .footer__bottom .container {
    min-height: 78px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-float::before {
    right: -1px;
    padding: 7px 9px;
    font-size: 11px;
  }

  .whatsapp-float::after {
    right: 17px;
  }

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

  .catalog-filters {
    grid-template-columns: 1fr 46px;
    padding: 16px;
  }

  .catalog-filter,
  .catalog-filter--search {
    grid-column: 1 / -1;
  }

  .catalog-filter-reset {
    grid-column: 2;
  }

  .cable-grid {
    grid-template-columns: 1fr;
  }

  .cable-item__visual {
    width: 138px;
    height: 138px;
  }

  .contact-hero {
    padding: 46px 0 42px;
  }

  .contact-details {
    padding: 52px 0 62px;
  }

  .factory-heading h2 {
    font-size: 25px;
  }

  .factory-info__item {
    padding: 22px 20px;
  }

  .factory-map {
    min-height: 320px;
  }

  .site-search__panel {
    width: calc(100% - 28px);
    max-height: calc(100vh - 28px);
    margin: 14px auto;
    padding: 24px 18px;
  }

  .site-search__head h2 {
    font-size: 25px;
  }

  .site-search__result {
    grid-template-columns: 32px minmax(0, 1fr) 20px;
    gap: 10px;
    padding-inline: 4px;
  }

  .site-search__result-icon {
    width: 30px;
    height: 30px;
    border-width: 6px;
  }

  .legal-header__inner {
    min-height: 76px;
  }

  .legal-header img {
    width: 148px;
    height: 48px;
  }

  .legal-page {
    padding: 34px 0 60px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .legal-content {
    padding: 30px 22px;
  }

  .footer__legal {
    flex-wrap: wrap;
    margin-left: 0;
  }

  .cookie-panel {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .cookie-panel__actions {
    grid-template-columns: 1fr;
  }
}
