:root {
  --ink: #15212a;
  --ink-soft: #455661;
  --navy: #17364d;
  --blue: #24678f;
  --blue-pale: #eaf2f6;
  --signal: #d94f2b;
  --signal-dark: #ad361a;
  --green: #1c9b5f;
  --green-dark: #147646;
  --paper: #ffffff;
  --canvas: #f4f7f8;
  --line: #d8e1e5;
  --line-dark: #b8c6cd;
  --shadow: 0 14px 38px rgba(17, 34, 45, 0.12);
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(36, 103, 143, 0.35);
  outline-offset: 3px;
}

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

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section-title {
  max-width: 760px;
  margin: 0;
  font-size: 42px;
  line-height: 1.14;
  font-weight: 760;
}

.section-intro {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-heading .text-link {
  flex: 0 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 750;
}

.text-link:hover {
  color: var(--signal);
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn svg {
  width: 19px;
  height: 19px;
}

.btn-primary {
  color: #fff;
  background: var(--signal);
}

.btn-primary:hover {
  background: var(--signal-dark);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line-dark);
}

.btn-secondary:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.btn-dark {
  color: #fff;
  background: var(--navy);
}

.btn-dark:hover {
  background: var(--blue);
}

.btn-whatsapp {
  color: #fff;
  background: var(--green);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
}

.icon-btn {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.icon-btn svg {
  width: 21px;
  height: 21px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  height: var(--header-height);
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-left: 5px solid var(--signal);
  font-size: 17px;
  font-weight: 850;
}

.brand-name {
  display: block;
  font-size: 19px;
  font-weight: 850;
  line-height: 1;
}

.brand-tagline {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 26px 0 22px;
  color: #334650;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 3px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  flex: 0 0 auto;
  min-height: 42px;
  padding-inline: 16px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 690px;
  align-items: center;
  color: #fff;
  background-color: #152b39;
  background-image: url("../images/hero-tv-showcase.webp");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: rgba(9, 24, 34, 0.66);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  padding: 86px 0 102px;
}

.hero .eyebrow {
  color: #ffad93;
}

.hero h1 {
  max-width: 750px;
  margin: 0;
  font-size: 66px;
  line-height: 1.04;
  font-weight: 820;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 650;
}

.hero-proof svg {
  width: 18px;
  height: 18px;
  color: #7de0ac;
}

.size-rail {
  color: #fff;
  background: var(--navy);
}

.size-rail-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 38px;
  min-height: 88px;
}

.size-rail-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.size-list {
  display: grid;
  grid-template-columns: repeat(10, minmax(48px, 1fr));
  gap: 6px;
}

.size-list a {
  display: grid;
  min-height: 44px;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 15px;
  font-weight: 800;
}

.size-list a:hover {
  color: #ffb49e;
}

.section {
  padding: 96px 0;
}

.section-compact {
  padding: 72px 0;
}

.section-alt {
  background: var(--canvas);
}

.category-grid,
.product-grid,
.feature-grid,
.news-grid,
.solution-grid {
  display: grid;
  gap: 22px;
}

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

.category-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border-radius: 6px;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  transition: opacity 180ms ease, transform 300ms ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 42, 0.46);
  content: "";
}

.category-card:hover img {
  opacity: 0.82;
  transform: scale(1.025);
}

.category-card-content {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
}

.category-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.18;
}

.category-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.category-card .text-link {
  margin-top: 14px;
  color: #fff;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover {
  border-color: var(--line-dark);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-card-media {
  position: relative;
  display: grid;
  min-height: 238px;
  place-items: center;
  padding: 28px;
  background: #edf2f4;
  overflow: hidden;
}

.product-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.tv-silhouette {
  position: relative;
  z-index: 1;
  width: min(82%, 270px);
  aspect-ratio: 16 / 9;
  background: #0f171c;
  border: 7px solid #202b31;
  box-shadow: 0 14px 24px rgba(19, 34, 43, 0.2);
}

.tv-silhouette::before {
  position: absolute;
  inset: 8px;
  background-image: url("../images/product-placeholder.png");
  background-position: center;
  background-size: cover;
  content: "";
}

.tv-silhouette::after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 42%;
  height: 17px;
  background: #28343a;
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
  content: "";
  transform: translateX(-50%);
}

