:root {
  --ink: #111318;
  --muted: #666d78;
  --line: #dfe4ea;
  --panel: #f5f7fa;
  --white: #ffffff;
  --accent: #0b7cff;
  --accent-dark: #0057bd;
  --dark: #080b12;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

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

.topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding: 8px clamp(16px, 5vw, 72px);
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.social-links {
  display: flex;
  gap: 8px;
  margin-right: auto;
}

.social-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.social-icon img {
  display: block;
  width: 15px;
  height: 15px;
  filter: invert(1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(16px, 5vw, 72px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 148px;
  height: 54px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.nav-links {
  font-size: 15px;
  font-weight: 700;
}

.nav-links > a.active:not(.nav-icon-link),
.nav-links > a:hover:not(.nav-icon-link) {
  color: var(--accent);
}

.nav-cta {
  color: var(--accent);
}

.nav-icon-link {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.nav-count-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  color: var(--white);
  background: var(--accent);
  border: 2px solid var(--white);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
}

.nav-icon-link.active .nav-count-badge,
.nav-icon-link:hover .nav-count-badge {
  background: var(--ink);
}

.nav-icon-link.active,
.nav-icon-link:hover {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.notepad-icon {
  position: relative;
  width: 18px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.notepad-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 5px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
}

.notepad-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 3px;
  right: 3px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 2px 2px 0 0;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.cart-icon {
  position: relative;
  width: 19px;
  height: 15px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 4px 4px;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -7px;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(-20deg);
  transform-origin: right center;
}

.cart-icon::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: -7px;
  height: 4px;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
  border-radius: 50%;
}

.cart-link #nav-cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  color: var(--white);
  background: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 7, 12, 0.9), rgba(4, 7, 12, 0.58), rgba(4, 7, 12, 0.18));
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 32px));
  margin-left: clamp(16px, 5vw, 72px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  color: #e5e9f0;
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions,
.chip-group {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4px;
  gap: 8px;
}

.button,
.add-item,
.condition-chip,
.sales-chip,
.type-chip,
.chip {
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.button.primary {
  color: var(--white);
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.button.secondary.dark {
  color: var(--ink);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.trust-band div,
.location-grid div {
  padding: 26px clamp(16px, 4vw, 36px);
  border-right: 1px solid var(--line);
}

.trust-band strong,
.location-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 26px;
}

.trust-band span,
.location-grid span,
.section-heading p,
.product-body p,
.service-grid p,
.quote-section p,
.footer span {
  color: var(--muted);
  line-height: 1.6;
}

.section,
.quote-section {
  padding: clamp(54px, 8vw, 96px) clamp(16px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 24px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label,
.filter-label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  background: var(--white);
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.chip,
.condition-chip,
.sales-chip,
.type-chip {
  padding: 7px 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.2;
}

.chip.active,
.condition-chip.active,
.sales-chip.active,
.type-chip.active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.quote-panel {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

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

.brands-page,
.contact-page,
.news-page {
  background: var(--panel);
}

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

.brand-card,
.news-card {
  min-height: 210px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-card span,
.news-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--accent-dark);
  background: #eaf3ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-card h2,
.news-card h2 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.6vw, 34px);
}

.brand-card p,
.news-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: start;
}

.contact-card {
  position: sticky;
  top: 112px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-list a {
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
}

.contact-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-media {
  display: grid;
  aspect-ratio: 1 / 1;
  width: 100%;
  min-height: 0;
  place-items: center;
  color: var(--muted);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: 46px;
  font-weight: 900;
  overflow: hidden;
}

a.product-media {
  text-decoration: none;
}

.product-media.has-image {
  background: var(--white);
}

.product-media.has-image img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
}

.product-body {
  padding: 18px;
}

.category {
  margin-bottom: 8px;
  color: var(--accent) !important;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.product-card-brand {
  margin-top: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.product-feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0 16px;
  padding: 0;
  list-style: none;
}

.product-feature-icon {
  display: grid;
  width: 64px;
  min-height: 66px;
  grid-template-rows: 34px auto;
  gap: 6px;
  justify-items: center;
  align-items: start;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.product-feature-symbol {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--accent-dark);
  background: #f7f9fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-feature-symbol::before,
.product-feature-symbol::after {
  content: "";
  display: block;
}

.product-feature-symbol img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.product-feature-icon.has-custom-icon .product-feature-symbol::before,
.product-feature-icon.has-custom-icon .product-feature-symbol::after {
  content: none;
}

.product-feature-icon-ip65 .product-feature-symbol::before,
.product-feature-icon-ip54 .product-feature-symbol::before {
  width: 22px;
  height: 25px;
  background: linear-gradient(180deg, #ffffff 0 52%, #eaf3ff 52% 100%);
  border: 2px solid currentColor;
  border-radius: 11px 11px 8px 8px;
  clip-path: polygon(50% 0, 90% 12%, 90% 54%, 50% 100%, 10% 54%, 10% 12%);
}

.product-feature-icon-ip65 .product-feature-symbol::after,
.product-feature-icon-ip54 .product-feature-symbol::after {
  position: absolute;
  content: "IP";
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0;
}

.product-feature-icon-pixel .product-feature-symbol::before {
  width: 5px;
  height: 5px;
  background: #2563eb;
  border-radius: 1px;
  box-shadow:
    -8px -8px 0 #14b8a6,
    0 -8px 0 #f59e0b,
    8px -8px 0 #2563eb,
    -8px 0 0 #f59e0b,
    8px 0 0 #14b8a6,
    -8px 8px 0 #2563eb,
    0 8px 0 #14b8a6,
    8px 8px 0 #f59e0b;
}

.product-feature-icon-led .product-feature-symbol::before {
  width: 14px;
  height: 17px;
  background:
    radial-gradient(circle at 50% 34%, #ffffff 0 17%, transparent 19%),
    linear-gradient(135deg, #5eead4, #2563eb);
  border-radius: 50% 50% 44% 44%;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.product-feature-icon-dmx .product-feature-symbol::before {
  width: 20px;
  height: 14px;
  background:
    radial-gradient(circle, currentColor 0 2px, transparent 2.5px) 0 0 / 50% 100%,
    linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat;
}

.product-feature-icon-4k .product-feature-symbol::before {
  content: "4K";
  display: grid;
  width: 23px;
  height: 17px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0;
}

.product-feature-icon-audio .product-feature-symbol::before {
  width: 9px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 7px;
  box-shadow: 0 9px 0 -6px currentColor;
}

.product-feature-icon-power .product-feature-symbol::before {
  width: 11px;
  height: 21px;
  background: currentColor;
  clip-path: polygon(48% 0, 100% 0, 68% 41%, 100% 41%, 26% 100%, 42% 55%, 0 55%);
}

.product-feature-icon-case .product-feature-symbol::before {
  width: 21px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 3px;
  box-shadow: inset 0 5px 0 rgba(37, 99, 235, 0.14);
}

.product-feature-icon-fiber .product-feature-symbol::before {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(45deg);
}

.product-feature-icon-rigging .product-feature-symbol::before {
  width: 17px;
  height: 17px;
  border: 3px solid currentColor;
  border-top-width: 5px;
  border-radius: 50% 50% 45% 45%;
}

.product-meta.rental-meta {
  justify-content: flex-start;
}

.available-count {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--accent-dark);
  background: #eaf3ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.quantity-control {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quantity-control input {
  max-width: 110px;
  padding: 10px 12px;
  font-weight: 800;
}

.add-item {
  width: 100%;
  min-height: 42px;
  color: var(--white);
  background: var(--ink);
}

.add-item:disabled {
  cursor: default;
  background: var(--accent);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.checkout-main {
  display: grid;
  gap: 18px;
}

.checkout-card,
.summary-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-section {
  background: var(--panel);
}

.sales-catalog-section {
  background: var(--panel);
}

.sales-catalog-section .product-card,
.sales-catalog-section .filters {
  background: var(--white);
}

.checkout-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.checkout-card-header p {
  margin-bottom: 0;
  color: var(--muted);
}

.checkout-card-header a {
  color: var(--accent);
  font-weight: 800;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sales-cart-row {
  display: grid;
  grid-template-columns: 112px 1fr 132px;
  align-items: start;
}

.cart-item-media {
  width: 112px;
  font-size: 24px;
  border-radius: 6px;
}

.cart-item-detail {
  display: grid;
  gap: 7px;
}

.cart-item-detail .category {
  margin-bottom: 0;
}

.remove-cart-item {
  width: fit-content;
  padding: 0;
  color: #b42318;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cart-controls {
  display: grid;
  justify-items: end;
  gap: 12px;
  text-align: right;
}

.cart-quantity {
  margin-bottom: 0;
  justify-items: end;
}

.cart-quantity input {
  max-width: 88px;
}

.cart-row span,
.recommended-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.cart-price {
  min-width: 92px;
  text-align: right;
}

.empty-state {
  color: var(--muted);
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.recommended-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.recommended-card .product-media {
  width: 76px;
  min-height: 0;
  font-size: 18px;
  border-radius: 6px;
}

.recommended-card .product-media.has-image img {
  padding: 7px;
}

.mini-add {
  grid-column: 1 / -1;
  min-height: 36px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.mini-add:disabled {
  cursor: default;
  background: var(--accent);
}

.summary-card {
  position: sticky;
  top: 112px;
}

.summary-card p {
  color: var(--muted);
  line-height: 1.6;
}

.summary-line,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.summary-total {
  margin-bottom: 18px;
  font-size: 20px;
  border-bottom: 0;
}

.service-section {
  background: var(--panel);
}

.service-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid div {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 6vw, 72px);
  color: var(--white);
  background: var(--dark);
}

.form-page {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.9fr);
  gap: clamp(24px, 6vw, 72px);
  min-height: calc(100vh - 168px);
  padding: clamp(54px, 8vw, 96px) clamp(16px, 5vw, 72px);
  background: var(--panel);
}

.checkout-page {
  padding: clamp(54px, 8vw, 96px) clamp(16px, 5vw, 72px);
  background: var(--panel);
}

.product-detail-page {
  display: grid;
  gap: 28px;
  padding: clamp(36px, 6vw, 72px) clamp(16px, 5vw, 72px);
  background: var(--panel);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--accent);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.product-detail-media {
  border-radius: 8px;
  font-size: clamp(54px, 10vw, 110px);
}

.product-detail-media.has-image {
  border: 1px solid var(--line);
}

.product-detail-media.has-image img {
  padding: clamp(18px, 4vw, 34px);
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
  gap: 10px;
}

.product-gallery-thumb {
  display: grid;
  aspect-ratio: 1 / 1;
  width: 100%;
  place-items: center;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 2px var(--accent);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.product-detail-summary {
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-detail-summary h1 {
  color: var(--ink);
  font-size: 42px;
  line-height: 1.08;
}

.product-detail-summary .product-feature-icons {
  gap: 14px;
  margin: 14px 0 18px;
}

.product-detail-summary .product-feature-icon {
  width: 78px;
  min-height: 78px;
  grid-template-rows: 42px auto;
  font-size: 11px;
}

.product-detail-summary .product-feature-symbol {
  width: 42px;
  height: 42px;
}

.product-brand {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.detail-quantity {
  margin-top: 24px;
}

.detail-add {
  width: min(100%, 260px);
}

.ready-status {
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 900;
}

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

.detail-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.related-products {
  display: grid;
  gap: 18px;
}

.form-intro {
  align-self: start;
  max-width: 680px;
}

.form-intro h1 {
  color: var(--ink);
}

.form-intro p {
  color: var(--muted);
  line-height: 1.6;
}

.standalone-form {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quote-section p {
  color: #c8d0dc;
}

.request-form {
  display: grid;
  gap: 16px;
}

.form-fieldset {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-fieldset legend {
  padding: 0 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.required-marker {
  color: #b42318;
  font-weight: 900;
}

.optional-marker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.conditional-section[hidden] {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.quote-form label {
  color: var(--ink);
}

.sales-form {
  margin-top: 14px;
}

.location-grid {
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(16px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.footer span {
  color: #c9ced8;
}

@media (max-width: 980px) {
  .catalog-layout,
  .quote-section,
  .form-page,
  .contact-layout,
  .product-detail-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .summary-card {
    position: static;
  }

  .contact-card {
    position: static;
  }

  .product-grid,
  .brand-grid,
  .news-grid,
  .product-info-grid,
  .service-grid,
  .recommended-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-band,
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .topbar {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    padding: 9px 12px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 6px;
    font-weight: 800;
  }

  .nav-links {
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: 610px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(4, 7, 12, 0.83), rgba(4, 7, 12, 0.7));
  }

  .hero-content {
    margin: 0 auto;
  }

  .sales-cart-row {
    grid-template-columns: 84px 1fr;
  }

  .cart-item-media {
    width: 84px;
  }

  .cart-controls {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    justify-items: start;
    align-items: end;
    text-align: left;
  }

  .cart-quantity {
    justify-items: start;
  }

  .product-grid,
  .brand-grid,
  .news-grid,
  .product-info-grid,
  .service-grid,
  .recommended-grid,
  .trust-band,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
