@import url("./fonts.css");
:root {
  --red: #df182b;
  --ink: #18191d;
  --muted: #6b6d75;
  --line: #e6e7eb;
  --paper: #f6f7f9;
  --radius: 12px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font:
    16px/1.65 "DM Sans",
    sans-serif;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  object-fit: contain;
}
svg.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  vertical-align: middle;
}
h1,
h2,
h3,
h4 {
  font-family: Manrope, sans-serif;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: 34px;
}
h3 {
  font-size: 21px;
}
p {
  margin: 0 0 22px;
  color: var(--muted);
}
.container {
  width: calc(100% - 64px);
  max-width: 1360px;
  margin: auto;
}
.sr-only,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: -100px;
  background: white;
  padding: 12px;
  z-index: 99;
}
.skip-link:focus {
  top: 0;
}
:focus-visible {
  outline: 3px solid #f06472;
  outline-offset: 4px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 700;
  line-height: 1.5;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-accent {
  background: var(--red);
  color: white;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-white {
  background: white;
  color: var(--ink);
}
.button-outline {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}
.full-width {
  width: 100%;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.text-link:hover {
  color: var(--red);
}
.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--red);
}
.announcement {
  background: var(--ink);
  color: #ddd;
  font-size: 12px;
  padding: 9px 0;
}
.announcement .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.announcement a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.announcement .icon {
  width: 15px;
  height: 15px;
}
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 9px;
}
.header-main {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 105px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font:
    800 25px/1 Manrope,
    sans-serif;
  letter-spacing: -1px;
  white-space: nowrap;
}
.brand-light {
  font-weight: 500;
}
.brand small {
  display: block;
  font: 700 8px/1 sans-serif;
  letter-spacing: 4px;
  margin-top: 8px;
}
.brand-symbol {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  transform: skew(-12deg);
}
.brand-symbol i {
  display: block;
  width: 7px;
  background: var(--red);
  height: 18px;
}
.brand-symbol i:nth-child(2) {
  height: 27px;
}
.brand-symbol i:nth-child(3) {
  height: 36px;
}
.search-form {
  display: flex;
  flex: 1;
  position: relative;
}
.search-form input {
  width: 100%;
  padding: 14px 48px 14px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 14px;
}
.search-form button {
  position: absolute;
  right: 8px;
  top: 8px;
  border: 0;
  background: none;
  padding: 6px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.sales-link {
  display: none;
}
.header-quote {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-quote .icon {
  width: 17px;
}
.cart-link {
  display: flex;
  position: relative;
  padding: 8px;
}
.cart-count {
  position: absolute;
  right: -5px;
  top: -4px;
  min-width: 19px;
  height: 19px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  line-height: 19px;
  text-align: center;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
}
.main-nav {
  border-block: 1px solid var(--line);
}
.nav-inner,
.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}
.nav-inner {
  min-height: 57px;
  font-size: 14px;
  font-weight: 600;
}
.all-products {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-right: 35px;
  border-right: 1px solid var(--line);
}
.all-products .icon {
  color: var(--red);
  width: 19px;
}
.nav-quote {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}
.nav-quote .icon {
  width: 18px;
}
.nav-links a:hover,
.nav-links .active {
  color: var(--red);
}
/* Landing page */
.home-intro {
  padding-top: 25px;
}
.home-breadcrumb {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--muted);
  margin-bottom: 17px;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
}
.hero {
  position: relative;
  border-radius: var(--radius);
  background: #111114;
  color: white;
  overflow: hidden;
  min-width: 0;
}
.landing-slides {
  isolation: isolate;
}
.landing-slide[hidden],
[data-slideshow-controls][hidden] {
  display: none !important;
}
.hero-grid.container {
  width: 100%;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  min-height: 492px;
  margin: 0;
  padding: 0;
}
.hero-copy {
  padding: 42px 0 30px 38px;
  position: relative;
  z-index: 3;
}
.hero-eyebrow {
  color: #ff6b76;
  font-size: 10px;
}
.little-line {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--red);
  vertical-align: middle;
  margin-right: 7px;
}
.hero h1,
.slide-heading {
  font-size: clamp(32px, 3.2vw, 49px);
  letter-spacing: -0.05em;
  line-height: 1.09;
  margin-bottom: 22px;
}
.hero h1 span,
.slide-heading span {
  color: #ff4f62;
}
.hero-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: #b7b8c0;
  max-width: 380px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  align-items: center;
}
.hero-actions .button {
  padding: 12px 17px;
  font-size: 13px;
}
.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}
.hero-secondary .icon {
  width: 15px;
}
.hero-brands {
  margin-top: 30px;
}
.hero-brands > span {
  font-size: 9px;
  color: #9c9da5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-brands > div {
  display: flex;
  gap: 25px;
  margin-top: 8px;
  align-items: center;
}
.mikrotik-word {
  font-size: 22px;
  font-weight: 800;
  font-style: italic;
}
.ubiquiti-word {
  font-size: 17px;
  letter-spacing: 0.03em;
}
.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 30%, #fff, #e6e8ed 75%);
  margin: 16px 16px 16px 20px;
  border-radius: 8px;
  color: var(--ink);
}
.hero-tech-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#afb5c01a 1px, transparent 1px),
    linear-gradient(90deg, #afb5c01a 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.orbit,
.network-dot {
  display: none;
  pointer-events: none;
}
.visual-topline {
  position: absolute;
  top: 22px;
  left: 22px;
  font-size: 9px;
  letter-spacing: 0.13em;
  font-weight: 700;
  color: #737781;
}
.hero-device-orbit {
  position: absolute;
  right: 12%;
  top: 44px;
  width: 62%;
  height: 220px;
}
.hero-device-orbit img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 18px 12px #2020301a);
}
.hero-device-orbit > span {
  display: none;
}
.hero-router {
  position: absolute;
  left: 2%;
  bottom: 72px;
  width: 94%;
  height: 225px;
}
.hero-router img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 15px 10px #2020302a);
}
.hero-product-tag,
.showcase-caption {
  position: absolute;
  bottom: 20px;
  left: 18px;
  right: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px;
  background: #ffffffed;
  border: 1px solid #fff;
  border-radius: 7px;
  box-shadow: 0 7px 20px #00000008;
}
.tag-icon {
  display: flex;
  align-items: center;
  color: var(--red);
}
.hero-product-tag strong,
.showcase-caption strong {
  display: block;
  font-size: 12px;
}
.hero-product-tag span:not(.tag-icon),
.showcase-caption div span {
  display: block;
  font-size: 10px;
  color: var(--muted);
}
.hero-product-tag > a {
  margin-left: auto;
}
.floating-label {
  display: none;
}
.slide-feature-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 25px;
  color: #c4c5cb;
  font-size: 11px;
}
.slide-feature-list .icon {
  width: 15px;
  height: 15px;
  color: #ff6b76;
}
.showcase-wordmark {
  position: absolute;
  top: 23px;
  left: 23px;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: #707580;
}
.showcase-ap {
  position: absolute;
  top: 50px;
  left: 18%;
  width: 65%;
  height: 230px;
  filter: drop-shadow(0 15px 15px #0002);
}
.showcase-gateway {
  position: absolute;
  width: 50%;
  height: 135px;
  bottom: 95px;
  left: 0;
  filter: drop-shadow(0 15px 12px #0002);
}
.showcase-switch {
  position: absolute;
  width: 65%;
  height: 130px;
  bottom: 88px;
  right: -4%;
  filter: drop-shadow(0 15px 12px #0002);
}
.fiber-light-trails {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 40%, #fff6bc, transparent 60%);
  pointer-events: none;
}
.fiber-product-plinth {
  position: absolute;
  inset: 35px 0 95px;
}
.showcase-cable {
  width: 95%;
  height: 90%;
  position: absolute;
  top: 0;
  left: 0;
  filter: drop-shadow(0 15px 8px #0002);
}
.showcase-adapter {
  position: absolute;
  width: 40%;
  height: 40%;
  right: 0;
  bottom: -10px;
  filter: drop-shadow(0 15px 8px #0002);
}
.slideshow-controls.container {
  width: auto;
  margin: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 10;
  border-top: 1px solid #ffffff20;
  padding: 17px 0;
}
.slideshow-selectors,
.slideshow-arrows {
  display: flex;
  gap: 14px;
  align-items: center;
}
.slide-selector {
  display: flex;
  gap: 7px;
  align-items: center;
  background: none;
  color: #8c8d97;
  border: 0;
  padding: 4px 0;
  font-size: 10px;
}
.slide-selector span {
  font-size: 9px;
}
.slide-selector.is-active {
  color: white;
}
.slide-selector.is-active span {
  color: #ff5767;
}
.slideshow-arrows {
  gap: 6px;
}
.slideshow-arrows button {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  background: #ffffff0b;
  color: white;
  border: 1px solid #ffffff25;
  border-radius: 50%;
  padding: 0;
  font-size: 12px;
}
.slideshow-arrows .icon {
  width: 13px;
  height: 13px;
}
.hero-sidebar {
  display: grid;
  grid-template-rows: 1.15fr 1fr;
  gap: 20px;
}
.project-promo {
  padding: 25px;
  background: var(--red);
  border-radius: var(--radius);
  color: white;
  position: relative;
  overflow: hidden;
}
.project-promo .eyebrow {
  color: #ffd7db;
  font-size: 9px;
}
.project-promo h2 {
  font-size: 29px;
  margin-bottom: 13px;
}
.project-promo p {
  color: #ffe2e6;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 19px;
  max-width: 210px;
}
.project-promo .button {
  font-size: 12px;
  padding: 11px 15px;
}
.promo-symbol {
  position: absolute;
  right: 18px;
  top: 23px;
  opacity: 0.45;
}
.promo-symbol .icon {
  width: 30px;
  height: 30px;
}
.promo-footnote {
  display: block;
  font-size: 9px;
  margin-top: 15px;
  color: #ffd7db;
}
.fiber-promo {
  display: block;
  position: relative;
  overflow: hidden;
  background: #f0f1f4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.fiber-promo .eyebrow {
  font-size: 9px;
  margin-bottom: 12px;
}
.fiber-promo h2 {
  font-size: 24px;
  position: relative;
  z-index: 2;
}
.fiber-promo img {
  position: absolute;
  right: -30px;
  bottom: 20px;
  width: 200px;
  height: 125px;
  transform: rotate(-15deg);
}
.fiber-promo .text-link {
  position: absolute;
  bottom: 23px;
  left: 24px;
  font-size: 11px;
  z-index: 2;
}
.fiber-promo .icon {
  width: 15px;
}
.confidence-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  padding-block: 30px;
  gap: 25px;
}
.confidence-bar > div {
  display: flex;
  gap: 13px;
  align-items: center;
}
.confidence-bar .icon {
  color: var(--red);
  width: 25px;
  height: 25px;
}
.confidence-bar strong {
  display: block;
  font-size: 12px;
}
.confidence-bar small {
  display: block;
  font-size: 11px;
  color: var(--muted);
}
.section {
  padding-block: 58px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-bottom: 28px;
}
.section-heading h2 {
  font-size: 30px;
  margin-bottom: 0;
}
.section-heading .text-link {
  font-size: 13px;
  white-space: nowrap;
}
.section-heading .eyebrow {
  font-size: 10px;
  margin-bottom: 12px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 23px;
  background: #fafbfc;
  transition:
    border 0.2s,
    transform 0.2s;
}
.category-card:hover {
  border-color: #f19aa3;
  transform: translateY(-3px);
}
.category-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
}
.category-top .icon {
  width: 20px;
  color: var(--red);
}
.category-card > img {
  width: 100%;
  height: 145px;
  margin: 12px 0 18px;
  mix-blend-mode: multiply;
}
.category-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.category-caption h3 {
  font-size: 17px;
  margin: 0 0 6px;
}
.category-caption p {
  font-size: 11px;
  margin: 0;
}
.category-caption > .icon {
  width: 17px;
}
.featured-section {
  padding-top: 8px;
}
.collection-links {
  display: flex;
  gap: 25px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  margin-bottom: 25px;
  font-size: 12px;
}
.collection-links a {
  padding: 13px 0;
  border-bottom: 2px solid transparent;
}
.collection-links .selected {
  border-color: var(--red);
  color: var(--red);
  font-weight: 700;
}
.collection-links > span {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  background: white;
}
.product-card:hover {
  box-shadow: 0 10px 30px #1318270b;
}
.product-image {
  position: relative;
  display: block;
  background: #f6f7f9;
  padding: 28px;
  height: 225px;
}
.product-image img {
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  transition: transform 0.25s;
}
.product-card:hover img {
  transform: scale(1.04);
}
.product-label {
  position: absolute;
  left: 15px;
  top: 14px;
  background: white;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 700;
}
.product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-brand {
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 800;
  margin-bottom: 9px;
}
.product-body h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.product-specs {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}
.availability {
  font-size: 11px;
  color: var(--muted);
  margin-top: auto;
}
.status-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d59521;
  margin-right: 6px;
}
.in-stock .status-dot {
  background: #20865e;
}
.product-bottom {
  border-top: 1px solid var(--line);
  padding-top: 15px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.price {
  font-weight: 800;
  font-size: 20px;
}
.quote-price {
  font-size: 13px;
  font-weight: 700;
}
.add-button {
  width: 100%;
  border: 1px solid var(--line);
  padding: 10px;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}
.add-button:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.add-button .icon {
  width: 16px;
  height: 16px;
}
.brand-collections {
  padding-top: 5px;
}
.brand-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.brand-panel {
  min-height: 300px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  padding: 32px;
  display: block;
}
.brand-panel > div {
  position: relative;
  z-index: 2;
  max-width: 60%;
}
.brand-panel h2 {
  font-size: 31px;
  max-width: 240px;
  margin-top: 20px;
}
.brand-panel p {
  font-size: 13px;
  max-width: 245px;
}
.brand-panel .text-link {
  font-size: 12px;
}
.brand-panel > img {
  position: absolute;
  width: 50%;
  right: -4%;
  bottom: 25px;
  height: 225px;
  filter: drop-shadow(0 20px 15px #0002);
}
.mikrotik-panel {
  background: #202125;
  color: white;
}
.mikrotik-panel p {
  color: #b8bbc4;
}
.ubiquiti-panel {
  background: #edf0f4;
}
.ubiquiti-panel > img {
  width: 42%;
  right: 0;
  bottom: 30px;
}
.infrastructure-section {
  min-height: 350px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 48px;
}
.infrastructure-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.infrastructure-section:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #121217f2 15%, #121217bf 45%, transparent);
  z-index: -1;
}
.infrastructure-copy {
  max-width: 490px;
  color: white;
}
.infrastructure-copy h2 {
  font-size: 39px;
}
.infrastructure-copy p {
  color: #c7c8ce;
  font-size: 14px;
  max-width: 420px;
}
.infrastructure-copy .button {
  font-size: 13px;
}
.infrastructure-caption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: #ddd;
  font-size: 10px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.step-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.step-card > span {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.step-card > .icon {
  position: absolute;
  right: 28px;
  top: 26px;
  color: var(--red);
}
.step-card h3 {
  font-size: 19px;
  margin-top: 28px;
}
.step-card p {
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}
.project-section {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px 35px;
  background: #fff4f5;
  border: 1px solid #f5d9dd;
  border-radius: var(--radius);
  margin-bottom: 65px;
}
.project-section h2 {
  font-size: 27px;
  margin-bottom: 8px;
}
.project-section .eyebrow {
  font-size: 9px;
  margin-bottom: 9px;
}
.project-section p {
  font-size: 13px;
  margin: 0;
}
.project-icon {
  display: grid;
  place-items: center;
  background: white;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  color: var(--red);
  flex-shrink: 0;
}
.project-icon .icon {
  width: 28px;
  height: 28px;
}
.project-section .button {
  margin-left: auto;
  font-size: 13px;
  white-space: nowrap;
}
/* Catalog and customer pages */
.page-content {
  padding-block: 35px 75px;
  min-height: 500px;
}
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 30px;
}
.breadcrumb .icon {
  width: 13px;
  height: 13px;
}
.page-heading {
  margin-bottom: 35px;
  max-width: 850px;
}
.page-heading h1 {
  font-size: 43px;
}
.page-heading p {
  font-size: 17px;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 35px;
}
.filters {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 23px;
}
.filters h2 {
  font-size: 20px;
}
.filters label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin: 18px 0 7px;
}
input:not([type="checkbox"]):not([type="hidden"]),
select,
textarea {
  max-width: 100%;
  border: 1px solid #dfe1e6;
  border-radius: 6px;
  padding: 12px 14px;
  background: white;
  color: var(--ink);
}
textarea {
  resize: vertical;
  min-height: 140px;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
}
.filters input,
.filters select {
  width: 100%;
  font-size: 14px;
}
.filters .button {
  font-size: 13px;
  margin-top: 20px;
}
.help-box {
  padding: 23px 0 0;
  margin-top: 25px;
  border-top: 1px solid var(--line);
}
.help-box h3 {
  font-size: 17px;
}
.help-box p,
.help-box a {
  font-size: 13px;
}
.help-box .icon {
  color: var(--red);
  margin-bottom: 14px;
}
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  font-size: 13px;
  gap: 15px;
  color: var(--muted);
}
.catalog-toolbar select {
  font-size: 13px;
  padding: 8px;
}
.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.catalog-grid .product-image {
  height: 210px;
}
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
}
.detail-image {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 55px;
  display: grid;
  place-items: center;
  max-height: 560px;
}
.detail-image img {
  max-height: 450px;
  width: 100%;
  mix-blend-mode: multiply;
}
.detail-copy h1 {
  font-size: 40px;
}
.detail-copy h2 {
  font-size: 21px;
}
.sku {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 25px;
}
.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0;
}
.spec-tags span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 12px;
}
.detail-price {
  font-size: 26px;
  font-weight: 800;
  margin: 25px 0;
}
.detail-price small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
.detail-add {
  display: flex;
  align-items: end;
  gap: 15px;
}
.detail-add label {
  font-size: 12px;
  font-weight: 700;
}
.detail-add input {
  display: block;
  width: 85px;
  margin-top: 6px;
}
.detail-add .button {
  flex: 1;
}
.small-note {
  font-size: 12px;
  margin-top: 18px;
}
.detail-help {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 14px;
}
.detail-help .icon {
  color: var(--red);
  margin-right: 10px;
}
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 35px;
}
.cart-item {
  display: flex;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
}
.cart-item > a img {
  width: 100px;
  height: 100px;
  background: var(--paper);
  padding: 10px;
  border-radius: 8px;
}
.cart-item > div {
  flex: 1;
}
.cart-item .eyebrow {
  font-size: 10px;
  margin-bottom: 8px;
}
.cart-item h2 {
  font-size: 20px;
  margin-bottom: 8px;
}
.cart-item p {
  font-size: 12px;
  margin-bottom: 8px;
}
.cart-item strong {
  font-size: 13px;
}
.quantity-label {
  font-size: 11px;
}
.quantity-label input {
  display: block;
  width: 80px;
}
.remove-button {
  border: 0;
  background: none;
  color: var(--muted);
}
.cart-controls {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 25px;
}
.summary {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  align-self: start;
}
.summary h2 {
  font-size: 24px;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.summary p {
  font-size: 13px;
  margin-top: 20px;
}
.secure-note {
  display: flex;
  gap: 10px;
  font-size: 12px;
  margin-top: 18px;
  color: var(--muted);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
}
.contact-intro h1 {
  font-size: 49px;
}
.contact-intro h1 em {
  color: var(--red);
  font-style: normal;
}
.contact-reasons {
  display: grid;
  gap: 25px;
  margin: 35px 0;
}
.contact-reasons > div {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}
.contact-reasons .icon {
  color: var(--red);
}
.contact-reasons strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-note {
  background: var(--paper);
  border-radius: 8px;
  padding: 20px;
  font-size: 13px;
}
.contact-form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 12px 40px #18191d05;
}
.contact-form-panel h2 {
  font-size: 25px;
}
.contact-form-panel > p {
  font-size: 14px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid label {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.form-grid label input,
.form-grid label select,
.form-grid label textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  font-size: 16px;
}
.form-grid .full-width {
  grid-column: 1/-1;
}
.checkbox-label {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  margin: 22px 0;
  color: var(--muted);
}
.checkbox-label input {
  margin-top: 6px;
}
.checkbox-label a {
  text-decoration: underline;
}
.request-items {
  background: var(--paper);
  border-radius: 6px;
  padding: 18px;
  font-size: 13px;
  margin-bottom: 25px;
}
.request-items > strong {
  display: block;
}
.request-items > a {
  color: var(--red);
}
.request-items > span {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.empty-state,
.success-state {
  max-width: 680px;
  text-align: center;
  margin: 50px auto;
  padding: 30px;
}
.empty-state > .icon,
.success-icon {
  width: 65px;
  height: 65px;
  color: var(--red);
  margin-bottom: 20px;
}
.success-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  background: #fff0f2;
  border-radius: 50%;
}
.empty-state h1,
.success-state h1 {
  font-size: 38px;
}
.reference-box {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  margin: 25px 0;
}
.reference-box strong {
  display: block;
  font-size: 24px;
}
.about-hero {
  max-width: 850px;
  padding: 30px 0;
}
.about-hero h1 {
  font-size: 53px;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 35px;
}
.about-grid article {
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: var(--radius);
}
.about-grid .icon {
  color: var(--red);
  margin-bottom: 20px;
}
.about-grid p {
  font-size: 14px;
}
.prose {
  max-width: 850px;
}
.prose h2 {
  font-size: 25px;
  margin-top: 35px;
}
.flash {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background: #edf7f0;
  border: 1px solid #cde5d5;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 14px;
}
.flash > span {
  flex: 1;
}
.flash > a {
  font-weight: 700;
}
.flash > button {
  border: 0;
  background: none;
}
.error-box {
  padding: 18px;
  background: #fff0f1;
  border: 1px solid #f4bac1;
  border-radius: 8px;
  color: #a51929;
  margin-bottom: 25px;
  font-size: 14px;
}
/* Staff dashboard */
.admin-page .page-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.admin-page .page-heading h1 {
  font-size: 36px;
}
.admin-tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.admin-tabs a {
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
}
.admin-tabs .selected {
  background: var(--ink);
  color: white;
}
.admin-editor {
  max-width: 900px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 30px;
}
.admin-editor h2 {
  font-size: 25px;
}
.admin-editor .button {
  margin-top: 20px;
}
.table-scroll {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 9px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
th,
td {
  text-align: left;
  padding: 17px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
th {
  background: var(--paper);
  font-size: 12px;
}
td small {
  display: block;
  color: var(--muted);
}
td a {
  color: var(--red);
  font-weight: 600;
}
td .button {
  font-size: 12px;
  padding: 7px 12px;
}
.upload-panel {
  padding: 20px;
  background: var(--paper);
  border-radius: 8px;
  margin-top: 20px;
}
.upload-panel summary {
  cursor: pointer;
}
.count-pill,
.badge {
  display: inline-block;
  padding: 3px 9px;
  background: var(--paper);
  border-radius: 4px;
  font-size: 11px;
}
.muted {
  color: var(--muted);
}
.request-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 15px;
}
.request-card summary {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  cursor: pointer;
  padding: 20px;
}
.request-card summary strong,
.request-card summary small {
  display: block;
}
.request-card summary small {
  color: var(--muted);
}
.request-body {
  border-top: 1px solid var(--line);
  padding: 25px;
}
.request-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}
.preserve-lines {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.status-form {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
.page-login .contact-form-panel {
  max-width: 460px;
  margin: 35px auto;
}
.page-login .form-grid {
  grid-template-columns: 1fr;
}
.page-login .contact-form-panel label {
  display: block;
}
.page-login .contact-form-panel input {
  display: block;
  width: 100%;
  margin: 6px 0 20px;
}
/* Footer */
.site-footer {
  background: #17181c;
  color: #c1c2ca;
  padding-top: 55px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 45px;
}
.site-footer .brand {
  color: white;
  font-size: 23px;
  margin-bottom: 24px;
}
.footer-about p,
.footer-cta p {
  font-size: 12px;
  color: #90939e;
  line-height: 1.9;
}
.country {
  font-size: 11px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-grid h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0;
  color: white;
  margin-bottom: 20px;
}
.footer-grid > div > a:not(.brand) {
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
}
.footer-grid > div > a:hover {
  color: white;
}
.footer-contact {
  color: white !important;
  display: flex !important;
  justify-content: space-between;
  border-bottom: 1px solid #45464c;
  padding-bottom: 12px;
}
.footer-contact .icon {
  width: 17px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 23px;
  border-top: 1px solid #ffffff15;
  font-size: 10px;
  color: #878b97;
}
@media (min-width: 1600px) {
  .hero h1,
  .slide-heading {
    font-size: 52px;
  }
  .hero-grid.container {
    min-height: 515px;
  }
}
@media (max-width: 1180px) {
  .header-main {
    gap: 25px;
  }
  .header-quote {
    display: none;
  }
  .nav-inner,
  .nav-links {
    gap: 23px;
  }
  .nav-quote {
    display: none;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-sidebar {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .project-promo {
    padding: 28px;
  }
  .project-promo h2 {
    font-size: 30px;
  }
  .project-promo h2 br {
    display: none;
  }
  .project-promo p {
    max-width: 360px;
  }
  .fiber-promo h2 {
    font-size: 31px;
  }
  .fiber-promo img {
    width: 270px;
    height: 180px;
    right: 5%;
    bottom: 20px;
  }
  .hero-grid.container {
    min-height: 460px;
  }
  .hero-copy {
    padding: 42px;
  }
  .hero h1,
  .slide-heading {
    font-size: 49px;
  }
  .hero-visual {
    margin-left: 0;
  }
  .confidence-bar {
    gap: 15px;
  }
  .confidence-bar strong {
    font-size: 11px;
  }
  .confidence-bar small {
    font-size: 10px;
  }
  .product-body {
    padding: 18px;
  }
  .product-grid {
    gap: 16px;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-layout {
    gap: 40px;
  }
  .footer-grid {
    gap: 25px;
  }
  .brand-panel h2 {
    font-size: 26px;
  }
  .brand-panel p {
    max-width: 200px;
  }
}
@media (max-width: 800px) {
  .container {
    width: calc(100% - 40px);
  }
  .announcement a {
    display: none;
  }
  .announcement .container {
    justify-content: center;
    font-size: 10px;
  }
  .header-main {
    flex-wrap: wrap;
    padding-block: 20px;
    gap: 20px;
    min-height: 0;
  }
  .brand {
    font-size: 23px;
  }
  .header-actions {
    margin-left: auto;
    gap: 20px;
  }
  .search-form {
    order: 3;
    flex-basis: 100%;
  }
  .search-form input {
    font-size: 16px !important;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
  }
  .main-nav.is-open {
    display: block;
  }
  .nav-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding-block: 10px;
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links a,
  .all-products {
    padding: 13px 0;
    border: 0;
  }
  .home-breadcrumb > span:last-child {
    display: none;
  }
  .hero-grid.container {
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
  }
  .hero-copy {
    padding: 32px 5px 30px 26px;
  }
  .hero h1,
  .slide-heading {
    font-size: 38px;
  }
  .hero-copy p {
    font-size: 14px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-visual {
    margin: 14px;
  }
  .hero-brands > div {
    gap: 16px;
  }
  .hero-product-tag,
  .showcase-caption {
    left: 10px;
    right: 10px;
    bottom: 12px;
    padding: 10px;
  }
  .hero-product-tag .tag-icon,
  .showcase-caption .tag-icon {
    display: none;
  }
  .slideshow-controls.container {
    margin-inline: 20px;
  }
  .confidence-bar {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .confidence-bar strong {
    font-size: 12px;
  }
  .confidence-bar small {
    font-size: 11px;
  }
  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section {
    padding-block: 40px;
  }
  .section-heading h2 {
    font-size: 26px;
  }
  .category-card > img {
    height: 160px;
  }
  .collection-links {
    gap: 22px;
    overflow-x: auto;
    white-space: nowrap;
  }
  .collection-links > span {
    display: none;
  }
  .brand-panels {
    grid-template-columns: 1fr;
  }
  .brand-panel > div {
    max-width: 55%;
  }
  .brand-panel h2 {
    font-size: 32px;
  }
  .brand-panel p {
    max-width: 270px;
  }
  .brand-panel > img {
    width: 45%;
    right: 0;
  }
  .ubiquiti-panel > img {
    width: 35%;
    right: 5%;
  }
  .infrastructure-section {
    padding: 35px;
  }
  .infrastructure-caption {
    display: none;
  }
  .steps-grid {
    gap: 15px;
  }
  .step-card {
    padding: 20px;
  }
  .step-card > .icon {
    right: 20px;
    top: 20px;
  }
  .step-card h3 {
    font-size: 17px;
  }
  .project-section {
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px;
  }
  .project-section .button {
    margin-left: 85px;
  }
  .project-section h2 {
    font-size: 24px;
  }
  .project-section > div:not(.project-icon) {
    flex: 1;
  }
  .catalog-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 20px;
  }
  .filters {
    padding: 16px;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .product-detail {
    gap: 30px;
  }
  .detail-image {
    padding: 20px;
    max-height: 420px;
  }
  .detail-copy h1 {
    font-size: 31px;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-intro {
    max-width: 650px;
  }
  .contact-intro h1 {
    font-size: 42px;
  }
  .contact-reasons {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .contact-reasons > div {
    flex-direction: column;
    font-size: 12px;
  }
  .contact-note {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: start;
  }
  .footer-bottom span:nth-child(2) {
    order: 3;
    width: 100%;
  }
  .footer-bottom a {
    margin-left: auto;
  }
  .admin-page .page-heading {
    align-items: start;
  }
  .admin-page .page-heading h1 {
    font-size: 30px;
  }
}
@media (max-width: 540px) {
  body {
    font-size: 16px;
  }
  .container {
    width: calc(100% - 32px);
  }
  .announcement {
    font-size: 9px;
  }
  .announcement .container {
    font-size: 9px;
    white-space: nowrap;
    width: 100%;
  }
  .header-main {
    padding-block: 19px;
  }
  .brand {
    font-size: 21px;
  }
  .brand-symbol {
    gap: 3px;
  }
  .brand-symbol i {
    width: 6px;
  }
  .header-actions {
    gap: 16px;
  }
  .header-main .search-form input {
    padding: 12px 42px 12px 13px;
    font-size: 14px !important;
  }
  .home-intro {
    padding-top: 19px;
  }
  .home-breadcrumb {
    font-size: 9px;
    margin-bottom: 13px;
  }
  .hero-grid.container {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    padding: 30px 25px 23px;
  }
  .hero h1,
  .slide-heading {
    font-size: 43px;
    max-width: 310px;
    min-height: 141px;
  }
  .hero-copy p {
    font-size: 15px;
    line-height: 1.7;
    min-height: 77px;
    margin-bottom: 22px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 12px 16px;
  }
  .hero-secondary {
    font-size: 11px;
  }
  .hero-brands {
    margin-top: 23px;
    min-height: 47px;
  }
  .hero-visual {
    height: 300px;
    margin: 0 14px 15px;
  }
  .hero-device-orbit {
    top: 20px;
    width: 55%;
    height: 170px;
    right: 10%;
  }
  .hero-router {
    bottom: 45px;
    width: 75%;
    height: 175px;
    left: 3%;
  }
  .visual-topline {
    top: 18px;
    left: 18px;
    font-size: 8px;
  }
  .hero-product-tag,
  .showcase-caption {
    padding: 11px 14px;
  }
  .hero-product-tag strong,
  .showcase-caption strong {
    font-size: 12px;
  }
  .hero-product-tag .tag-icon,
  .showcase-caption .tag-icon {
    display: flex;
  }
  .showcase-ap {
    top: 30px;
    height: 175px;
    width: 52%;
    left: 30%;
  }
  .showcase-gateway {
    bottom: 57px;
    height: 105px;
    width: 45%;
    left: 5%;
  }
  .showcase-switch {
    bottom: 50px;
    height: 110px;
    width: 60%;
    right: 0;
  }
  .fiber-product-plinth {
    inset: 20px 0 55px;
  }
  .showcase-cable {
    width: 85%;
    left: 5%;
  }
  .showcase-adapter {
    width: 33%;
    right: 8%;
  }
  .showcase-wordmark {
    top: 16px;
    left: 16px;
    font-size: 9px;
  }
  .slide-feature-list {
    margin-top: 23px;
    min-height: 47px;
    font-size: 10px;
    gap: 9px;
    align-content: center;
  }
  .slideshow-controls.container {
    margin: 0 16px;
    gap: 8px;
    padding: 13px 0;
  }
  .slideshow-selectors {
    gap: 12px;
  }
  .slide-selector {
    font-size: 9px;
    gap: 4px;
  }
  .slide-selector span {
    display: none;
  }
  .slideshow-arrows {
    gap: 5px;
  }
  .slideshow-arrows button {
    width: 26px;
    height: 26px;
  }
  .hero-sidebar {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .project-promo {
    padding: 25px;
  }
  .project-promo h2 {
    font-size: 29px;
  }
  .project-promo p {
    max-width: 280px;
    font-size: 14px;
  }
  .project-promo .button {
    font-size: 13px;
  }
  .promo-footnote {
    font-size: 10px;
  }
  .fiber-promo {
    min-height: 230px;
    padding: 25px;
  }
  .fiber-promo h2 {
    font-size: 27px;
  }
  .fiber-promo img {
    width: 220px;
    height: 150px;
    right: -10px;
    bottom: 20px;
  }
  .confidence-bar {
    padding-block: 25px;
    gap: 23px 15px;
  }
  .confidence-bar > div {
    align-items: start;
    gap: 10px;
  }
  .confidence-bar .icon {
    width: 20px;
    height: 20px;
  }
  .confidence-bar strong {
    font-size: 11px;
    line-height: 1.5;
  }
  .confidence-bar small {
    font-size: 10px;
    line-height: 1.5;
    margin-top: 3px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 22px;
  }
  .section-heading h2 {
    font-size: 28px;
  }
  .section-heading .text-link {
    font-size: 12px;
  }
  .category-grid {
    gap: 12px;
  }
  .category-card {
    padding: 15px;
  }
  .category-card > img {
    height: 110px;
    margin-block: 15px;
  }
  .category-top {
    font-size: 9px;
  }
  .category-top .icon {
    width: 17px;
  }
  .category-caption h3 {
    font-size: 15px;
  }
  .category-caption p {
    font-size: 10px;
  }
  .category-caption > .icon {
    display: none;
  }
  .product-grid {
    gap: 12px;
  }
  .product-image {
    height: 155px;
    padding: 22px 15px;
  }
  .product-label {
    left: 10px;
    top: 10px;
    font-size: 8px;
    padding: 2px 5px;
  }
  .product-body {
    padding: 15px 12px;
  }
  .product-brand {
    font-size: 9px;
  }
  .product-body h3 {
    font-size: 16px;
    line-height: 1.35;
  }
  .product-specs {
    font-size: 11px;
    line-height: 1.65;
  }
  .availability {
    font-size: 10px;
  }
  .product-bottom {
    gap: 12px;
  }
  .quote-price {
    font-size: 11px;
  }
  .add-button {
    font-size: 11px;
    padding: 9px 5px;
    gap: 4px;
  }
  .price {
    font-size: 17px;
  }
  .collection-links {
    font-size: 11px;
    gap: 21px;
  }
  .brand-panel {
    padding: 25px;
    min-height: 320px;
  }
  .brand-panel h2 {
    font-size: 28px;
  }
  .brand-panel p {
    font-size: 12px;
    max-width: 175px;
  }
  .brand-panel > div {
    max-width: 65%;
  }
  .brand-panel > img {
    width: 48%;
    right: -10%;
    bottom: 10px;
    height: 210px;
  }
  .ubiquiti-panel > img {
    width: 44%;
    right: -5%;
    bottom: 45px;
  }
  .brand-panel .text-link {
    font-size: 11px;
  }
  .infrastructure-section {
    padding: 30px 25px;
    min-height: 400px;
  }
  .infrastructure-copy h2 {
    font-size: 35px;
  }
  .infrastructure-copy p {
    font-size: 14px;
  }
  .infrastructure-section:after {
    background: linear-gradient(90deg, #121217f2, #121217ad);
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-card {
    padding: 25px;
  }
  .step-card h3 {
    font-size: 21px;
    margin-top: 22px;
  }
  .step-card p {
    font-size: 14px;
  }
  .project-section {
    margin-bottom: 40px;
    display: block;
    padding: 25px;
  }
  .project-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }
  .project-section h2 {
    font-size: 28px;
  }
  .project-section p {
    font-size: 14px;
  }
  .project-section .button {
    margin: 23px 0 0;
  }
  .page-content {
    padding-block: 25px 45px;
  }
  .page-heading h1 {
    font-size: 35px;
  }
  .page-heading p {
    font-size: 16px;
  }
  .breadcrumb {
    font-size: 11px;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .filters {
    padding: 20px;
  }
  .filters form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .filters form > h2 {
    grid-column: 1/-1;
  }
  .filters label {
    margin-top: 0;
  }
  .filters form > .button {
    margin: 0;
    grid-column: 1/-1;
  }
  .help-box {
    display: none;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-grid .product-image {
    height: 155px;
  }
  .catalog-toolbar {
    font-size: 12px;
  }
  .catalog-toolbar select {
    max-width: 170px;
    font-size: 12px;
  }
  .product-detail {
    grid-template-columns: 1fr;
  }
  .detail-image {
    height: 330px;
    padding: 35px;
  }
  .detail-image img {
    height: 270px;
  }
  .detail-copy h1 {
    font-size: 35px;
  }
  .detail-add .button {
    font-size: 14px;
  }
  .cart-item {
    gap: 12px;
    flex-wrap: wrap;
  }
  .cart-item > a img {
    width: 75px;
    height: 85px;
  }
  .cart-item > div {
    flex-basis: calc(100% - 100px);
  }
  .cart-item h2 {
    font-size: 18px;
  }
  .quantity-label {
    margin-left: 87px;
  }
  .quantity-label input {
    width: 85px;
  }
  .cart-controls {
    flex-direction: column;
    font-size: 13px;
  }
  .cart-controls .button {
    width: 100%;
  }
  .contact-intro h1 {
    font-size: 40px;
  }
  .contact-reasons {
    grid-template-columns: 1fr;
    margin: 25px 0;
  }
  .contact-reasons > div {
    flex-direction: row;
    font-size: 14px;
  }
  .contact-form-panel {
    padding: 23px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .form-grid .full-width {
    grid-column: auto;
  }
  .about-hero h1 {
    font-size: 40px;
  }
  .about-grid article {
    padding: 25px;
  }
  .empty-state,
  .success-state {
    padding: 15px;
    margin: 30px auto;
  }
  .empty-state h1,
  .success-state h1 {
    font-size: 32px;
  }
  .flash {
    font-size: 12px;
    padding: 13px;
    gap: 10px;
  }
  .flash > a {
    white-space: nowrap;
  }
  .footer-grid {
    gap: 30px 20px;
  }
  .footer-about,
  .footer-cta {
    grid-column: 1/-1;
  }
  .footer-grid h3 {
    font-size: 13px;
  }
  .footer-grid > div > a:not(.brand) {
    font-size: 12px;
  }
  .footer-about p,
  .footer-cta p {
    font-size: 13px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-bottom {
    font-size: 10px;
  }
  .admin-page .page-heading {
    display: block;
  }
  .admin-page .page-heading h1 {
    font-size: 32px;
  }
  .admin-editor {
    padding: 20px;
  }
  .request-card summary {
    flex-wrap: wrap;
    font-size: 13px;
    gap: 10px;
  }
  .request-body {
    padding: 18px;
  }
  .status-form {
    flex-wrap: wrap;
  }
  .prose h1 {
    font-size: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
.product-availability {
  font-size: 11px;
  color: var(--muted);
  margin-top: auto;
}
.status-dot.in-stock {
  background: #20865e;
}
.product-price {
  font-weight: 800;
}
.reset-link {
  display: block;
  font-size: 12px;
  text-align: center;
  margin-top: 12px;
}
.filters .button {
  width: 100%;
}
@media (max-width: 540px) {
  .filters form {
    display: block;
  }
  .filters label {
    margin: 15px 0 6px;
  }
  .filters form > .button {
    margin-top: 20px;
  }
  .product-availability {
    font-size: 10px;
  }
}
.home-breadcrumb > span:first-child {
  display: flex;
  align-items: center;
}
.step-card > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.step-card > div .icon {
  color: var(--red);
}
.hero {
  display: flex;
  flex-direction: column;
}
.landing-slides {
  flex: 1;
}
.hero-grid.container {
  min-height: 560px;
}
.slideshow-controls {
  flex-shrink: 0;
}
.showcase-cable {
  height: 65%;
  top: 50px;
  left: 0;
}
.showcase-adapter {
  height: 29%;
  bottom: 85px;
  right: 0;
}
.slideshow-arrows [data-slide-previous] .icon {
  transform: rotate(180deg);
}
.login-panel {
  max-width: 480px;
  margin: 30px auto;
  border: 1px solid var(--line);
  padding: 35px;
  border-radius: 12px;
}
.login-panel h1 {
  font-size: 36px;
}
.login-panel label,
.contact-form-panel form > label:not(.checkbox-label),
.admin-editor form > label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-top: 20px;
}
.login-panel input,
.contact-form-panel form > label textarea,
.admin-editor form > label input,
.admin-editor form > label textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
}
.login-panel button {
  margin-top: 25px;
}
.form-grid label.checkbox-label {
  display: flex;
  align-items: center;
  font-weight: 400;
}
.form-grid label.checkbox-label input {
  width: auto;
  margin: 0;
}
.hero-router {
  filter: drop-shadow(0 15px 10px #2020302a);
}
@media (max-width: 1180px) {
  .hero-grid.container {
    min-height: 460px;
  }
}
@media (max-width: 540px) {
  .hero-grid.container {
    min-height: 0;
  }
  .showcase-cable {
    height: 65%;
    top: 35px;
    left: 0;
    width: 85%;
  }
  .showcase-adapter {
    height: 30%;
    bottom: 60px;
    right: 0;
  }
  .login-panel {
    padding: 25px;
  }
  .step-card > div {
    margin-bottom: 18px;
  }
}
input,select,textarea{font-weight:400}.contact-form-panel textarea{font-size:16px}

/* Full red-and-black storefront theme. */
:root {
  color-scheme: dark;
  --red: #ff4055;
  --ink: #f6f3f4;
  --muted: #b7acb0;
  --line: #3b252c;
  --paper: #201317;
}
body {
  background: #100c0e;
  background-image: radial-gradient(ellipse at 10% 0, #62132430, transparent 45%);
  color: var(--ink);
}
.announcement, .site-header, .main-nav { background: #140d10; }
.announcement { border-bottom: 1px solid #6d1828; }
.announcement, .announcement a { color: #e4cbd1; }
.site-header { border-bottom: 1px solid #411b25; }
.search-form input,
input:not([type=checkbox]):not([type=hidden]),
select, textarea { background: #1d1216; color: #f6f3f4; border-color: #51303b; }
input::placeholder, textarea::placeholder { color: #b4a4aa; opacity: 1; }
input[type=checkbox] { accent-color: #ef203a; }
.search-form button, .menu-toggle { color: #f7eaed; }
.button-accent, .button-dark, .button-white, .cart-count {
  background: #d91631; color: #fff; border-color: #ef2944;
}
.button-accent:hover, .button-dark:hover, .button-white:hover { background: #f02743; }
.button-outline { background: #25151b; color: #fff; border-color: #70404d; }
.button-outline:hover { background: #4b1523; }
.button-white { background: #120c0f; border-color: #581323; }
.hero { background: #100c0e; border: 1px solid #53212d; }
.hero-visual {
  background: radial-gradient(ellipse at 50% 35%, #6d2637, #2c1019 75%);
  color: #fff;
}
.hero-tech-grid { background-image: linear-gradient(#ff829415 1px, transparent 1px), linear-gradient(90deg, #ff829415 1px, transparent 1px); }
.visual-topline, .showcase-wordmark { color: #e5b2bd; }
.hero-product-tag, .showcase-caption {
  background: #170c12ed; border-color: #753143; color: #fff;
}
.hero-product-tag span:not(.tag-icon), .showcase-caption div span { color: #d3b9c1; }
.fiber-light-trails { background: radial-gradient(ellipse at 40% 40%, #d72a4a50, transparent 65%); }
.project-promo { background: linear-gradient(135deg, #d91835, #8b0c23); }
.project-promo .button { background: #170c10; color: #fff; }
.fiber-promo, .category-card, .product-card, .filters,
.contact-form-panel, .login-panel, .admin-editor, .step-card,
.about-grid article, .request-card { background: #1a1014; border-color: #48232f; }
.fiber-promo { background: linear-gradient(145deg, #3d1320, #1b0e14); }
.product-image, .detail-image {
  background: radial-gradient(ellipse at center, #703243, #32151f);
}
.product-image img, .category-card>img, .detail-image img { mix-blend-mode: normal; }
.category-card { background: linear-gradient(155deg, #2a131c, #180f13); }
.category-card:hover, .product-card:hover { border-color: #bb2945; box-shadow: 0 10px 30px #0004; }
.product-label { background: #180c12; color: #f6ced7; border: 1px solid #733145; }
.add-button { background: #39121e; color: #fff; border-color: #752338; }
.add-button:hover { background: #d91631; border-color: #ff4055; }
.mikrotik-panel { background: linear-gradient(135deg, #1f0e15, #3c1020); border: 1px solid #682238; }
.ubiquiti-panel { background: linear-gradient(135deg, #7c1129, #260e18); color: #fff; border: 1px solid #a12744; }
.brand-panel p { color: #d0b8c1; }
.project-section { background: linear-gradient(110deg, #4b1022, #210e16); border-color: #8b2440; }
.project-icon { background: #200d15; color: #ff637b; }
.summary, .reference-box, .contact-note, .request-items, .upload-panel { background: #24121b; border-color: #613044; }
.cart-item>a img { background: #5a283a; }
.flash { background: #321320; border-color: #8b2d48; color: #fff; }
.error-box { background: #4a1222; border-color: #bd3758; color: #ffe1e8; }
.success-icon { background: #411125; color: #ff6e89; }
.admin-tabs .selected { background: #c71839; color: #fff; }
th, .count-pill, .badge { background: #361320; color: #f8dce4; }
.site-footer { background: #10090d; border-top: 1px solid #582134; }
.site-footer p, .footer-bottom { color: #b7a2ab; }
.site-footer h3 { color: #fff; }
.footer-contact { border-color: #723147; }
.skip-link { background: #bf1636; color: #fff; }
::selection { background: #aa1838; color: #fff; }