.product-size-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  min-width: 50px;
  padding: 6px 9px;
  color: #fff;
  background: var(--signal);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.product-card p {
  min-height: 52px;
  margin: 10px 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.spec-chips li {
  padding: 5px 8px;
  color: #40525d;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 650;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.product-card-footer .text-link {
  font-size: 14px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  padding: 0 22px 0 0;
  border-right: 1px solid var(--line);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 4px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-item h3 {
  margin: 0;
  font-size: 19px;
}

.feature-item p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
}

.split-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 6px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 260px;
  padding: 15px 17px;
  color: #fff;
  background: rgba(17, 33, 42, 0.9);
  border-left: 4px solid var(--signal);
  font-size: 13px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 11px;
  align-items: start;
}

.check-list svg {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--green);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid var(--line-dark);
}

.process-step {
  position: relative;
  padding: 28px 28px 0 0;
}

.process-step::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--signal);
  border-radius: 50%;
  content: "";
}

.process-number {
  color: var(--signal);
  font-size: 13px;
  font-weight: 850;
}

.process-step h3 {
  margin: 7px 0 0;
  font-size: 18px;
}

.process-step p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.market-strip {
  color: #fff;
  background: var(--navy);
}

.market-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  min-height: 132px;
  align-items: stretch;
}

.market-lead,
.market-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.market-item:last-child {
  border-right: 0;
}

.market-lead strong {
  font-size: 20px;
}

.market-lead span,
.market-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.market-item svg {
  width: 22px;
  height: 22px;
  margin-bottom: 10px;
  color: #ffad93;
}

.market-item strong {
  font-size: 15px;
}

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

.news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card-body {
  padding: 25px;
}

.news-meta {
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 10px 0 0;
  font-size: 21px;
  line-height: 1.3;
}

.news-card p {
  margin: 11px 0 19px;
  color: var(--ink-soft);
  font-size: 14px;
}

.cta-band {
  padding: 72px 0;
  color: #fff;
  background: var(--navy);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  max-width: 700px;
  margin: 0;
  font-size: 38px;
  line-height: 1.15;
}

.cta-band p {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.cta-band-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: end;
  color: #fff;
  background-color: var(--navy);
  background-image: url("../images/hero-tv-showcase.webp");
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(9, 27, 39, 0.74);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 17px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  content: "/";
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: 50px;
  line-height: 1.08;
}

.page-hero p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding: 15px 17px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-tab {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.filter-tab.active,
.filter-tab:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.result-count {
  flex: 0 0 auto;
  color: var(--ink-soft);
  font-size: 13px;
}

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

.solution-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.solution-item .feature-icon {
  width: 62px;
  height: 62px;
  margin: 0;
}

.solution-item h3 {
  margin: 0;
  font-size: 22px;
}

.solution-item p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.capability-table {
  width: 100%;
  margin-top: 36px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
}

.capability-table th,
.capability-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.capability-table th {
  width: 30%;
  color: var(--navy);
  background: var(--canvas);
  font-size: 14px;
}

.capability-table td {
  color: var(--ink-soft);
  font-size: 14px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-stat {
  padding: 24px;
  background: #fff;
}

.about-stat strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
}

.about-stat span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 13px;
}

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

.value-item {
  padding-top: 22px;
  border-top: 4px solid var(--signal);
}

.value-item h3 {
  margin: 0;
  font-size: 21px;
}

.value-item p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
}

.contact-methods {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-method {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  align-items: start;
}

.contact-method .feature-icon {
  width: 44px;
  height: 44px;
  margin: 0;
}

.contact-method strong,
.contact-method a {
  display: block;
}

.contact-method span {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
}

.inquiry-form {
  padding: 34px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 6px;
}

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

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 3px;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(36, 103, 143, 0.14);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 12px 14px;
  color: #125a38;
  background: #e9f7ef;
  border-left: 4px solid var(--green);
  font-size: 13px;
}

.form-status.show {
  display: block;
}

.product-detail {
  padding: 70px 0 92px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 62px;
  align-items: start;
}

.product-gallery-main {
  position: sticky;
  top: 104px;
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: 50px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.product-gallery-main::before {
  position: absolute;
  inset: 0;
  background-image: url("../images/product-placeholder.png");
  background-position: center;
  background-size: cover;
  content: "";
  opacity: 0.12;
}

.product-gallery-main .tv-silhouette {
  width: 82%;
  max-width: 460px;
}

.product-kicker {
  color: var(--signal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-summary h1 {
  margin: 8px 0 0;
  font-size: 44px;
  line-height: 1.1;
}

.product-summary .lead {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.detail-specs {
  margin: 26px 0 0;
  border-top: 1px solid var(--line);
}

.detail-spec-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.detail-spec-row dt {
  color: var(--ink-soft);
}

.detail-spec-row dd {
  margin: 0;
  font-weight: 700;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 26px;
}

.product-actions .btn {
  width: 100%;
}

.micro-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.detail-tabs {
  margin-top: 72px;
}

.detail-tab-list {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--line-dark);
}

.detail-tab {
  min-height: 46px;
  padding: 11px 17px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.detail-tab.active {
  color: var(--signal);
  border-bottom-color: var(--signal);
}

.detail-panel {
  display: none;
  padding-top: 30px;
}

.detail-panel.active {
  display: block;
}

.detail-panel h2 {
  margin: 0;
  font-size: 30px;
}

.detail-panel p {
  max-width: 760px;
  color: var(--ink-soft);
}

.spec-table {
  width: 100%;
  margin-top: 22px;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 14px 17px;
  border: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
}

.spec-table th {
  width: 30%;
  background: var(--canvas);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 4px;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 0;
  background: #fff;
  font-weight: 740;
  text-align: left;
  cursor: pointer;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-item.open .faq-answer {
  display: block;
}

.article-list {
  display: grid;
  gap: 0;
}

.article-row {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.article-row img {
  width: 210px;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
}

.article-row h2 {
  margin: 6px 0 0;
  font-size: 24px;
  line-height: 1.3;
}

.article-row p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.legal-content h2 {
  margin: 34px 0 8px;
  font-size: 24px;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(18, 77, 49, 0.32);
}

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

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

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #101d25;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.9fr 1fr;
  gap: 52px;
  padding: 72px 0 52px;
}

.site-footer .brand-name,
.site-footer .brand-tagline {
  color: #fff;
}

.footer-about {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-title {
  margin: 4px 0 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 12px;
  font-size: 14px;
}

.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: #ff9f82;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .product-grid,
  .category-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .feature-item:nth-child(2) {
    border-right: 0;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 32px), var(--container));
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-panel {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 22px 16px;
    background: #fff;
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .mobile-panel.open {
    transform: translateX(0);
  }

  .mobile-panel nav {
    display: grid;
  }

  .mobile-panel nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    font-weight: 740;
  }

  .mobile-panel .btn {
    width: 100%;
    margin-top: 24px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 68px 0 78px;
  }

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

  .hero-lead {
    font-size: 18px;
  }

  .size-rail-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .size-list {
    grid-template-columns: repeat(5, 1fr);
  }

  .size-list a {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section {
    padding: 74px 0;
  }

  .section-title {
    font-size: 36px;
  }

  .split,
  .contact-layout,
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .split-media {
    min-height: 420px;
  }

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

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

  .market-lead {
    grid-column: 1 / -1;
  }

  .market-lead,
  .market-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .solution-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery-main {
    position: relative;
    top: auto;
    min-height: 430px;
  }

  .article-row {
    grid-template-columns: 160px 1fr;
  }

  .article-row img {
    width: 160px;
  }

  .article-row .text-link {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand-tagline {
    display: none;
  }

  .hero {
    min-height: 610px;
    background-position: 58% center;
  }

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

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 9px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 31px;
  }

  .section-intro {
    font-size: 16px;
  }

  .category-grid,
  .product-grid,
  .news-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 310px;
  }

  .feature-item,
  .feature-item:nth-child(2) {
    padding-bottom: 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .split-media {
    min-height: 330px;
  }

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

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

  .market-lead {
    grid-column: auto;
  }

  .cta-band h2 {
    font-size: 30px;
  }

  .cta-band-actions,
  .cta-band-actions .btn {
    width: 100%;
  }

  .page-hero {
    min-height: 340px;
  }

  .page-hero h1 {
    font-size: 35px;
  }

  .filter-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .solution-item {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .capability-table,
  .capability-table tbody,
  .capability-table tr,
  .capability-table th,
  .capability-table td {
    display: block;
    width: 100%;
  }

  .capability-table th {
    border-bottom: 0;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

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

  .inquiry-form {
    padding: 23px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .btn {
    width: 100%;
  }

  .product-detail {
    padding-top: 46px;
  }

  .product-gallery-main {
    min-height: 330px;
    padding: 28px;
  }

  .product-summary h1 {
    font-size: 35px;
  }

  .detail-spec-row {
    grid-template-columns: 110px 1fr;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .detail-tab-list {
    overflow-x: auto;
  }

  .detail-tab {
    flex: 0 0 auto;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table th {
    border-bottom: 0;
  }

  .article-row {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .article-row img {
    width: 100%;
  }

  .article-row .text-link {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Static edition 1.0: bright factory theme and maintainable navigation. */
:root {
  --ink: #182128;
  --ink-soft: #637078;
  --navy: #273138;
  --blue: #24689b;
  --blue-pale: #eaf2f7;
  --signal: #e34a2b;
  --signal-dark: #bd351c;
  --green: #11856f;
  --green-dark: #0b6958;
  --paper: #ffffff;
  --canvas: #f6f8f9;
  --line: #dce2e5;
  --line-dark: #c7d0d4;
  --shadow: 0 14px 34px rgba(24, 33, 40, 0.1);
  --header-height: 78px;
}

body {
  color: var(--ink);
  background: var(--paper);
}

body.modal-open {
  overflow: hidden;
}

.eyebrow {
  color: var(--signal);
  letter-spacing: 0;
}

.site-header {
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(24, 33, 40, 0.04);
}

.nav-wrap {
  height: var(--header-height);
  gap: 24px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  background: var(--ink);
  border-left-color: var(--signal);
}

.brand-name {
  color: var(--ink);
  font-size: 20px;
}

.desktop-nav {
  min-width: 0;
  margin-left: auto;
}

.desktop-nav > ul.menu {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav .menu-item {
  position: relative;
}

.desktop-nav a {
  color: #37464e;
  font-size: 16px;
}

.desktop-nav .menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-right: 12px;
}

.desktop-nav .menu-item-has-children > a::before {
  position: absolute;
  right: 0;
  color: var(--blue);
  content: "+";
  font-size: 14px;
}

.desktop-nav .sub-menu {
  position: absolute;
  z-index: 50;
  top: calc(100% - 12px);
  left: -18px;
  width: 224px;
  margin: 0;
  padding: 9px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--signal);
  border-radius: 0 0 4px 4px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.desktop-nav .menu-item-has-children:hover > .sub-menu,
.desktop-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-nav .sub-menu a {
  display: block;
  padding: 10px 11px;
  color: var(--ink);
  border-radius: 3px;
  font-size: 14px;
}

.desktop-nav .sub-menu a::after {
  display: none;
}

.desktop-nav .sub-menu a:hover {
  color: var(--blue);
  background: var(--blue-pale);
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-toggle {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.language-toggle svg {
  width: 16px;
  height: 16px;
}

.language-menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 7px);
  right: 0;
  display: none;
  min-width: 176px;
  padding: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.language-switcher.open .language-menu {
  display: block;
}

.language-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.language-menu button {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 3px;
  text-align: left;
}

.language-menu button[aria-current="true"] {
  color: var(--blue);
  background: var(--blue-pale);
}

.language-menu button:disabled {
  color: #89949a;
}

.language-menu small {
  font-size: 10px;
  font-weight: 700;
}

.language-menu svg {
  width: 15px;
  height: 15px;
}

.mobile-language {
  display: none;
}

.header-cta {
  gap: 7px;
  white-space: nowrap;
}

.header-cta svg {
  width: 17px;
  height: 17px;
}

.hero {
  min-height: 610px;
  align-items: center;
  color: var(--ink);
  background-color: var(--canvas);
  background-image: url("../images/hero-tv-showcase.webp");
  background-position: center;
  background-size: cover;
}

.hero::before {
  background: rgba(246, 248, 249, 0.08);
}

.hero-content {
  max-width: 555px;
  padding: 88px 0 94px;
}

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

.hero h1 {
  max-width: 680px;
  color: var(--ink);
  font-size: 60px;
  line-height: 1.06;
  font-weight: 800;
}

.hero-lead {
  max-width: 515px;
  color: #4f5e66;
  font-size: 19px;
}

.hero-actions .btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line-dark);
}

.hero-actions .btn-secondary:hover {
  color: var(--blue);
  background: #fff;
  border-color: var(--blue);
}

.hero-proof {
  gap: 14px 24px;
  margin-top: 34px;
}

.hero-proof li {
  color: #46545c;
  font-size: 13px;
}

.hero-proof svg {
  color: var(--green);
}

.size-rail {
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.size-rail-inner {
  min-height: 82px;
}

.size-rail-label {
  color: var(--ink-soft);
}

.size-list a {
  border-left-color: var(--line);
  transition: color 160ms ease, background-color 160ms ease;
}

.size-list a:hover {
  color: var(--signal);
  background: var(--canvas);
}

.section-short {
  padding-top: 76px;
  padding-bottom: 76px;
}

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

.section-title {
  font-size: 40px;
}

.category-grid {
  gap: 18px;
}

.category-card {
  min-height: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.category-card img {
  position: relative;
  height: 230px;
  object-fit: cover;
  opacity: 1;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms ease;
}

.category-card::after {
  display: none;
}

.category-card:hover {
  border-color: var(--line-dark);
  box-shadow: var(--shadow);
}

.category-card:hover img {
  opacity: 1;
  transform: scale(1.012);
}

.category-card-content {
  position: relative;
  inset: auto;
  display: block;
  padding: 24px;
}

.category-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--signal);
  font-size: 13px;
  font-weight: 800;
}

.category-card h3 {
  font-size: 23px;
}

.category-card p {
  min-height: 68px;
  color: var(--ink-soft);
  font-size: 14px;
}

.category-card .text-link {
  color: var(--blue);
  font-size: 14px;
}

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

.product-card {
  border-radius: 6px;
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-card-media {
  min-height: 0;
  padding: 0;
  aspect-ratio: 4 / 3;
  background: #f3f6f6;
}

.product-card-media img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 1;
  transition: transform 220ms ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.018);
}

.product-grid-five .product-card-media {
  min-height: 0;
  padding: 0;
}

.product-grid-five .product-card-body {
  padding: 18px;
}

.product-grid-five .product-card h3 {
  font-size: 17px;
}

.product-grid-five .product-card p {
  display: -webkit-box;
  min-height: 64px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 13px;
}

.product-grid-five .product-card-footer .text-link {
  font-size: 12px;
}

.feature-grid {
  gap: 0;
}

.feature-icon {
  color: var(--green);
  background: #e8f3f0;
}

.home-about .split-media {
  min-height: 430px;
}

.home-about-link {
  margin-top: 28px;
}

.home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-news-item {
  padding: 28px 28px 30px 0;
  border-right: 1px solid var(--line);
}

.home-news-item + .home-news-item {
  padding-left: 28px;
}

.home-news-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-news-item h3 {
  min-height: 56px;
  margin: 9px 0 0;
  font-size: 20px;
  line-height: 1.35;
}

.home-news-item h3 a:hover {
  color: var(--blue);
}

.home-news-item p {
  min-height: 68px;
  margin: 12px 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.cta-band {
  padding: 68px 0;
  color: var(--ink);
  background: #edf2f3;
  border-top: 1px solid var(--line);
}

.cta-band .eyebrow {
  margin-bottom: 9px;
}

.cta-band h2 {
  font-size: 36px;
}

.cta-band p {
  color: var(--ink-soft);
}

.page-hero {
  min-height: 330px;
  color: var(--ink);
  background-color: var(--canvas);
  background-image: url("../images/hero-tv-showcase.webp");
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  background: rgba(246, 248, 249, 0.38);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.page-hero p {
  max-width: 560px;
}

.page-hero p,
.breadcrumb {
  color: var(--ink-soft);
}

.page-hero .breadcrumb a:hover {
  color: var(--blue);
}

@media (min-width: 1081px) {
  .hero,
  .page-hero {
    background-position: right max(20px, calc((100% - var(--container)) / 2)) center;
    background-repeat: no-repeat;
    background-size: auto 610px;
  }
}

.anchor-section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.sourcing-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: 64px;
}

.compact-checks {
  margin: 0;
}

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

.compare-toggle {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  margin: 17px -24px -24px;
  padding: 10px 24px;
  color: var(--ink-soft);
  background: var(--canvas);
  border-top: 1px solid var(--line);
  font-size: 13px;
  cursor: pointer;
}

.compare-toggle input {
  width: 17px;
  height: 17px;
  accent-color: var(--signal);
}

.compare-bar {
  position: fixed;
  z-index: 1100;
  bottom: 18px;
  left: 50%;
  display: flex;
  min-width: min(680px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px 14px 22px;
  color: #fff;
  background: #273138;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  box-shadow: 0 16px 44px rgba(8, 23, 32, 0.35);
  transform: translateX(-50%);
}

.compare-bar[hidden],
.compare-modal[hidden] {
  display: none;
}

.compare-bar > div:last-child {
  display: flex;
  gap: 8px;
}

.compare-bar .btn {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 13px;
}

.compare-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 20, 28, 0.72);
}

.compare-dialog {
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.compare-header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.compare-header h2 {
  margin: 0;
  font-size: 26px;
}

.compare-content {
  padding: 24px;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  min-width: 160px;
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table th:first-child {
  min-width: 110px;
  background: var(--canvas);
}

.compare-table img {
  width: 150px;
  height: 90px;
  margin-bottom: 9px;
  object-fit: cover;
}

.compare-table span {
  display: block;
  font-weight: 750;
}

.compare-mobile-list {
  display: none;
}

.product-breadcrumb {
  margin-bottom: 28px;
  color: var(--ink-soft);
}

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

.product-gallery {
  min-width: 0;
}

.product-gallery-main {
  position: relative;
  top: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  padding: 0;
  background: var(--canvas);
}

.product-gallery-main::before {
  display: none;
}

.product-gallery-main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.render-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.product-list-note {
  max-width: 760px;
  margin-top: 26px;
}

.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.product-thumb {
  width: 92px;
  height: 62px;
  padding: 3px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
}

.product-thumb.active {
  border-color: var(--signal);
  box-shadow: 0 0 0 1px var(--signal);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.not-found {
  display: grid;
  min-height: 62vh;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-size: 52px;
}

.not-found p:not(.eyebrow) {
  color: var(--ink-soft);
}

.not-found .hero-actions {
  justify-content: center;
}

.legacy-product {
  display: grid;
  min-height: 100vh;
  place-content: center;
  text-align: center;
}

.site-footer {
  background: #273138;
}

.site-footer .brand-name {
  color: #fff;
}

.site-footer .brand-mark {
  background: #151c20;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
}

.social-links a {
  color: #b8d7e8;
  font-size: 13px;
}

.footer-contact svg {
  color: #f08a72;
}

[dir="rtl"] body {
  direction: rtl;
}

[dir="rtl"] .desktop-nav .sub-menu {
  right: -18px;
  left: auto;
}

[dir="rtl"] .desktop-nav .menu-item-has-children > a {
  padding-right: 0;
  padding-left: 12px;
}

[dir="rtl"] .desktop-nav .menu-item-has-children > a::before {
  right: auto;
  left: 0;
}

[dir="rtl"] .product-size-badge {
  right: 16px;
  left: auto;
}

@media (max-width: 1180px) {
  .nav-wrap {
    gap: 16px;
  }

  .desktop-nav > ul.menu {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 15px;
  }

  .language-toggle span {
    display: none;
  }

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

@media (max-width: 1080px) {
  .hero {
    background-position: 62% center;
  }

  .hero-content {
    max-width: 520px;
  }

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

  .home-news-grid {
    grid-template-columns: 1fr;
  }

  .home-news-item,
  .home-news-item + .home-news-item,
  .home-news-item:last-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-news-item:last-child {
    border-bottom: 0;
  }

  .home-news-item h3,
  .home-news-item p {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .site-header > .nav-wrap > .language-switcher {
    display: none;
  }

  .mobile-panel {
    overflow-y: auto;
  }

  .mobile-panel .menu,
  .mobile-panel .sub-menu {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-panel .menu-item {
    position: relative;
  }

  .mobile-panel .menu-item > a {
    display: block;
    padding-right: 54px;
    font-size: 18px;
  }

  .mobile-panel .sub-menu {
    display: none;
    padding-left: 16px;
    background: var(--canvas);
  }

  .mobile-panel .submenu-open > .sub-menu {
    display: block;
  }

  .mobile-panel .sub-menu a {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
  }

  .submenu-toggle {
    position: absolute;
    top: 7px;
    right: 0;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    color: var(--blue);
    background: transparent;
    border: 0;
  }

  .submenu-toggle svg {
    width: 19px;
    height: 19px;
    transition: transform 160ms ease;
  }

  .submenu-open > .submenu-toggle svg {
    transform: rotate(180deg);
  }

  .mobile-language {
    display: block;
    margin-top: 18px;
  }

  .mobile-language .language-toggle {
    width: 100%;
    justify-content: center;
  }

  .mobile-language .language-toggle span {
    display: inline;
  }

  .mobile-language .language-menu {
    position: static;
    margin-top: 6px;
  }

  .hero {
    min-height: 590px;
    background-position: 68% center;
  }

  .hero::before {
    background: rgba(246, 248, 249, 0.7);
  }

  .hero-content {
    max-width: 590px;
    padding: 70px 0 76px;
  }

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

  .size-list a {
    border-top-color: var(--line);
  }

  .category-card img {
    height: 210px;
  }

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

  .home-about .split-media {
    min-height: 360px;
  }

  .sourcing-note {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .compare-bar {
    bottom: 12px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 610px;
    background-position: 72% center;
  }

  .hero::before {
    background: rgba(246, 248, 249, 0.84);
  }

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

  .hero-lead {
    font-size: 16px;
  }

  .hero-proof {
    gap: 10px;
  }

  .section-short {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-title {
    font-size: 30px;
  }

  .category-card img {
    height: 205px;
  }

  .category-card p {
    min-height: 0;
  }

  .product-grid-five {
    grid-template-columns: 1fr;
  }

  .product-grid-five .product-card-media {
    min-height: 0;
  }

  .cta-band h2 {
    font-size: 29px;
  }

  .compare-toggle {
    margin-right: -24px;
    margin-left: -24px;
  }

  .compare-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .compare-bar > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .compare-modal {
    padding: 10px;
  }

  .compare-content {
    padding: 14px;
  }

  .compare-table-wrap {
    display: none;
  }

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

  .compare-mobile-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 5px;
  }

  .compare-mobile-product {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: var(--canvas);
  }

  .compare-mobile-product img {
    width: 112px;
    height: 72px;
    object-fit: cover;
  }

  .compare-mobile-product h3 {
    margin: 0;
    font-size: 17px;
  }

  .compare-mobile-card dl {
    margin: 0;
  }

  .compare-mobile-card dl > div {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    border-top: 1px solid var(--line);
  }

  .compare-mobile-card dt,
  .compare-mobile-card dd {
    margin: 0;
    padding: 11px 12px;
  }

  .compare-mobile-card dt {
    background: var(--canvas);
    font-weight: 750;
  }

  .not-found h1 {
    font-size: 40px;
  }
}
