:root {
  --font-arabic: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
  --font-latin: "Manrope", "Segoe UI", Arial, sans-serif;
  --ink: #111214;
  --muted: #62666d;
  --line: #e1e3e8;
  --panel: #ffffff;
  --soft: #f6f6f7;
  --blue: #111214;
  --red: #da291c;
  --red-dark: #9f1d15;
  --graphite: #202124;
  --green: #da291c;
  --shadow: 0 22px 60px rgba(17, 18, 20, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-arabic);
  font-size: clamp(15px, .28vw + 14px, 17px);
  font-weight: 500;
  color: var(--ink);
  background: #fbfbfc;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
  padding: 12px clamp(18px, 4vw, 72px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(17, 18, 20, .09);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 210px;
}

.brand-mark {
  display: block;
  width: 64px;
  height: 50px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(17, 18, 20, .1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.brand strong, .brand small { display: block; }
.brand strong { font-size: 17px; font-weight: 800; line-height: 1.35; }
.brand small {
  color: var(--muted);
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .025em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav a {
  padding: 10px 13px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: .2s ease;
}

.nav a:hover, .nav a.active-nav { color: var(--red); background: #fff0f2; }
.menu-button { display: none; }

.language-toggle {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(218, 41, 28, .22);
  border-radius: 8px;
  color: var(--red);
  background: #fff8f9;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  line-height: 1;
  transition: .2s ease;
}

.language-toggle:hover {
  color: white;
  background: var(--red);
}

.site-search {
  flex: 1 1 240px;
  max-width: 360px;
}

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

.site-search-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  height: 44px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 9px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.site-search-control:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(218, 41, 28, .08);
}

.site-search input {
  min-width: 0;
  padding: 0 14px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
}

.site-search button {
  display: grid;
  place-items: center;
  color: white;
  background: var(--red);
  border: 0;
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
}

.site-search button:hover { background: var(--red-dark); }

html[dir="ltr"] body {
  font-family: var(--font-latin);
}

html[dir="ltr"] .accordion-trigger {
  text-align: left;
}

html[dir="ltr"] .about-points span::before {
  margin-right: 8px;
  margin-left: 0;
}

.section, .section-band {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 80px);
}

.section-band {
  background:
    linear-gradient(135deg, rgba(218, 41, 28, .06), transparent 34%),
    linear-gradient(180deg, #fff, var(--soft));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: min(720px, calc(100svh - 76px));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}

h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.35; }
h1, h2 { font-weight: 800; }
h3 { font-size: clamp(18px, .4vw + 17px, 21px); font-weight: 800; }
h1 { font-family: var(--font-latin); font-size: clamp(40px, 4vw + 14px, 68px); letter-spacing: -.045em; max-width: 900px; }
h2 { font-size: clamp(29px, 1.6vw + 20px, 46px); letter-spacing: -.02em; }

h1, h2 {
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(16px, .5vw + 14px, 19px);
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action, .secondary-action, .product-card button, .catalog-card button, .card-link, .tds-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.primary-action {
  color: white;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(218, 41, 28, .22);
}

.secondary-action, .product-card button, .catalog-card button, .card-link, .tds-link {
  color: var(--ink);
  background: #f1f1f2;
  border: 1px solid var(--line);
}

.primary-action:hover { background: var(--red-dark); }
.secondary-action:hover, .product-card button:hover, .catalog-card button:hover, .card-link:hover, .tds-link:hover {
  color: var(--red);
  border-color: rgba(218, 41, 28, .22);
  background: #fff0f2;
}

.hero-media { position: relative; }
.hero-media img, .split-image img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(17, 18, 20, .08);
  box-shadow: var(--shadow);
}

.metric-panel {
  position: absolute;
  inset: auto 24px 24px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
  color: white;
  background: rgba(17, 18, 20, .9);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.metric-panel span { display: grid; gap: 2px; font-size: 12px; font-weight: 600; }
.metric-panel strong { font-family: var(--font-latin); font-size: 23px; font-weight: 800; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #191a1d;
  border-block: 1px solid var(--line);
}

.trust-strip span {
  padding: 18px;
  text-align: center;
  background: white;
  font-size: 14px;
  font-weight: 700;
  border-top: 3px solid transparent;
}

.trust-strip span:nth-child(odd) {
  border-top-color: var(--red);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-heading h2 { max-width: 900px; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.filter.active { color: white; background: var(--ink); border-color: var(--ink); }

.filter:hover {
  color: var(--red);
  border-color: rgba(218, 41, 28, .28);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  gap: 13px;
  align-content: start;
  min-height: 300px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(17, 18, 20, .13);
}

.product-card p, .split-copy p, .about-story p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}
.product-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .56fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: end;
  min-height: 420px;
}

.catalog-summary {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.catalog-summary span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: var(--soft);
  border-radius: 8px;
  font-weight: 800;
}

.catalog-summary strong {
  color: var(--red);
  font-size: 24px;
}

.catalog-section {
  background: #fbfbfc;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.brand-showcase {
  background: #fbfbfc;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.brand-logo-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 210px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(17, 18, 20, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.brand-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(17, 18, 20, .13);
}

.brand-logo-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-logo-card strong {
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 800;
}

.brand-logo-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.85;
}

.product-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-brand-heading {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding: 12px 16px;
  color: var(--ink);
  background: #fff0f2;
  border-right: 4px solid var(--red);
  border-radius: 8px;
  font-size: clamp(20px, 1vw + 16px, 28px);
}

.catalog-card {
  display: grid;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(17, 18, 20, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(17, 18, 20, .13);
}

.catalog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.catalog-card img.product-brand-logo {
  height: 175px;
  object-fit: contain;
  padding: 10px;
  background: white;
}

.catalog-card img.product-photo {
  height: 230px;
  object-fit: contain;
  padding: 14px;
  background: white;
}

.catalog-card img.product-photo-wide {
  object-fit: contain;
}

.catalog-card-body {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
}

.catalog-card-body .tds-link {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.catalog-card-body .tds-link:hover {
  color: white;
  background: var(--red);
  border-color: var(--red);
}

.catalog-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
}

.product-tag {
  width: fit-content;
  padding: 4px 9px;
  color: var(--red);
  background: #fff0f2;
  border: 1px solid rgba(218, 41, 28, .18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.product-meta div {
  padding: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-meta dt {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.product-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.media-section {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.media-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.media-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 190px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(17, 18, 20, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.media-card:hover {
  transform: translateY(-4px);
  border-color: rgba(218, 41, 28, .32);
  box-shadow: 0 24px 58px rgba(17, 18, 20, .13);
}

.media-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.media-card strong {
  font-size: 18px;
  font-weight: 800;
}

.media-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
}

.media-document {
  grid-template-rows: auto auto 1fr auto;
}

.media-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--red);
  font-weight: 900;
}

.text-link:hover {
  color: var(--red-dark);
}

.document-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  min-height: 330px;
}

.document-meta {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.document-meta span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: var(--soft);
  border-radius: 8px;
  font-weight: 800;
}

.document-meta strong {
  color: var(--red);
}

.document-viewer-wrap {
  display: grid;
  gap: 16px;
  background: #fbfbfc;
}

.document-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.pdf-viewer {
  width: 100%;
  min-height: 760px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: 22px;
  align-items: stretch;
}

.about-story, .about-points {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-story p:first-child { margin-top: 0; }
.about-story p:last-child { margin-bottom: 0; }

.about-points {
  display: grid;
  gap: 12px;
  align-content: center;
}

.about-points span {
  display: block;
  padding: 12px 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.about-points span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  background: var(--red);
  border-radius: 2px;
}

.accordion {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.accordion-trigger {
  width: 100%;
  padding: 17px 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: white;
  color: var(--ink);
  cursor: pointer;
  text-align: right;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
}

.accordion-trigger.active { color: var(--blue); }
.accordion-trigger.active {
  color: var(--red);
  background: #fff8f9;
}
.accordion-panel {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}
.accordion-panel.open { display: block; }

.footer {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(340px, 1.25fr);
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 76px) 22px;
  color: white;
  background:
    linear-gradient(135deg, rgba(218, 41, 28, .18), transparent 34%),
    linear-gradient(180deg, #17181b, #0f1012);
  border-top: 5px solid var(--red);
}

.footer-brand {
  display: grid;
  gap: 6px;
  align-content: start;
}

.footer-brand strong { font-size: 22px; font-weight: 800; }
.footer-brand span { color: rgba(255, 255, 255, .72); font-family: var(--font-latin); font-size: 12px; }
.footer-brand p {
  max-width: 420px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  line-height: 1.9;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.contact-card {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 66px;
  padding: 10px 12px;
  color: white;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  transition: .2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(218, 41, 28, .55);
}

.contact-icon {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  background: var(--red);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 900;
}

.contact-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.contact-card small,
.contact-card strong {
  display: block;
}

.contact-card small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 700;
}

.contact-card strong {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.contact-card-accent {
  background: rgba(218, 41, 28, .18);
  border-color: rgba(218, 41, 28, .42);
}

.contact-card-wide {
  grid-column: span 2;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .78);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero, .split, .media-section, .about-grid, .footer, .catalog-hero, .document-hero { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .product-grid, .catalog-grid, .brand-logo-grid, .product-list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-contact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-header { flex-wrap: wrap; gap: 12px 18px; }
  .site-search { order: 4; flex-basis: 100%; max-width: none; }
}

@media (max-width: 720px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
  }
  .site-header .brand { grid-column: 1; grid-row: 1; }
  .site-header .menu-button { grid-column: 2; grid-row: 1; }
  .site-header .language-toggle { grid-column: 3; grid-row: 1; }
  .site-search { grid-column: 1 / -1; grid-row: 2; width: 100%; }
  .menu-button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    color: var(--ink);
    font-size: 22px;
  }
  .nav {
    position: absolute;
    inset: 130px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .trust-strip, .product-grid, .catalog-grid, .brand-logo-grid, .product-list-grid, .media-grid, .product-meta, .footer-contact { grid-template-columns: 1fr; }
  .hero { gap: 24px; }
  .metric-panel {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 12px;
    padding: 9px 7px;
  }
  .metric-panel span { justify-items: center; text-align: center; font-size: 10px; line-height: 1.55; }
  .metric-panel strong { font-size: 19px; }
  .contact-card-wide { grid-column: auto; }
  .catalog-hero { min-height: auto; }
  .catalog-card img { height: 190px; }
  .document-toolbar { display: grid; }
  .pdf-viewer { min-height: 560px; }
  .brand { min-width: 0; }
  .brand-mark { width: 54px; height: 44px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 10px; }
  .language-toggle { min-width: 42px; padding: 0 10px; }
  h1 { font-size: clamp(36px, 11vw, 46px); }
  h2 { font-size: clamp(27px, 8vw, 35px); }
  .hero-text { font-size: 16px; line-height: 1.95; }
  .hero-actions { margin-top: 26px; }
  .primary-action, .secondary-action { flex: 1 1 160px; }
  .section-heading { display: block; }
}

/* Products page: compact, calm catalogue navigation. */
.products-page .catalog-hero {
  min-height: 0;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  padding-block: clamp(46px, 5.5vw, 74px);
}

.products-page .catalog-hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.14;
}

.products-page .catalog-hero .hero-text {
  max-width: 760px;
  margin-top: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.8;
}

.products-page .catalog-summary {
  align-self: center;
  padding: 14px;
  border-radius: 20px;
}

.products-page .catalog-summary span {
  min-height: 48px;
  padding: 9px 12px;
}

.products-page .catalog-summary strong {
  font-size: 21px;
}

.products-page .brand-showcase {
  padding-block: clamp(46px, 5.5vw, 76px);
}

.products-page .brand-showcase .section-heading,
.products-page .catalog-section .section-heading {
  margin-bottom: 24px;
}

.products-page .catalog-section {
  padding-top: clamp(50px, 6vw, 82px);
}

.products-page .catalog-tools {
  margin-bottom: 18px;
  padding: 18px;
}

.products-page .catalog-filters {
  gap: 8px;
  margin-bottom: 18px;
}

.products-page .product-list-grid {
  align-items: start;
  grid-auto-rows: auto;
  row-gap: 22px;
}

.products-page .catalog-brand-heading {
  align-self: start;
  min-height: 0;
  margin: 18px 0 2px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.3;
  box-shadow: 0 10px 24px rgba(23, 20, 23, .1);
}

.products-page .catalog-card {
  height: auto;
  grid-template-rows: auto auto;
}

.products-page .catalog-card-clickable {
  cursor: pointer;
}

.products-page .product-image-link {
  display: block;
  overflow: hidden;
  color: inherit;
  background: white;
}

.products-page .product-image-link img {
  display: block;
}

.products-page .product-image-link:focus-visible {
  border-radius: 18px 18px 0 0;
  outline: 4px solid rgba(218, 41, 28, .28);
  outline-offset: -4px;
}

.products-page .catalog-card img.product-photo,
.products-page .catalog-card img.product-brand-logo {
  height: 220px;
  padding: 12px;
}

.products-page .catalog-card-body {
  gap: 10px;
  padding: 18px;
}

.products-page .catalog-card-body p {
  line-height: 1.72;
}

.products-page .catalog-card-actions {
  margin-top: 4px;
  padding-top: 0;
}

@media (max-width: 720px) {
  .products-page .catalog-hero {
    gap: 22px;
    padding-block: 38px;
  }

  .products-page .catalog-hero h1 {
    font-size: clamp(32px, 9vw, 43px);
  }

  .products-page .catalog-summary,
  .products-page .catalog-tools {
    padding: 14px;
  }

  .products-page .brand-showcase,
  .products-page .catalog-section {
    padding-block: 46px;
  }

  .products-page .catalog-brand-heading {
    margin-top: 12px;
    padding: 9px 13px;
    font-size: 20px;
  }

  .products-page .product-list-grid {
    row-gap: 18px;
  }

  .products-page .catalog-card img.product-photo,
  .products-page .catalog-card img.product-brand-logo {
    height: 195px;
  }

  .products-page .catalog-card-body {
    padding: 16px;
  }
}

/* Fixed Google Maps place card over the satellite view. */
.contact-map {
  position: relative;
}

.map-place-card {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  display: grid;
  gap: 5px;
  width: min(340px, calc(100% - 32px));
  padding: 18px;
  color: #171417;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(23, 20, 23, .1);
  border-radius: 4px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
  text-align: start;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .2s ease, box-shadow .2s ease;
}

.map-place-card:hover {
  color: #171417;
  transform: translateY(-2px);
  box-shadow: 0 17px 42px rgba(0, 0, 0, .3);
}

.map-place-card strong {
  color: #171417;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}

.map-place-card > span {
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.map-place-card small {
  color: #6a676b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

.map-place-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 40px;
  margin-top: 7px;
  padding: 7px 14px;
  color: white;
  background: #1a73e8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.map-place-card i {
  font-style: normal;
  font-size: 17px;
  line-height: 1;
}

@media (max-width: 620px) {
  .map-place-card {
    top: 10px;
    left: 10px;
    width: min(300px, calc(100% - 20px));
    gap: 3px;
    padding: 13px;
  }

  .map-place-card strong {
    font-size: 14px;
  }

  .map-place-card > span,
  .map-place-card small {
    font-size: 11px;
  }

  .map-place-card b {
    min-height: 36px;
    margin-top: 4px;
    padding: 6px 12px;
  }
}

/* Required customer checkout fields. */
.cart-customer-details input,
.cart-customer-details select,
.cart-customer-details textarea {
  width: 100%;
  padding: 10px 11px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
  font-size: 13px;
  outline: none;
}

.cart-customer-details select {
  min-height: 44px;
  cursor: pointer;
}

.cart-customer-details input:focus,
.cart-customer-details select:focus,
.cart-customer-details textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(218, 41, 28, .08);
}

.cart-customer-details .cart-field-invalid {
  border-color: #c62828;
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, .1);
}

.cart-required-note {
  margin: -2px 0 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.65;
}

/* Phase one: product discovery, featured products, and dedicated details. */
.catalog-tools {
  display: grid;
  grid-template-columns: minmax(260px, 2fr) minmax(180px, .8fr) auto;
  align-items: end;
  gap: 14px;
  margin: 24px 0 18px;
  padding: 18px;
  background: linear-gradient(135deg, #fff 0%, #fff7f8 100%);
  border: 1px solid rgba(218, 41, 28, .14);
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(17, 18, 20, .06);
}

.catalog-search-field,
.catalog-brand-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.catalog-input-wrap {
  position: relative;
  display: block;
}

.catalog-search-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  z-index: 1;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

[dir="ltr"] .catalog-search-icon { right: auto; left: 14px; }

.catalog-tools input,
.catalog-tools select {
  width: 100%;
  height: 50px;
  padding: 0 46px 0 14px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

[dir="ltr"] .catalog-tools input { padding: 0 14px 0 46px; }
.catalog-tools select { padding-inline: 14px; }
.catalog-tools input:focus,
.catalog-tools select:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(218, 41, 28, .09); }

.catalog-clear-button {
  height: 50px;
  padding: 0 20px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.catalog-clear-button:hover { color: var(--red); border-color: rgba(218, 41, 28, .34); }
.catalog-result-count { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 13px; font-weight: 800; }

.catalog-card-actions,
.featured-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.catalog-card-actions .card-link,
.featured-actions .card-link { min-height: 42px; padding: 9px 11px; text-align: center; }
.catalog-card-actions .quick-add-to-cart,
.featured-actions .quick-add-to-cart {
  grid-column: 1 / -1;
  min-height: 44px;
  padding: 9px 12px;
  color: white;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.catalog-card-actions .quick-add-to-cart:hover,
.featured-actions .quick-add-to-cart:hover { color: white; background: var(--red-dark); border-color: var(--red-dark); }
.whatsapp-order-link,
.featured-order-link { color: white !important; background: #128c4a !important; border-color: #128c4a !important; }
.whatsapp-order-link:hover,
.featured-order-link:hover { background: #0d713b !important; border-color: #0d713b !important; }

.featured-products { overflow: hidden; }
.featured-intro { max-width: 720px; margin: 10px 0 0; color: var(--muted); line-height: 1.9; }
.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.featured-product-card {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  overflow: hidden;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 10px;
  box-shadow: 0 16px 42px rgba(17, 18, 20, .08);
}

.featured-product-card img { width: 100%; height: 220px; padding: 12px; object-fit: contain; background: white; border-radius: 8px; }
.featured-image-link { display: block; overflow: hidden; border-radius: 8px; }
.featured-image-link:focus-visible { outline: 4px solid rgba(218, 41, 28, .28); outline-offset: 2px; }
.featured-card-clickable,
.home-catalog-card-clickable { cursor: pointer; }
.home-catalog-card-clickable:focus-visible { outline: 4px solid rgba(218, 41, 28, .25); outline-offset: 4px; }
.featured-product-card h3 { margin: 0; font-size: 19px; }
.featured-badge { position: absolute; top: 12px; right: 12px; z-index: 1; padding: 6px 10px; color: white; background: var(--red); border-radius: 999px; font-size: 11px; font-weight: 900; }
[dir="ltr"] .featured-badge { right: auto; left: 12px; }

.product-detail-shell { padding-top: 44px; }
.product-breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 28px; color: var(--muted); font-size: 13px; font-weight: 800; }
.product-breadcrumb a:hover { color: var(--red); }
.product-detail-heading { max-width: 920px; margin-bottom: 24px; }
.product-detail-title { margin: 8px 0 0; font-size: clamp(32px, 4vw, 54px); }
.product-detail-status { display: grid; gap: 16px; justify-items: start; padding: 28px; background: var(--soft); border: 1px solid var(--line); border-radius: 10px; }
.product-detail-card { margin-top: 24px; }
.product-detail-product { grid-template-columns: minmax(280px, .9fr) minmax(0, 1.2fr); align-items: stretch; transform: none !important; }
.product-detail-product > img,
.product-detail-product > img.product-photo,
.product-detail-product > img.product-brand-logo {
  width: min(100%, 360px);
  height: 360px;
  min-height: 0;
  margin: auto;
  padding: 28px;
  object-fit: contain;
  border: 0;
  border-inline-end: 1px solid var(--line);
}
.product-detail-product .catalog-card-body { align-content: center; gap: 18px; padding: clamp(24px, 4vw, 52px); }
.product-detail-product h3 { margin: 0; font-size: clamp(26px, 3vw, 42px); }
.product-detail-product .catalog-card-body p { font-size: 16px; line-height: 2; }
.product-detail-product .product-meta div { padding: 16px; background: var(--soft); border-radius: 8px; }
.product-detail-product .tds-link,
.product-detail-product .whatsapp-order-link { min-height: 50px; justify-content: center; text-align: center; }
.product-applications { margin-top: 24px; padding: 22px; background: #fff7f8; border: 1px solid rgba(218, 41, 28, .14); border-radius: 10px; }
.product-applications h2 { margin: 0 0 16px; font-size: 22px; }
.application-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.application-chips span { padding: 8px 12px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 900; }
.product-use-list { display: grid; flex: 1 1 100%; gap: 11px; margin: 0; padding-inline-start: 24px; }
.product-use-list li { color: var(--ink); line-height: 1.85; }
.product-use-list li::marker { color: var(--red); }
.product-use-note { flex: 1 1 100%; margin: 6px 0 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.product-use-source { color: var(--red); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.related-products-grid { margin-top: 24px; }

@media (max-width: 980px) {
  .featured-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail-product { grid-template-columns: 1fr; }
  .product-detail-product > img,
  .product-detail-product > img.product-photo,
  .product-detail-product > img.product-brand-logo { width: min(100%, 320px); height: 320px; min-height: 0; border-inline-end: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 720px) {
  .catalog-tools { grid-template-columns: 1fr; padding: 14px; }
  .catalog-result-count { grid-column: auto; }
  .catalog-card-actions,
  .featured-actions,
  .featured-products-grid { grid-template-columns: 1fr; }
  .featured-product-card img { height: 200px; }
  .product-detail-shell { padding-top: 28px; }
  .product-detail-product > img,
  .product-detail-product > img.product-photo,
  .product-detail-product > img.product-brand-logo { width: min(100%, 250px); height: 250px; min-height: 0; padding: 16px; }
  .product-detail-product .catalog-card-body { padding: 22px; }
}

/* Shopping cart */
.shopping-cart-button {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 9px 12px;
  color: white;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(17, 18, 20, .28);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.shopping-cart-button:hover { background: var(--red); transform: translateY(-2px); }
.shopping-cart-icon { display: grid; place-items: center; width: 30px; height: 30px; font-size: 21px; }
.shopping-cart-button-text { font-size: 13px; }
.shopping-cart-count { display: grid; place-items: center; min-width: 27px; height: 27px; padding: 0 7px; color: var(--ink); background: white; border-radius: 999px; font-size: 12px; }

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(17, 18, 20, .58);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .22s ease;
}

.shopping-cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 91;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(460px, 94vw);
  max-height: 100vh;
  color: var(--ink);
  background: #fff;
  box-shadow: -24px 0 70px rgba(17, 18, 20, .25);
  transform: translateX(104%);
  transition: transform .24s ease;
}

[dir="ltr"] .shopping-cart-drawer { inset: 0 auto 0 0; box-shadow: 24px 0 70px rgba(17, 18, 20, .25); transform: translateX(-104%); }
.cart-open .cart-backdrop { opacity: 1; }
.cart-open .shopping-cart-drawer { transform: translateX(0); }
.cart-open { overflow: hidden; }

.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px; color: white; background: var(--ink); border-bottom: 4px solid var(--red); }
.cart-drawer-header span { color: rgba(255, 255, 255, .68); font-size: 11px; font-weight: 900; }
.cart-drawer-header h2 { margin: 3px 0 0; color: white; font-size: 25px; }
.cart-close-button { display: grid; place-items: center; width: 42px; height: 42px; color: white; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; font-size: 28px; cursor: pointer; }
.cart-drawer-body { overflow-y: auto; padding: 18px; background: #fbfbfc; }
.cart-items { display: grid; gap: 12px; }
.cart-line-item { display: grid; grid-template-columns: 72px minmax(0, 1fr) 72px; gap: 12px; align-items: center; padding: 12px; background: white; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 8px 24px rgba(17, 18, 20, .05); }
.cart-line-item img { width: 72px; height: 72px; padding: 5px; object-fit: contain; background: white; border: 1px solid var(--line); border-radius: 8px; }
.cart-line-copy { display: grid; gap: 3px; }
.cart-line-copy h3 { margin: 0; font-size: 14px; line-height: 1.6; }
.cart-line-copy span { color: var(--red); font-size: 12px; font-weight: 900; }
.cart-line-copy small { color: var(--muted); font-size: 10px; }
.cart-line-quantity { display: grid; gap: 4px; color: var(--muted); font-size: 10px; font-weight: 900; }
.cart-line-quantity input { width: 100%; height: 38px; padding: 0 7px; text-align: center; border: 1px solid var(--line); border-radius: 7px; font: inherit; }
.cart-remove-item { grid-column: 2 / -1; justify-self: end; padding: 4px 0; color: var(--red); background: transparent; border: 0; font: inherit; font-size: 11px; font-weight: 900; cursor: pointer; }

.cart-empty-state { display: grid; justify-items: center; gap: 10px; padding: 38px 20px; text-align: center; background: white; border: 1px dashed var(--line); border-radius: 10px; }
.cart-empty-state > span { font-size: 42px; }
.cart-empty-state strong { font-size: 18px; }
.cart-empty-state p { max-width: 310px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.cart-empty-state a { color: var(--red); font-weight: 900; }

.cart-customer-details { display: grid; gap: 12px; margin-top: 18px; padding: 16px; background: white; border: 1px solid var(--line); border-radius: 10px; }
.cart-customer-details h3 { margin: 0 0 3px; font-size: 15px; }
.cart-customer-details label { display: grid; gap: 6px; color: var(--ink); font-size: 11px; font-weight: 900; }
.cart-customer-details input,
.cart-customer-details select,
.cart-customer-details textarea { width: 100%; padding: 10px 11px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 7px; font: inherit; font-size: 13px; outline: none; }
.cart-customer-details input:focus,
.cart-customer-details select:focus,
.cart-customer-details textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(218, 41, 28, .08); }
.cart-customer-details textarea { min-height: 76px; resize: vertical; }
.cart-customer-details select { min-height: 44px; cursor: pointer; }
.cart-customer-details select:disabled { color: #7a7d83; background: #f2f3f5; cursor: not-allowed; }
.cart-address-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.cart-address-full { grid-column: 1 / -1; }
.cart-drawer-footer { display: grid; gap: 10px; padding: 15px 18px 18px; background: white; border-top: 1px solid var(--line); box-shadow: 0 -10px 28px rgba(17, 18, 20, .06); }
.cart-summary { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 12px; font-weight: 900; }
.cart-summary strong { color: var(--ink); font-size: 18px; }
.cart-whatsapp-order { display: flex; align-items: center; justify-content: center; min-height: 50px; padding: 10px 14px; color: white; background: #128c4a; border-radius: 8px; text-align: center; font-weight: 900; }
.cart-whatsapp-order:hover { color: white; background: #0d713b; }
.cart-whatsapp-order.disabled { opacity: .45; cursor: not-allowed; }
.cart-clear-button { padding: 5px; color: var(--muted); background: transparent; border: 0; font: inherit; font-size: 11px; font-weight: 900; cursor: pointer; }

.product-order-builder { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(120px, .8fr); gap: 12px; margin-top: 4px; padding: 18px; background: #fff7f8; border: 1px solid rgba(218, 41, 28, .18); border-radius: 10px; }
.product-order-builder-heading { grid-column: 1 / -1; display: grid; gap: 3px; }
.product-order-builder-heading span { color: var(--red); font-size: 11px; font-weight: 900; }
.product-order-builder-heading strong { font-size: 17px; }
.product-order-builder label { display: grid; gap: 7px; color: var(--ink); font-size: 11px; font-weight: 900; }
.product-order-builder select,
.product-order-builder input { width: 100%; height: 44px; padding: 0 11px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 7px; font: inherit; outline: none; }
.product-order-builder select:focus,
.product-order-builder input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(218, 41, 28, .08); }
.product-add-to-cart { grid-column: 1 / -1; min-height: 48px; padding: 10px 14px; color: white; background: var(--red); border: 0; border-radius: 8px; font: inherit; font-weight: 900; cursor: pointer; }
.product-add-to-cart:hover { background: var(--red-dark); }
.product-add-to-cart:disabled { opacity: .48; cursor: not-allowed; }
.product-direct-order-hidden { display: none !important; }

.quick-add-layer {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(12, 12, 14, .58);
  opacity: 0;
  transition: opacity .18s ease;
}

.quick-add-layer[hidden] { display: none; }
.quick-add-open { overflow: hidden; }
.quick-add-open .quick-add-layer { opacity: 1; }

.quick-add-dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: min(720px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(22px, 4vw, 32px);
  background: white;
  border: 1px solid rgba(218, 41, 28, .18);
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .3);
  transform: translateY(18px) scale(.98);
  transition: transform .24s cubic-bezier(.16, 1, .3, 1);
}

.quick-add-open .quick-add-dialog { transform: none; }
.quick-add-close { position: absolute; top: 12px; inset-inline-end: 14px; display: grid; place-items: center; width: 38px; height: 38px; padding: 0; color: var(--ink); background: var(--soft); border: 0; border-radius: 50%; font: inherit; font-size: 24px; cursor: pointer; }
.quick-add-product-summary { display: grid; grid-template-columns: 86px minmax(0, 1fr); align-items: center; gap: 16px; padding-inline-end: 34px; }
.quick-add-product-summary img { width: 86px; height: 86px; padding: 7px; object-fit: contain; background: white; border: 1px solid var(--line); border-radius: 14px; }
.quick-add-product-summary span { color: var(--red); font-size: 11px; font-weight: 900; }
.quick-add-product-summary h2 { margin: 5px 0 0; font-size: clamp(20px, 3vw, 27px); line-height: 1.35; }
.quick-add-instruction { margin: 20px 0 16px; color: var(--muted); line-height: 1.8; }
.quick-add-fields { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(110px, .65fr); gap: 12px; }
.quick-add-fields label { display: grid; gap: 8px; color: var(--ink); font-size: 12px; font-weight: 900; }
.quick-add-fields select,
.quick-add-fields input { width: 100%; height: 48px; padding: 0 12px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 10px; font: inherit; outline: none; }
.quick-add-fields select:focus,
.quick-add-fields input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(218, 41, 28, .09); }
.quick-add-carton-info { min-height: 20px; margin: 12px 0; color: var(--muted); font-size: 12px; font-weight: 800; }
.quick-add-confirm { width: 100%; min-height: 50px; padding: 11px 16px; color: white; background: var(--red); border: 0; border-radius: 10px; font: inherit; font-weight: 900; cursor: pointer; }
.quick-add-confirm:hover:not(:disabled) { background: var(--red-dark); }
.quick-add-confirm:disabled { opacity: .48; cursor: not-allowed; }

.cart-toast { position: fixed; left: 50%; bottom: 86px; z-index: 100; max-width: min(420px, 90vw); padding: 12px 18px; color: white; background: var(--ink); border-right: 4px solid var(--red); border-radius: 8px; box-shadow: 0 16px 44px rgba(17, 18, 20, .28); font-size: 13px; font-weight: 900; text-align: center; opacity: 0; pointer-events: none; transform: translate(-50%, 12px); transition: opacity .2s ease, transform .2s ease; }
.cart-toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 720px) {
  .shopping-cart-button { left: 12px; bottom: 12px; }
  .shopping-cart-button-text { display: none; }
  .shopping-cart-drawer { width: 100%; }
  .cart-line-item { grid-template-columns: 62px minmax(0, 1fr) 66px; }
  .cart-line-item img { width: 62px; height: 62px; }
  .product-order-builder { grid-template-columns: 1fr; }
  .product-order-builder-heading,
  .product-add-to-cart { grid-column: auto; }
  .quick-add-fields { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .cart-address-grid { grid-template-columns: 1fr; }
  .cart-address-full { grid-column: auto; }
}

/* Dedicated contact page */
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  min-height: 430px;
}

.contact-hero h1 {
  max-width: 700px;
  font-family: var(--font-arabic);
  font-size: clamp(38px, 4.5vw, 64px);
}

[dir="ltr"] .contact-hero h1 { font-family: var(--font-latin); }
.contact-hero-card { display: grid; gap: 12px; padding: 24px; color: white; background: var(--ink); border-top: 5px solid var(--red); border-radius: 12px; box-shadow: var(--shadow); }
.contact-hero-card strong { font-size: 20px; }
.contact-hero-card span { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.9; }

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: start;
}

.contact-info-panel,
.contact-form-card {
  padding: clamp(22px, 3vw, 36px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(17,18,20,.07);
}

.contact-info-panel { display: grid; gap: 12px; }
.contact-info-panel h2,
.contact-form-card h2 { margin-bottom: 6px; font-size: clamp(27px, 2vw, 36px); }
.contact-info-panel > p,
.contact-form-card > p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.contact-direct-link { display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 12px; align-items: center; padding: 13px; background: var(--soft); border: 1px solid transparent; border-radius: 9px; }
.contact-direct-link:hover { color: var(--red); background: #fff7f8; border-color: rgba(218,41,28,.16); }
.contact-direct-link span:first-child { display: grid; place-items: center; width: 42px; height: 42px; color: white; background: var(--red); border-radius: 8px; font-weight: 900; }
.contact-direct-link small,
.contact-direct-link strong { display: block; }
.contact-direct-link small { color: var(--muted); font-size: 10px; font-weight: 800; }
.contact-direct-link strong { overflow-wrap: anywhere; font-size: 13px; }

.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: var(--ink); font-size: 12px; font-weight: 900; }
.contact-form .contact-field-wide { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}
.contact-form input,
.contact-form select { height: 48px; }
.contact-form select { cursor: pointer; }
.contact-form select:disabled { color: #777b82; background: #f1f2f4; cursor: not-allowed; }
.contact-form textarea { min-height: 145px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(218,41,28,.08); }
.contact-form-submit { grid-column: 1 / -1; min-height: 52px; color: white; background: #128c4a; border: 0; border-radius: 8px; font: inherit; font-weight: 900; cursor: pointer; }
.contact-form-submit:hover { background: #0d713b; }
.contact-form-submit:disabled { opacity: .55; cursor: wait; transform: none; box-shadow: none; }
.contact-form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 11px; }

.contact-map-section { padding-top: 0; }
.contact-map-heading { margin-bottom: 22px; }
.contact-map { overflow: hidden; min-height: 460px; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.contact-map iframe { display: block; width: 100%; height: 460px; border: 0; }

@media (max-width: 900px) {
  .contact-hero,
  .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .contact-field-wide,
  .contact-form-submit,
  .contact-form-note { grid-column: auto; }
  .contact-map,
  .contact-map iframe { min-height: 360px; height: 360px; }
}

/* Exhibition archive */
.exhibitions-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  min-height: 440px;
}

.exhibitions-hero h1 { font-family: var(--font-arabic); }
[dir="ltr"] .exhibitions-hero h1 { font-family: var(--font-latin); }
.exhibitions-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  background: var(--ink);
  border-top: 5px solid var(--red);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.exhibitions-visual span {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  color: white;
  background: linear-gradient(145deg, #2d2e32, #17181b);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  font-size: 34px;
}
.exhibitions-visual span:first-child { grid-column: 1 / -1; aspect-ratio: 2 / 1; color: var(--red); font-size: 54px; }
.exhibitions-gallery-section { padding-top: 0; }
.exhibitions-empty-state {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 340px;
  padding: clamp(36px, 7vw, 80px) 24px;
  text-align: center;
  background: white;
  border: 1px dashed rgba(218,41,28,.3);
  border-radius: 12px;
}
.exhibitions-empty-state .media-icon { width: 72px; height: 72px; font-size: 28px; }
.exhibitions-empty-state h2 { font-size: clamp(27px, 3vw, 40px); }
.exhibitions-empty-state p { max-width: 660px; margin: 0; color: var(--muted); line-height: 2; }
.media-exhibitions-card { border-top: 4px solid var(--red); }

@media (max-width: 820px) {
  .exhibitions-hero { grid-template-columns: 1fr; min-height: auto; }
}

.catalog-card.catalog-search-match {
  display: grid !important;
}

.catalog-card.catalog-search-hidden {
  display: none !important;
}

/* Homepage product solutions and company-value sections. */
.section-heading-centered {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: 38px;
  text-align: center;
}

.section-heading-centered .eyebrow {
  margin-bottom: 0;
  font-size: 14px;
}

.section-heading-centered h2 {
  position: relative;
  max-width: 880px;
  padding-bottom: 18px;
}

.section-heading-centered h2::after {
  content: "";
  position: absolute;
  inset-inline-start: 50%;
  bottom: 0;
  width: 84px;
  height: 4px;
  border-radius: 999px;
  background: var(--red);
  transform: translateX(50%);
}

html[dir="ltr"] .section-heading-centered h2::after {
  transform: translateX(-50%);
}

.solution-intro {
  max-width: 820px;
  margin: 4px auto 0;
  color: var(--muted);
  font-size: clamp(15px, .35vw + 14px, 18px);
  line-height: 1.9;
}

.home-solutions {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(218, 41, 28, .07), transparent 28%),
    #fff;
}

.home-solutions .filters {
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto 30px;
}

.home-solutions .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1320px;
  margin-inline: auto;
  gap: 22px;
}

.home-solutions .product-card {
  position: relative;
  justify-items: center;
  min-height: 330px;
  padding: 32px 26px 26px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(17, 18, 20, .06);
  isolation: isolate;
}

.home-solutions .product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 5px;
  border-radius: 12px 12px 0 0;
  background: var(--red);
  transform: scaleX(.22);
  transition: transform .25s ease;
}

.home-solutions .product-card:hover::before {
  transform: scaleX(1);
}

.home-solutions .product-card h3 {
  font-size: clamp(20px, .55vw + 17px, 25px);
}

.home-solutions .product-card p {
  margin: 0;
}

.home-solutions .product-card .card-link {
  align-self: end;
  min-width: 150px;
  margin-top: auto;
}

.home-solutions .product-icon {
  width: 82px;
  height: 82px;
  color: var(--red);
  background: #fff2f4;
  border: 1px solid rgba(218, 41, 28, .16);
  border-radius: 22px;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, .72);
  font-family: var(--font-latin);
  font-size: 15px;
  letter-spacing: .03em;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.home-solutions .product-icon-shape {
  display: block;
  width: 44px;
  height: 44px;
  background: currentColor;
  -webkit-mask: var(--product-category-icon) center / contain no-repeat;
  mask: var(--product-category-icon) center / contain no-repeat;
}

.home-solutions .product-card[data-category="silicone"] .product-icon-shape { --product-category-icon: url("assets/icons/droplets.svg"); }
.home-solutions .product-card[data-category="adhesive"] .product-icon-shape { --product-category-icon: url("assets/icons/glue.svg"); }
.home-solutions .product-card[data-category="spray"] .product-icon-shape { --product-category-icon: url("assets/icons/spray-can.svg"); }
.home-solutions .product-card[data-category="insulation"] .product-icon-shape { --product-category-icon: url("assets/icons/shield-check.svg"); }
.home-solutions .product-card[data-category="thermal"] .product-icon-shape { --product-category-icon: url("assets/icons/flame.svg"); }
.home-solutions .product-card[data-category="car-care"] .product-icon-shape { --product-category-icon: url("assets/icons/car-front.svg"); }
.home-solutions .product-card[data-category="plumbing"] .product-icon-shape { --product-category-icon: url("assets/icons/wrench.svg"); }
.home-solutions .product-card[data-category="hardware"] .product-icon-shape { --product-category-icon: url("assets/icons/hammer.svg"); }
.home-solutions .product-card[data-category="contracting"] .product-icon-shape { --product-category-icon: url("assets/icons/hard-hat.svg"); }

.home-solutions .product-card:hover .product-icon {
  color: white;
  background: var(--red);
  transform: translateY(-4px) rotate(-3deg);
}

.why-alreda {
  overflow: hidden;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  max-width: 1240px;
  margin-inline: auto;
  gap: 24px;
}

.value-card {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  min-height: 330px;
  padding: 34px 30px;
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(17, 18, 20, .09);
  transition: transform .22s ease, box-shadow .22s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(17, 18, 20, .14);
}

.value-card-featured {
  color: white;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  border-color: transparent;
  box-shadow: 0 24px 48px rgba(218, 41, 28, .25);
  transform: translateY(-14px);
}

.value-card-featured:hover {
  transform: translateY(-19px);
}

.value-card h3 {
  font-size: clamp(22px, .7vw + 18px, 28px);
}

.value-card p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.value-card-featured h3,
.value-card-featured p {
  color: white;
}

.value-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  color: var(--red);
  background: #fff2f4;
  border-radius: 50%;
  font-family: var(--font-latin);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.value-card-featured .value-icon {
  color: white;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .38);
}

.value-icon-years {
  font-size: 24px;
}

@media (max-width: 980px) {
  .home-solutions .product-grid,
  .value-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-card-featured {
    transform: none;
  }

  .value-card-featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 680px) {
  .section-heading-centered {
    margin-bottom: 28px;
  }

  .home-solutions .product-grid,
  .value-cards {
    grid-template-columns: 1fr;
  }

  .home-solutions .product-card,
  .value-card {
    min-height: 0;
    padding: 26px 20px;
  }

  .home-solutions .filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .home-solutions .filter {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

/* Brand atmosphere shared by every page. */
body {
  background-color: #f3f4f6;
  background-image:
    radial-gradient(circle at 6% 4%, rgba(218, 41, 28, .12), transparent 30rem),
    radial-gradient(circle at 94% 18%, rgba(17, 18, 20, .09), transparent 28rem),
    linear-gradient(145deg, #fafafa 0%, #f3f4f6 48%, #fff 100%);
  background-attachment: fixed;
}

main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 18, 20, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 20, .026) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 88%);
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

main::after {
  content: "";
  position: absolute;
  top: 12%;
  inset-inline-end: -180px;
  z-index: -2;
  width: 430px;
  height: 430px;
  pointer-events: none;
  border: 74px solid rgba(218, 41, 28, .035);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(17, 18, 20, .018);
}

main > section {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  overflow: clip;
}

main > .section {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .91), rgba(255, 255, 255, .7)),
    radial-gradient(circle at 12% 14%, rgba(218, 41, 28, .065), transparent 26rem);
  border-block: 1px solid rgba(17, 18, 20, .045);
}

main > .section:nth-of-type(even) {
  background:
    linear-gradient(135deg, rgba(247, 247, 249, .94), rgba(255, 255, 255, .78)),
    radial-gradient(circle at 86% 22%, rgba(218, 41, 28, .075), transparent 24rem);
}

main > .section-band {
  background:
    radial-gradient(circle at 8% 12%, rgba(218, 41, 28, .12), transparent 25rem),
    radial-gradient(circle at 88% 75%, rgba(17, 18, 20, .08), transparent 27rem),
    linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(245, 246, 248, .94));
  border-block: 1px solid rgba(17, 18, 20, .06);
}

main > section:first-child {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .98), rgba(255, 245, 247, .94) 48%, rgba(237, 239, 242, .94)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(218, 41, 28, .035) 18px 19px);
}

main > section:first-child::before {
  content: "";
  position: absolute;
  top: clamp(-210px, -13vw, -120px);
  inset-inline-start: clamp(-190px, -11vw, -100px);
  z-index: -1;
  width: clamp(300px, 33vw, 540px);
  aspect-ratio: 1;
  border: clamp(42px, 4vw, 72px) solid rgba(218, 41, 28, .07);
  border-radius: 50%;
  box-shadow:
    0 0 0 clamp(22px, 2.2vw, 38px) rgba(255, 255, 255, .54),
    0 0 0 clamp(24px, 2.4vw, 42px) rgba(17, 18, 20, .025);
}

main > section:first-child::after {
  content: "ALREDA  ·  SEALANTS";
  position: absolute;
  inset-inline-end: clamp(18px, 4vw, 70px);
  bottom: 18px;
  z-index: -1;
  color: rgba(17, 18, 20, .055);
  font-family: var(--font-latin);
  font-size: clamp(12px, 1.1vw, 17px);
  font-weight: 800;
  letter-spacing: .3em;
  white-space: nowrap;
}

main > section:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 14%;
  inset-inline-start: -120px;
  z-index: -1;
  width: 260px;
  height: 260px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(218, 41, 28, .09), transparent 68%);
  filter: blur(6px);
}

main > section:nth-of-type(even):not(:first-child)::before {
  inset-inline-start: auto;
  inset-inline-end: -120px;
  background: radial-gradient(circle, rgba(17, 18, 20, .075), transparent 68%);
}

.hero-media img,
.split-image img,
.contact-map-frame,
.media-document-preview,
.exhibition-gallery img {
  box-shadow:
    0 30px 70px rgba(17, 18, 20, .16),
    0 0 0 1px rgba(255, 255, 255, .72);
}

.brand-logo-card,
.about-story,
.about-points,
.product-card,
.catalog-card,
.featured-product-card,
.value-card,
.media-card,
.contact-panel,
.product-detail-product,
.document-card,
.exhibition-card {
  background-color: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.section-heading h2,
.catalog-hero h1,
.media-hero h1,
.contact-hero h1 {
  text-shadow: 0 12px 34px rgba(17, 18, 20, .08);
}

@media (max-width: 720px) {
  body {
    background-attachment: scroll;
  }

  main::before {
    background-size: 38px 38px;
    opacity: .72;
  }

  main::after {
    inset-inline-end: -230px;
    width: 360px;
    height: 360px;
  }

  main > section:first-child::after {
    letter-spacing: .16em;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    background-attachment: scroll;
  }
}

/* Full brand-color canvas: burgundy, graphite, blush, and champagne. */
body {
  background:
    radial-gradient(circle at 12% 4%, rgba(218, 41, 28, .28), transparent 34rem),
    radial-gradient(circle at 90% 24%, rgba(185, 154, 97, .12), transparent 30rem),
    linear-gradient(145deg, #181316, #2c1b21 52%, #120f10);
}

.site-header {
  color: white;
  background:
    linear-gradient(105deg, rgba(20, 15, 17, .95), rgba(55, 27, 36, .94) 58%, rgba(24, 17, 20, .95));
  border-bottom-color: rgba(185, 154, 97, .24);
  box-shadow: 0 18px 48px rgba(10, 7, 8, .24);
}

.brand strong,
.nav a,
.menu-button {
  color: rgba(255, 255, 255, .9);
}

.brand small {
  color: rgba(255, 255, 255, .58);
}

.nav a:hover,
.nav a.active-nav {
  color: white;
  background: rgba(218, 41, 28, .22);
}

.nav a::after {
  background: linear-gradient(90deg, var(--red), var(--champagne));
}

.site-search-control {
  background: rgba(255, 244, 247, .1);
  border-color: rgba(255, 255, 255, .15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 10px 30px rgba(0, 0, 0, .12);
}

.site-search input {
  color: white;
}

.site-search input::placeholder {
  color: rgba(255, 255, 255, .58);
}

.language-toggle {
  color: #f5dfb5;
  background: rgba(185, 154, 97, .1);
  border-color: rgba(185, 154, 97, .38);
}

.language-toggle:hover {
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: transparent;
}

main > .section {
  background:
    radial-gradient(circle at 12% 10%, rgba(218, 41, 28, .14), transparent 28rem),
    radial-gradient(circle at 90% 86%, rgba(185, 154, 97, .12), transparent 24rem),
    linear-gradient(125deg, #eadde0, #d9d5d7 54%, #f0e4e7);
  border-block-color: rgba(82, 40, 52, .14);
}

main > .section:nth-of-type(even),
main > .section-band {
  background:
    radial-gradient(circle at 8% 12%, rgba(218, 41, 28, .34), transparent 27rem),
    radial-gradient(circle at 92% 82%, rgba(185, 154, 97, .16), transparent 25rem),
    linear-gradient(135deg, #191416, #42232d 52%, #21171b);
  border-block-color: rgba(185, 154, 97, .15);
}

main > section:first-child {
  background:
    radial-gradient(circle at 14% 14%, rgba(218, 41, 28, .42), transparent 31rem),
    radial-gradient(circle at 88% 22%, rgba(185, 154, 97, .18), transparent 26rem),
    repeating-linear-gradient(135deg, transparent 0 20px, rgba(255, 255, 255, .018) 20px 21px),
    linear-gradient(122deg, #171214, #4b2430 58%, #1c1618);
}

main > section:first-child h1,
main > section:first-child .hero-text,
main > section:first-child .product-detail-title,
main > section:first-child .product-breadcrumb,
main > section:first-child > .reveal > h1,
main > section:first-child > .reveal > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .94);
}

main > section:first-child .eyebrow,
main > .section:nth-of-type(even) > .section-heading .eyebrow,
main > .section-band > .section-heading .eyebrow {
  color: #f3d7a0;
  background: rgba(185, 154, 97, .12);
  border-color: rgba(185, 154, 97, .3);
}

main > .section:nth-of-type(even) > .section-heading h2,
main > .section-band > .section-heading h2,
main > .section-band > .section-heading .featured-intro,
main > .section:nth-of-type(even) > .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, .92);
}

main > section:first-child::before {
  border-color: rgba(218, 41, 28, .19);
  box-shadow:
    0 0 0 clamp(22px, 2.2vw, 38px) rgba(185, 154, 97, .045),
    0 0 0 clamp(24px, 2.4vw, 42px) rgba(255, 255, 255, .025);
}

main > section:first-child::after {
  color: rgba(255, 255, 255, .09);
}

.brand-logo-card,
.product-card,
.catalog-card,
.featured-product-card,
.media-card,
.about-story,
.about-points,
.value-card:not(.value-card-featured),
.contact-info-panel,
.contact-form-card,
.document-meta,
.product-detail-product,
.product-detail-status,
.exhibitions-empty-state,
.catalog-tools {
  background:
    radial-gradient(circle at 100% 0, rgba(218, 41, 28, .075), transparent 38%),
    linear-gradient(145deg, rgba(255, 247, 249, .96), rgba(238, 225, 229, .94));
  border-color: rgba(93, 46, 59, .14);
}

.brand-logo-card img,
.catalog-card img,
.catalog-card img.product-photo,
.catalog-card img.product-brand-logo,
.featured-product-card img,
.product-detail-product > img,
.product-detail-product > img.product-photo,
.product-detail-product > img.product-brand-logo {
  background: linear-gradient(145deg, #f9eef1, #e5d7db);
  border-color: rgba(93, 46, 59, .11);
}

.about-points span,
.document-meta span,
.product-detail-product .product-meta div,
.contact-direct-link {
  background: linear-gradient(135deg, rgba(255, 246, 248, .96), rgba(225, 211, 216, .9));
  border-color: rgba(93, 46, 59, .11);
}

.filters,
.document-toolbar {
  background: rgba(237, 222, 226, .82);
  border-color: rgba(93, 46, 59, .15);
}

.catalog-input-wrap input,
.catalog-brand-field select,
.contact-form input,
.contact-form select,
.contact-form textarea,
.site-search-control:focus-within {
  background-color: rgba(255, 242, 245, .94);
}

.catalog-input-wrap input,
.catalog-brand-field select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(93, 46, 59, .16);
}

.site-search-control:focus-within {
  border-color: rgba(218, 41, 28, .7);
}

.site-search-control:focus-within input {
  color: var(--ink);
}

.site-search-control:focus-within input::placeholder {
  color: var(--muted);
}

.document-viewer-wrap {
  background:
    radial-gradient(circle at 12% 0, rgba(218, 41, 28, .22), transparent 32rem),
    linear-gradient(135deg, #24181c, #492630 56%, #181315);
}

.pdf-viewer {
  background: #eadde1;
  border-color: rgba(185, 154, 97, .2);
}

.contact-map {
  background: linear-gradient(145deg, #2a1a20, #5a2937);
  border-color: rgba(185, 154, 97, .24);
}

.home-solutions .product-icon,
.value-icon {
  color: var(--red-dark);
  background: linear-gradient(145deg, #f7e5e9, #ddc7cd);
  border-color: rgba(218, 41, 28, .18);
}

.secondary-action,
.card-link,
.tds-link {
  background: linear-gradient(135deg, rgba(255, 246, 248, .96), rgba(225, 211, 216, .94));
  border-color: rgba(93, 46, 59, .15);
}

.footer {
  background:
    radial-gradient(circle at 8% 0, rgba(218, 41, 28, .42), transparent 36%),
    radial-gradient(circle at 88% 86%, rgba(185, 154, 97, .16), transparent 30%),
    linear-gradient(145deg, #120e10, #321b23 56%, #0c0a0b);
}

@media (max-width: 720px) {
  .site-header {
    background: linear-gradient(135deg, rgba(20, 15, 17, .97), rgba(67, 30, 41, .96));
  }
}

/* Modern-classic visual system. */
:root {
  --ink: #171417;
  --muted: #68646a;
  --line: rgba(23, 20, 23, .11);
  --panel: rgba(255, 255, 255, .94);
  --soft: #f5f2f2;
  --red: #da291c;
  --red-dark: #9f1d15;
  --champagne: #b99a61;
  --ivory: #fbfaf8;
  --shadow: 0 28px 80px rgba(38, 21, 27, .14);
  --shadow-soft: 0 18px 50px rgba(38, 21, 27, .09);
}

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

.site-header {
  min-height: 84px;
  gap: clamp(14px, 2vw, 30px);
  padding-block: 13px;
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(23, 20, 23, .08);
  box-shadow: 0 14px 42px rgba(23, 20, 23, .06);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
}

.brand-mark {
  width: 68px;
  height: 54px;
  border-radius: 15px;
  border-color: rgba(218, 41, 28, .14);
  box-shadow: 0 12px 30px rgba(38, 21, 27, .12);
}

.brand strong {
  font-size: 18px;
  letter-spacing: -.01em;
}

.nav a {
  position: relative;
  padding: 10px 14px;
  color: #555157;
  border-radius: 999px;
}

.nav a::after {
  content: "";
  position: absolute;
  inset-inline: 18px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .22s ease;
}

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

.nav a:hover,
.nav a.active-nav {
  color: var(--ink);
  background: rgba(218, 41, 28, .055);
}

.site-search-control {
  height: 48px;
  border-color: rgba(23, 20, 23, .1);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 9px 25px rgba(23, 20, 23, .05);
}

.site-search button {
  border-radius: 50%;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
}

.language-toggle {
  min-width: 52px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 26px rgba(38, 21, 27, .07);
}

.hero {
  min-height: min(760px, calc(100svh - 84px));
  gap: clamp(38px, 6vw, 92px);
}

.hero-copy,
.catalog-hero-copy,
.media-copy {
  position: relative;
}

.hero-copy::before,
.catalog-hero-copy::before,
.media-copy::before {
  content: "";
  position: absolute;
  inset-inline-start: -24px;
  top: 2px;
  width: 4px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(var(--red), var(--champagne));
  box-shadow: 0 0 28px rgba(218, 41, 28, .2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 13px;
  color: var(--red-dark);
  background: rgba(218, 41, 28, .075);
  border: 1px solid rgba(218, 41, 28, .12);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .025em;
}

h1 {
  font-size: clamp(46px, 4.6vw + 12px, 78px);
  line-height: 1.08;
  text-wrap: balance;
}

h2 {
  text-wrap: balance;
}

.hero-text {
  max-width: 720px;
  color: #5d585f;
  font-size: clamp(16px, .58vw + 14px, 20px);
}

.primary-action,
.secondary-action,
.card-link,
.tds-link,
.contact-form-submit,
.catalog-clear-button {
  min-height: 52px;
  padding-inline: 24px;
  border-radius: 999px;
  transition: transform .22s ease, box-shadow .22s ease, color .22s ease, background .22s ease;
}

.primary-action,
.contact-form-submit {
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 16px 36px rgba(218, 41, 28, .24);
}

.primary-action:hover,
.contact-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 21px 44px rgba(218, 41, 28, .3);
}

.secondary-action,
.card-link,
.tds-link {
  background: rgba(255, 255, 255, .76);
  border-color: rgba(23, 20, 23, .12);
  box-shadow: 0 10px 28px rgba(23, 20, 23, .055);
}

.hero-media img,
.split-image img {
  border-radius: 28px;
  border-color: rgba(255, 255, 255, .8);
}

.metric-panel {
  inset: auto 20px 20px 20px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(23, 20, 23, .94), rgba(58, 36, 43, .91));
  border-color: rgba(255, 255, 255, .2);
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(23, 20, 23, .24);
  backdrop-filter: blur(14px);
}

.section,
.section-band {
  padding-block: clamp(70px, 8vw, 112px);
}

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

.section-heading:not(.section-heading-centered) h2 {
  position: relative;
  padding-bottom: 14px;
}

.section-heading:not(.section-heading-centered) h2::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 68px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--champagne));
}

.trust-strip {
  gap: 0;
  padding-inline: clamp(18px, 5vw, 80px);
  background: linear-gradient(105deg, #171417, #2f2025 54%, #171417);
  border-block: 0;
  box-shadow: 0 22px 54px rgba(23, 20, 23, .16);
}

.trust-strip span {
  position: relative;
  padding-block: 22px;
  color: rgba(255, 255, 255, .88);
  background: transparent;
  border-top: 0;
  border-inline-end: 1px solid rgba(255, 255, 255, .1);
  letter-spacing: .015em;
}

.trust-strip span:last-child {
  border-inline-end: 0;
}

.trust-strip span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-inline-end: 9px;
  background: var(--champagne);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(185, 154, 97, .55);
}

.brand-logo-grid,
.product-grid,
.catalog-grid,
.featured-products-grid,
.media-grid {
  gap: 24px;
}

.brand-logo-card,
.product-card,
.catalog-card,
.featured-product-card,
.media-card,
.about-story,
.about-points,
.contact-info-panel,
.contact-form-card,
.document-meta,
.product-detail-product,
.exhibitions-empty-state {
  border-color: rgba(23, 20, 23, .09);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.brand-logo-card,
.product-card,
.catalog-card,
.featured-product-card,
.media-card {
  border-top-width: 1px;
  transition:
    transform .28s cubic-bezier(.2, .75, .25, 1),
    box-shadow .28s ease,
    border-color .28s ease;
}

.brand-logo-card:hover,
.product-card:hover,
.catalog-card:hover,
.featured-product-card:hover,
.media-card:hover {
  transform: translateY(-8px);
  border-color: rgba(218, 41, 28, .24);
  box-shadow: 0 30px 72px rgba(38, 21, 27, .15);
}

.brand-logo-card {
  position: relative;
  min-height: 236px;
  padding: 20px;
  overflow: hidden;
}

.brand-logo-card::after,
.catalog-card::after,
.featured-product-card::after,
.media-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--red), var(--champagne), transparent 88%);
}

.brand-logo-card img {
  height: 158px;
  border-radius: 16px;
  border-color: rgba(23, 20, 23, .08);
  transition: transform .3s ease, filter .3s ease;
}

.brand-logo-card:hover img {
  transform: scale(1.035);
}

.about-grid {
  gap: 28px;
}

.about-story,
.about-points {
  padding: clamp(26px, 3vw, 40px);
  border-top-width: 1px;
}

.about-story {
  position: relative;
}

.about-story::before {
  content: "“";
  position: absolute;
  top: 12px;
  inset-inline-end: 26px;
  color: rgba(218, 41, 28, .09);
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: 1;
}

.about-points span {
  padding: 15px 17px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(245, 242, 242, .9));
  border-radius: 14px;
}

.filters {
  padding: 10px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(23, 20, 23, .08);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(38, 21, 27, .055);
  backdrop-filter: blur(14px);
}

.filter {
  min-height: 44px;
  padding-inline: 18px;
  background: transparent;
  border-color: transparent;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.filter:hover {
  transform: translateY(-1px);
  background: rgba(218, 41, 28, .065);
  border-color: transparent;
}

.filter.active {
  color: white;
  background: linear-gradient(135deg, #231a1e, #4a2b35);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(23, 20, 23, .18);
}

.home-solutions .product-card {
  min-height: 350px;
  border-radius: 24px;
}

.home-solutions .product-card::before {
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--red), var(--champagne));
}

.home-solutions .product-icon,
.value-icon,
.media-icon {
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(218, 41, 28, .12);
}

.value-card {
  min-height: 350px;
  border-radius: 24px;
}

.value-card-featured {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .16), transparent 34%),
    linear-gradient(145deg, var(--red), var(--red-dark));
  box-shadow: 0 30px 62px rgba(218, 41, 28, .28);
}

.catalog-summary {
  padding: 20px;
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(218, 41, 28, .38), transparent 42%),
    linear-gradient(145deg, #171417, #37252b);
  border: 1px solid rgba(255, 255, 255, .1);
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.catalog-summary span {
  color: rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 15px;
}

.catalog-summary strong {
  color: #fff;
}

.catalog-tools {
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, .86);
  border-color: rgba(218, 41, 28, .12);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(38, 21, 27, .1);
  backdrop-filter: blur(18px);
}

.catalog-input-wrap input,
.catalog-brand-field select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 52px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border-color: rgba(23, 20, 23, .12);
  border-radius: 15px;
  box-shadow: inset 0 1px 2px rgba(23, 20, 23, .025);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.catalog-input-wrap input:focus,
.catalog-brand-field select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: white;
  border-color: rgba(218, 41, 28, .5);
  box-shadow: 0 0 0 4px rgba(218, 41, 28, .08), 0 12px 30px rgba(38, 21, 27, .06);
  outline: 0;
}

.catalog-brand-heading {
  padding: 15px 20px;
  color: white;
  background: linear-gradient(100deg, #21181c, #472a34);
  border: 1px solid rgba(255, 255, 255, .07);
  border-inline-start: 5px solid var(--champagne);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(23, 20, 23, .12);
}

.catalog-card {
  position: relative;
  border-radius: 24px;
}

.catalog-card img,
.catalog-card img.product-photo,
.catalog-card img.product-brand-logo {
  background: linear-gradient(145deg, #fff, #f8f5f5);
}

.catalog-card-body {
  padding: 22px;
}

.product-tag,
.featured-badge {
  color: var(--red-dark);
  background: linear-gradient(135deg, rgba(218, 41, 28, .09), rgba(185, 154, 97, .12));
  border-color: rgba(185, 154, 97, .28);
  border-radius: 999px;
}

.catalog-card-actions,
.featured-actions {
  gap: 10px;
}

.catalog-card-actions .card-link,
.featured-actions .card-link,
.catalog-card-actions .quick-add-to-cart,
.featured-actions .quick-add-to-cart {
  min-height: 46px;
  border-radius: 999px;
}

.catalog-card-actions .quick-add-to-cart,
.featured-actions .quick-add-to-cart {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(218, 41, 28, .2);
}

.featured-product-card {
  position: relative;
  padding: 20px;
  border-radius: 24px;
}

.featured-product-card img {
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f7f4f4);
}

.media-section {
  gap: clamp(38px, 6vw, 88px);
}

.media-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
}

.media-icon {
  width: 60px;
  height: 60px;
  color: white;
  background: linear-gradient(145deg, #251b1f, #52303b);
}

.media-card:hover .media-icon {
  background: linear-gradient(145deg, var(--red), var(--red-dark));
}

.document-meta {
  padding: 20px;
  background: rgba(255, 255, 255, .88);
}

.document-meta span {
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(245,242,242,.88));
  border: 1px solid rgba(23, 20, 23, .07);
  border-radius: 14px;
}

.document-toolbar {
  padding: 16px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(23,20,23,.08);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.pdf-viewer {
  border-radius: 24px;
  border-color: rgba(23,20,23,.1);
  box-shadow: var(--shadow);
}

.product-detail-status {
  padding: 34px;
  background:
    radial-gradient(circle at 10% 0, rgba(218,41,28,.1), transparent 40%),
    rgba(255,255,255,.82);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.product-detail-product {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.product-detail-product > img,
.product-detail-product > img.product-photo,
.product-detail-product > img.product-brand-logo {
  background: linear-gradient(145deg, #fff, #f7f3f4);
}

.product-detail-product .product-meta div {
  padding: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(245,242,242,.9));
  border: 1px solid rgba(23,20,23,.07);
  border-radius: 15px;
}

.product-applications {
  padding: 26px;
  background: linear-gradient(135deg, rgba(218,41,28,.07), rgba(255,255,255,.9));
  border-color: rgba(218,41,28,.13);
  border-radius: 20px;
}

.application-chips span {
  padding: 10px 14px;
  background: rgba(255,255,255,.88);
  border-color: rgba(23,20,23,.09);
  box-shadow: 0 7px 18px rgba(38,21,27,.045);
}

.contact-hero-card,
.exhibitions-visual {
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(218, 41, 28, .38), transparent 40%),
    linear-gradient(145deg, #171417, #3b272e);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 1px solid rgba(255,255,255,.1);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.contact-info-panel,
.contact-form-card {
  padding: clamp(26px, 3.5vw, 44px);
  background: rgba(255,255,255,.88);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.contact-direct-link {
  padding: 15px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(245,242,242,.86));
  border: 1px solid rgba(23,20,23,.07);
  border-radius: 16px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-direct-link:hover {
  transform: translateX(-3px);
  background: white;
  border-color: rgba(218,41,28,.18);
  box-shadow: 0 14px 30px rgba(38,21,27,.07);
}

html[dir="ltr"] .contact-direct-link:hover {
  transform: translateX(3px);
}

.contact-direct-link span:first-child {
  border-radius: 13px;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  box-shadow: 0 10px 22px rgba(218,41,28,.2);
}

.contact-map {
  overflow: hidden;
  border: 1px solid rgba(23,20,23,.09);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.exhibitions-visual span {
  border-radius: 16px;
}

.exhibitions-empty-state {
  background:
    radial-gradient(circle at 50% 0, rgba(218,41,28,.08), transparent 40%),
    rgba(255,255,255,.9);
  border-style: solid;
}

.accordion {
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.accordion-trigger {
  min-height: 62px;
  background: rgba(255,255,255,.88);
}

.shopping-cart-button {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: linear-gradient(135deg, #21181c, #4a2934);
  box-shadow: 0 20px 46px rgba(23,20,23,.24);
  backdrop-filter: blur(12px);
}

.shopping-cart-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.footer {
  position: relative;
  padding-top: clamp(46px, 6vw, 76px);
  background:
    radial-gradient(circle at 8% 0, rgba(218,41,28,.28), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(185,154,97,.12), transparent 30%),
    linear-gradient(145deg, #151214, #24191d 56%, #0e0c0d);
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--champagne), var(--red));
}

.footer-brand strong {
  font-size: clamp(23px, 1vw + 18px, 30px);
}

.footer .contact-card {
  min-height: 72px;
  background: rgba(255,255,255,.065);
  border-color: rgba(255,255,255,.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer .contact-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.11);
  border-color: rgba(185,154,97,.38);
}

.footer .contact-icon {
  border-radius: 12px;
  background: rgba(218,41,28,.14);
  border: 1px solid rgba(255,255,255,.11);
}

.reveal {
  transform: translateY(24px) scale(.992);
  transition:
    opacity .7s cubic-bezier(.2,.75,.25,1),
    transform .7s cubic-bezier(.2,.75,.25,1);
}

@media (max-width: 980px) {
  .hero-copy::before,
  .catalog-hero-copy::before,
  .media-copy::before {
    inset-inline-start: -14px;
  }

  .value-card-featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .section,
  .section-band {
    padding-block: 58px;
  }

  .site-header {
    min-height: 72px;
    border-radius: 0 0 20px 20px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 12px;
  }

  .trust-strip span:nth-child(2) {
    border-inline-end: 0;
  }

  .brand-logo-grid,
  .product-grid,
  .catalog-grid,
  .featured-products-grid,
  .media-grid {
    gap: 16px;
  }

  .filters {
    border-radius: 18px;
  }

  .catalog-tools,
  .contact-info-panel,
  .contact-form-card,
  .product-detail-status,
  .document-toolbar {
    border-radius: 20px;
  }

  .contact-direct-link:hover,
  html[dir="ltr"] .contact-direct-link:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Consistent footer layout across every page. */
.footer {
  grid-template-columns: minmax(260px, .62fr) minmax(520px, 1.38fr);
  column-gap: clamp(34px, 5vw, 82px);
  row-gap: 30px;
  padding-inline: clamp(22px, 6vw, 92px);
}

.footer-brand {
  min-width: 0;
  padding-inline-end: clamp(20px, 3vw, 42px);
  border-inline-end: 1px solid rgba(255, 255, 255, .13);
}

/* Polished, lightweight scroll-triggered motion across all site pages. */
html.scroll-motion-ready .reveal {
  --reveal-x: 0px;
  --reveal-y: 24px;
  --reveal-scale: .99;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transform-origin: center;
  will-change: opacity, transform;
  transition:
    opacity .6s ease-out var(--reveal-delay, 0ms),
    transform .76s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms);
}

html.scroll-motion-ready .reveal[data-scroll-effect="slide-start"] {
  --reveal-x: 24px;
  --reveal-y: 12px;
}

html[dir="ltr"].scroll-motion-ready .reveal[data-scroll-effect="slide-start"] {
  --reveal-x: -24px;
}

html.scroll-motion-ready .reveal[data-scroll-effect="slide-end"] {
  --reveal-x: -24px;
  --reveal-y: 12px;
}

html[dir="ltr"].scroll-motion-ready .reveal[data-scroll-effect="slide-end"] {
  --reveal-x: 24px;
}

html.scroll-motion-ready .reveal[data-scroll-effect="zoom"] {
  --reveal-y: 16px;
  --reveal-scale: .97;
}

html.scroll-motion-ready .reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

@media (max-width: 720px) {
  html.scroll-motion-ready .reveal,
  html.scroll-motion-ready .reveal[data-scroll-effect="slide-start"],
  html.scroll-motion-ready .reveal[data-scroll-effect="slide-end"] {
    --reveal-x: 0px;
    --reveal-y: 20px;
    --reveal-scale: .99;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.scroll-motion-ready .reveal,
  html.scroll-motion-ready .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.footer-brand strong {
  line-height: 1.45;
}

.footer-brand p {
  max-width: 360px;
}

.footer-contact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(78px, auto);
  gap: 12px;
}

.footer .contact-card,
.footer .contact-card-wide {
  grid-column: auto;
  width: 100%;
  min-width: 0;
  min-height: 78px;
  height: 100%;
  padding: 13px 15px;
  gap: 12px;
}

.footer .contact-card-accent {
  background: rgba(255, 255, 255, .065);
  border-color: rgba(255, 255, 255, .1);
}

.footer-contact .contact-card:nth-child(3) {
  background: rgba(218, 41, 28, .17);
  border-color: rgba(218, 41, 28, .38);
}

.footer-contact .contact-card:nth-child(6) {
  align-items: flex-start;
}

.footer .contact-icon {
  flex-basis: 40px;
  width: 40px;
  height: 40px;
  background: var(--red);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 8px 18px rgba(218, 41, 28, .22);
}

.footer .contact-card[href*="instagram.com"] .contact-icon {
  position: relative;
  overflow: hidden;
  background: var(--red);
}

.footer .contact-card[href*="instagram.com"] .contact-icon img {
  display: none;
}

.footer .contact-card[href*="instagram.com"] .contact-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 6px;
  background:
    radial-gradient(circle at 72% 27%, white 0 1.5px, transparent 1.8px),
    radial-gradient(circle at 50% 53%, transparent 0 3.5px, white 3.8px 5.5px, transparent 5.8px);
}

.footer .contact-card > span:last-child {
  min-width: 0;
}

.footer .contact-card small {
  margin-bottom: 5px;
  font-size: 10px;
  letter-spacing: .015em;
}

.footer .contact-card strong {
  font-size: 12px;
  line-height: 1.65;
}

.footer-bottom {
  align-items: center;
  padding-top: 22px;
  font-size: 12px;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 14px;
  color: white;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
}

.footer-bottom a:hover {
  background: rgba(218, 41, 28, .18);
  border-color: rgba(218, 41, 28, .4);
}

@media (max-width: 980px) {
  .footer {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    padding: 0 0 24px;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  .footer-brand p {
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .footer-contact {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .footer-bottom a {
    justify-content: center;
  }
}

/* Site-wide layout refinement: consistent rhythm, readable widths, and aligned cards. */
html {
  scroll-padding-top: 104px;
}

body {
  overflow-x: hidden;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(218, 41, 28, .28);
  outline-offset: 3px;
}

.site-header {
  padding-inline: max(20px, calc((100vw - 1380px) / 2));
}

main > .section,
main > .section-band {
  padding-inline: max(22px, calc((100vw - 1260px) / 2));
}

.trust-strip {
  padding-inline: max(22px, calc((100vw - 1260px) / 2));
}

.footer {
  padding-inline: max(22px, calc((100vw - 1260px) / 2));
}

.hero,
.catalog-hero,
.contact-hero,
.document-hero,
.exhibitions-hero,
.media-section {
  gap: clamp(42px, 6vw, 88px);
}

.hero-copy,
.catalog-hero-copy,
.media-copy,
.contact-hero > div,
.document-hero > div,
.exhibitions-hero > div:first-child {
  max-width: 720px;
}

.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 22px;
}

.catalog-hero h1,
.contact-hero h1,
.document-hero h1,
.exhibitions-hero h1,
.media-copy h1,
.product-detail-heading h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4vw + 8px, 64px);
  line-height: 1.14;
}

.hero-text,
.media-copy > p:not(.eyebrow),
.related-products-intro,
.exhibitions-empty-state p {
  max-width: 68ch;
  line-height: 1.95;
}

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

.hero-actions > a,
.hero-actions > button {
  justify-content: center;
  min-width: 150px;
}

.hero-media,
.split-image {
  position: relative;
  padding: 10px;
  background: rgba(255, 255, 255, .3);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(23, 20, 23, .14);
}

.hero-media > img,
.split-image > img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.document-toolbar h2,
.contact-page-grid h2,
.product-applications h2 {
  line-height: 1.28;
}

.brand-logo-grid,
.product-grid,
.catalog-grid,
.featured-products-grid,
.media-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.brand-logo-card,
.product-card,
.catalog-card,
.featured-product-card,
.media-card {
  height: 100%;
}

.brand-logo-card {
  grid-template-rows: 158px auto 1fr;
  align-content: stretch;
}

.brand-logo-card img {
  height: 100%;
}

.brand-logo-card strong {
  align-self: end;
}

.product-card {
  grid-template-rows: auto auto 1fr auto;
}

.product-card .card-link {
  align-self: end;
  margin-top: auto;
}

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

.catalog-card {
  grid-template-rows: auto 1fr;
}

.catalog-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 22px;
}

.catalog-card-body h3 {
  line-height: 1.45;
}

.catalog-card-body p {
  font-size: 14px;
  line-height: 1.9;
}

.catalog-card-actions,
.featured-actions {
  width: 100%;
  margin-top: auto;
  padding-top: 8px;
}

.catalog-card-actions > *,
.featured-actions > * {
  flex: 1 1 130px;
  justify-content: center;
  text-align: center;
}

.catalog-card img.product-photo,
.catalog-card img.product-brand-logo {
  height: 250px;
}

.catalog-brand-heading {
  margin-top: 36px;
  padding: 17px 22px;
  border-radius: 16px;
}

.catalog-tools {
  margin-bottom: 28px;
}

.catalog-tools input,
.catalog-tools select,
.catalog-clear-button {
  min-height: 54px;
}

.media-card {
  grid-template-rows: auto auto 1fr auto;
  padding: 26px;
}

.media-card-actions {
  align-self: end;
  margin-top: auto;
  padding-top: 8px;
}

.about-grid,
.contact-page-grid {
  align-items: stretch;
  gap: clamp(24px, 4vw, 42px);
}

.about-story,
.about-points,
.contact-info-panel,
.contact-form-card {
  height: 100%;
}

.contact-info-panel,
.contact-form-card {
  padding: clamp(26px, 4vw, 46px);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.contact-direct-link {
  min-height: 76px;
}

.contact-form {
  gap: 18px;
}

.contact-form label {
  gap: 7px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding-inline: 16px;
}

.contact-map {
  min-height: 420px;
}

.contact-map iframe {
  min-height: 420px;
}

.product-detail-shell {
  padding-top: clamp(46px, 6vw, 78px);
}

.product-breadcrumb {
  width: fit-content;
  margin-bottom: 26px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(23, 20, 23, .09);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(23, 20, 23, .055);
}

.product-detail-heading {
  max-width: 900px;
}

.product-detail-product {
  margin-top: 28px;
  border-radius: 30px;
}

.product-detail-product .catalog-card-body {
  padding: clamp(28px, 4vw, 54px);
}

.product-applications {
  margin-top: 28px;
}

.document-meta,
.catalog-summary,
.contact-hero-card,
.exhibitions-visual {
  align-self: stretch;
  align-content: center;
}

.document-toolbar {
  gap: 20px;
  padding: 22px 24px;
}

.pdf-viewer {
  min-height: min(78vh, 900px);
}

.exhibitions-empty-state {
  min-height: 360px;
  display: grid;
  place-content: center;
  justify-items: center;
}

@media (min-width: 1180px) {
  .brand-logo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .hero,
  .catalog-hero,
  .contact-hero,
  .document-hero,
  .exhibitions-hero,
  .media-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy,
  .catalog-hero-copy,
  .media-copy,
  .contact-hero > div,
  .document-hero > div,
  .exhibitions-hero > div:first-child {
    max-width: 840px;
  }

  .hero-media,
  .split-image {
    width: min(100%, 780px);
    margin-inline: auto;
  }

  .brand-logo-grid,
  .product-grid,
  .catalog-grid,
  .product-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  main > .section,
  main > .section-band {
    padding-inline: 18px;
    padding-block: 58px;
  }

  .hero,
  .catalog-hero,
  .contact-hero,
  .document-hero,
  .exhibitions-hero,
  .media-section {
    gap: 32px;
  }

  .hero-copy::before,
  .catalog-hero-copy::before,
  .media-copy::before {
    display: none;
  }

  .hero-copy h1,
  .catalog-hero h1,
  .contact-hero h1,
  .document-hero h1,
  .exhibitions-hero h1,
  .media-copy h1,
  .product-detail-heading h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-actions > a,
  .hero-actions > button {
    flex: 1 1 100%;
    width: 100%;
  }

  .brand-logo-grid,
  .product-grid,
  .catalog-grid,
  .product-list-grid,
  .featured-products-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo-card {
    grid-template-rows: 145px auto 1fr;
  }

  .catalog-card img.product-photo,
  .catalog-card img.product-brand-logo {
    height: 230px;
  }

  .catalog-card-body,
  .media-card {
    padding: 20px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 340px;
  }

  .document-toolbar {
    align-items: stretch;
  }

  .document-toolbar .card-link {
    justify-content: center;
  }
}

/* Product details: consistent, fully visible imagery on every screen size. */
.product-detail-page .product-detail-product {
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.2fr);
}

.product-detail-page .product-detail-product > img,
.product-detail-page .product-detail-product > img.product-photo,
.product-detail-page .product-detail-product > img.product-brand-logo {
  display: block;
  box-sizing: border-box;
  width: min(100%, 460px);
  height: clamp(360px, 36vw, 480px);
  max-height: 68vh;
  margin: auto;
  padding: clamp(20px, 3vw, 34px);
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
}

@media (max-width: 980px) {
  .product-detail-page .product-detail-product {
    grid-template-columns: 1fr;
  }

  .product-detail-page .product-detail-product > img,
  .product-detail-page .product-detail-product > img.product-photo,
  .product-detail-page .product-detail-product > img.product-brand-logo {
    width: min(100%, 420px);
    height: clamp(320px, 58vw, 420px);
    max-height: none;
    padding: clamp(18px, 4vw, 28px);
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .product-detail-page .product-detail-card {
    margin-inline: -2px;
  }

  .product-detail-page .product-detail-product > img,
  .product-detail-page .product-detail-product > img.product-photo,
  .product-detail-page .product-detail-product > img.product-brand-logo {
    width: min(100%, 360px);
    height: clamp(280px, 88vw, 360px);
    padding: clamp(14px, 5vw, 22px);
  }
}

@media (max-width: 390px) {
  .product-detail-page .product-detail-product > img,
  .product-detail-page .product-detail-product > img.product-photo,
  .product-detail-page .product-detail-product > img.product-brand-logo {
    height: 82vw;
    min-height: 270px;
  }
}

/* Related product cards behave like direct links without blocking their actions. */
.product-detail-page .related-card-clickable {
  cursor: pointer;
}

.product-detail-page .related-image-link {
  display: block;
  overflow: hidden;
  color: inherit;
  background: white;
}

.product-detail-page .related-image-link img {
  display: block;
}

.product-detail-page .related-image-link:focus-visible {
  border-radius: 18px 18px 0 0;
  outline: 4px solid rgba(218, 41, 28, .28);
  outline-offset: -4px;
}

/* Header identity: pure black, white company name, PSG red navigation. */
.site-header {
  color: white;
  background: #080808;
  border-bottom-color: rgba(218, 41, 28, .42);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .22);
}

.site-header .brand strong,
.site-header .brand small {
  color: #fff;
}

.site-header .nav a {
  color: #fff;
}

.site-header .nav a:hover,
.site-header .nav a.active-nav {
  color: #fff;
  background: rgba(218, 41, 28, .14);
}

.site-header .nav a::after {
  background: #da291c;
}

@media (max-width: 720px) {
  .site-header,
  .site-header .nav {
    background: #080808;
  }

  .site-header .nav {
    border-color: rgba(218, 41, 28, .3);
  }
}

/* Professional refinement for the black site header. */
.site-header {
  min-height: 80px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(218, 41, 28, .58);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .28), inset 0 -1px 0 rgba(255, 255, 255, .035);
}

.site-header .brand {
  gap: 12px;
}

.site-header .brand-mark {
  border-color: rgba(218, 41, 28, .32);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .32);
}

.site-header .nav {
  gap: 4px;
  padding: 5px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 999px;
}

.site-header .nav a {
  min-height: 40px;
  padding: 7px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header .nav a:hover,
.site-header .nav a.active-nav {
  background: rgba(218, 41, 28, .16);
  box-shadow: inset 0 0 0 1px rgba(218, 41, 28, .22);
}

.site-header .site-search-control {
  background: #151515;
  border-color: rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.site-header .site-search input {
  color: white;
}

.site-header .site-search input::placeholder {
  color: rgba(255, 255, 255, .55);
}

.site-header .language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 76px;
  height: 44px;
  padding-inline: 13px;
  color: white;
  background: #151515;
  border: 1px solid rgba(218, 41, 28, .62);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
}

.site-header .language-toggle::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 2px solid #da291c;
  border-radius: 50%;
  background:
    linear-gradient(#da291c, #da291c) center / 2px 100% no-repeat,
    linear-gradient(#da291c, #da291c) center / 100% 2px no-repeat;
}

.site-header .language-toggle:hover {
  color: white;
  background: #da291c;
  border-color: #da291c;
  transform: translateY(-1px);
}

.site-header .language-toggle:hover::before {
  border-color: white;
  background:
    linear-gradient(white, white) center / 2px 100% no-repeat,
    linear-gradient(white, white) center / 100% 2px no-repeat;
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
    padding-block: 9px;
  }

  .site-header .menu-button {
    color: #da291c;
    background: #151515;
    border-color: rgba(218, 41, 28, .5);
  }

  .site-header .language-toggle {
    min-width: 68px;
    height: 42px;
    gap: 6px;
    padding-inline: 10px;
  }

  .site-header .language-toggle::before {
    width: 16px;
    height: 16px;
  }

  .site-header .nav {
    gap: 4px;
    padding: 9px;
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .38);
  }

  .site-header .nav a {
    width: 100%;
  }
}

/* White header typography with red retained as the active accent. */
.site-header .nav a,
.site-header .nav a:hover,
.site-header .nav a.active-nav {
  color: #fff;
}

/* Media galleries: one certificate, award, or exhibition photo per card. */
.media-gallery-section {
  display: grid;
  gap: clamp(24px, 3vw, 38px);
}

.media-gallery-section .document-toolbar {
  margin: 0;
}

.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 30px);
  align-items: stretch;
}

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

.media-gallery-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(255, 255, 255, .98), rgba(255, 248, 248, .92));
  border: 1px solid rgba(23, 20, 23, .1);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(23, 20, 23, .1);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.media-gallery-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #ff6b61);
}

.media-gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(218, 41, 28, .24);
  box-shadow: 0 25px 62px rgba(23, 20, 23, .16);
}

.media-gallery-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: clamp(12px, 2vw, 20px);
  background:
    radial-gradient(circle at 18% 10%, rgba(218, 41, 28, .1), transparent 30%),
    linear-gradient(145deg, #f2f0f1, #fff);
  border-bottom: 1px solid rgba(23, 20, 23, .08);
}

.media-gallery-image::after {
  content: "↗";
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: rgba(21, 21, 21, .8);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  font-family: var(--font-latin);
  font-size: 17px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
  transition: background .2s ease, transform .2s ease;
}

.media-gallery-image:hover::after {
  background: var(--red);
  transform: scale(1.08);
}

.media-gallery-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(23, 20, 23, .13);
  transition: transform .35s ease;
}

.media-gallery-image:hover img {
  transform: scale(1.018);
}

.media-gallery-card-body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 14px;
  align-content: start;
  padding: 20px;
}

.media-gallery-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--red);
  border-radius: 13px;
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 9px 22px rgba(218, 41, 28, .22);
}

.media-gallery-card-body > div {
  display: grid;
  gap: 4px;
  align-content: center;
  min-width: 0;
}

.media-gallery-card-body strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
}

.media-gallery-card-body small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.media-gallery-open {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  margin-top: 4px;
  padding: 9px 14px;
  color: var(--ink);
  background: rgba(23, 20, 23, .045);
  border: 1px solid rgba(23, 20, 23, .08);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
}

.media-gallery-open::after {
  content: "↗";
  color: var(--red);
  font-family: var(--font-latin);
  font-size: 15px;
}

.media-gallery-open:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.media-gallery-open:hover::after {
  color: #fff;
}

.exhibitions-gallery-section .exhibitions-empty-state {
  width: 100%;
  border-style: dashed;
}

@media (max-width: 980px) {
  .media-gallery-grid,
  .media-gallery-grid-awards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .media-gallery-grid,
  .media-gallery-grid-awards {
    grid-template-columns: 1fr;
  }

  .media-gallery-image {
    aspect-ratio: 4 / 5;
    padding: 12px;
  }

  .media-gallery-card-body {
    padding: 17px;
  }
}

/* Mobile header: keep every main section visible without a hidden menu. */
@media (max-width: 720px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    gap: 9px 12px;
    min-height: 0;
    padding: 10px 14px 12px;
    border-radius: 0 0 18px 18px;
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .site-header .brand-mark {
    width: 52px;
    height: 43px;
  }

  .site-header .brand strong {
    font-size: 14px;
    line-height: 1.35;
  }

  .site-header .brand small {
    font-size: 9px;
  }

  .site-header .menu-button {
    display: none;
  }

  .site-header .language-toggle {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    min-width: 64px;
    height: 40px;
    padding-inline: 9px;
  }

  .site-header .nav,
  .site-header .nav.open {
    position: static;
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    padding: 6px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    box-shadow: none;
  }

  .site-header .nav a {
    width: 100%;
    min-height: 39px;
    padding: 7px 8px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
  }

  .site-header .nav a:hover,
  .site-header .nav a.active-nav {
    background: rgba(218, 41, 28, .22);
    border-color: rgba(218, 41, 28, .5);
    box-shadow: inset 0 0 0 1px rgba(218, 41, 28, .13);
  }

  .site-header .site-search {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .site-header .site-search-control {
    min-height: 42px;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-inline: 10px;
  }

  .site-header .nav a {
    font-size: 11px;
  }
}

/* Mobile commerce experience: compact app header, swipeable content, and bottom navigation. */
.app-bottom-nav {
  display: none;
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 176px;
    scroll-padding-bottom: 86px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 100% 8%, rgba(218, 41, 28, .065), transparent 26%),
      #f6f5f5;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    grid-template-rows: auto auto auto;
    gap: 8px 12px;
    padding: 8px 12px 10px;
    border-radius: 0;
    box-shadow: 0 9px 28px rgba(0, 0, 0, .28);
  }

  .site-header .brand-mark {
    width: 48px;
    height: 40px;
    border-radius: 11px;
  }

  .site-header .language-toggle {
    min-width: 60px;
    height: 38px;
    font-size: 12px;
  }

  .site-header .site-search {
    grid-row: 2;
  }

  .site-header .site-search-control {
    min-height: 44px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 12px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, .18);
  }

  .site-header .site-search-control:focus-within {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(218, 41, 28, .14);
  }

  .site-header .site-search input {
    color: var(--ink);
    font-size: 13px;
  }

  .site-header .site-search input::placeholder {
    color: #777278;
  }

  .site-header .site-search button {
    width: 46px;
    color: #fff;
    background: var(--red);
    border-radius: 9px;
  }

  .site-header .nav,
  .site-header .nav.open {
    grid-row: 3;
    display: flex;
    gap: 7px;
    overflow-x: auto;
    width: calc(100% + 24px);
    margin-inline: -12px;
    padding: 1px 12px 3px;
    background: transparent;
    border: 0;
    border-radius: 0;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .site-header .nav::-webkit-scrollbar,
  .filters::-webkit-scrollbar,
  .catalog-filters::-webkit-scrollbar,
  .brand-logo-grid::-webkit-scrollbar,
  .home-solutions .product-grid::-webkit-scrollbar,
  .trust-strip::-webkit-scrollbar {
    display: none;
  }

  .site-header .nav a {
    flex: 0 0 auto;
    width: auto;
    min-height: 34px;
    padding: 6px 13px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    font-size: 11px;
    scroll-snap-align: start;
  }

  .app-bottom-nav {
    position: fixed;
    z-index: 85;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: calc(66px + env(safe-area-inset-bottom));
    padding: 5px 5px env(safe-area-inset-bottom);
    background: rgba(12, 12, 12, .97);
    border-top: 1px solid rgba(218, 41, 28, .45);
    box-shadow: 0 -10px 28px rgba(0, 0, 0, .24);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .app-bottom-nav-item {
    position: relative;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 1px;
    min-width: 0;
    min-height: 56px;
    padding: 3px 2px;
    color: rgba(255, 255, 255, .68);
    background: transparent;
    border: 0;
    border-radius: 12px;
    font: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .app-bottom-nav-item.active {
    color: #fff;
    background: rgba(218, 41, 28, .17);
  }

  .app-bottom-nav-item.active::before {
    content: "";
    position: absolute;
    top: 0;
    width: 24px;
    height: 3px;
    background: var(--red);
    border-radius: 0 0 999px 999px;
  }

  .app-bottom-nav-icon {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    color: currentColor;
    font-family: var(--font-latin);
    font-size: 21px;
    line-height: 1;
  }

  .app-bottom-nav-icon svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .app-bottom-nav-item small {
    max-width: 100%;
    overflow: hidden;
    font-size: 9px;
    font-weight: 900;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .app-bottom-nav-count {
    position: absolute;
    top: 2px;
    inset-inline-end: calc(50% - 23px);
    display: grid;
    place-items: center;
    min-width: 18px;
    height: 18px;
    padding-inline: 4px;
    color: #fff;
    background: var(--red);
    border: 2px solid #0c0c0c;
    border-radius: 999px;
    font-family: var(--font-latin);
    font-size: 9px;
  }

  .app-bottom-nav-count[hidden] {
    display: none;
  }

  .cart-open .app-bottom-nav,
  .quick-add-open .app-bottom-nav {
    transform: translateY(110%);
  }

  .shopping-cart-button {
    display: none;
  }

  .cart-toast {
    bottom: calc(78px + env(safe-area-inset-bottom));
  }

  main > .section,
  main > .section-band {
    padding: 42px 14px;
  }

  main > .hero,
  main > .catalog-hero,
  main > .contact-hero,
  main > .document-hero,
  main > .exhibitions-hero,
  main > .media-section {
    gap: 24px;
    padding-top: 32px;
    padding-bottom: 38px;
  }

  .hero-copy h1,
  .catalog-hero h1,
  .contact-hero h1,
  .document-hero h1,
  .exhibitions-hero h1,
  .media-copy h1,
  .product-detail-heading h1 {
    margin-bottom: 14px;
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.14;
  }

  .hero-text,
  .media-copy > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.85;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 22px;
  }

  .hero-actions > a,
  .hero-actions > button,
  .primary-action,
  .secondary-action {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero-media,
  .split-image {
    padding: 6px;
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(23, 20, 23, .13);
  }

  .hero-media > img,
  .split-image > img {
    border-radius: 16px;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    justify-content: start;
    gap: 0;
    overflow-x: auto;
    padding-inline: 4px;
    scrollbar-width: none;
  }

  .trust-strip span {
    padding: 16px 18px;
    font-size: 11px;
  }

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

  .section-heading h2,
  .document-toolbar h2,
  .contact-page-grid h2,
  .product-applications h2 {
    font-size: clamp(25px, 7.5vw, 34px);
  }

  .brand-logo-grid,
  .home-solutions .product-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 78vw);
    gap: 13px;
    overflow-x: auto;
    margin-inline: -14px;
    padding: 4px 14px 18px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .brand-logo-card,
  .home-solutions .product-card {
    min-height: 0;
    scroll-snap-align: start;
  }

  .brand-logo-card {
    grid-template-rows: 122px auto 1fr;
    padding: 14px;
    border-radius: 17px;
  }

  .brand-logo-card img {
    height: 122px;
    border-radius: 12px;
  }

  .home-solutions .product-card {
    padding: 18px;
    border-radius: 17px;
  }

  .home-solutions .product-card p {
    line-height: 1.7;
  }

  .filters,
  .catalog-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 7px;
    overflow-x: auto;
    width: 100%;
    padding: 4px 2px 10px;
    border-radius: 0;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .filters .filter,
  .catalog-filters .filter {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 7px 13px;
    font-size: 11px;
    scroll-snap-align: start;
  }

  .featured-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .featured-product-card {
    gap: 9px;
    padding: 10px;
    border-radius: 16px;
  }

  .featured-product-card img {
    height: 145px;
    padding: 7px;
    border-radius: 11px;
  }

  .featured-product-card h3 {
    min-height: 44px;
    font-size: 13px;
    line-height: 1.55;
  }

  .featured-badge {
    padding: 5px 8px;
    font-size: 9px;
  }

  .featured-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .featured-actions .card-link {
    min-height: 38px;
    padding: 6px 8px;
    font-size: 10px;
  }

  .products-page .catalog-tools {
    gap: 9px;
    margin-bottom: 14px;
    padding: 12px;
    border-radius: 16px;
  }

  .products-page .catalog-tools input,
  .products-page .catalog-tools select,
  .products-page .catalog-clear-button {
    min-height: 48px;
  }

  .products-page .product-list-grid {
    gap: 14px;
  }

  .products-page .catalog-card {
    border-radius: 17px;
  }

  .products-page .catalog-card img.product-photo,
  .products-page .catalog-card img.product-brand-logo {
    height: 205px;
    padding: 10px;
  }

  .products-page .catalog-card-body {
    gap: 9px;
    padding: 15px;
  }

  .products-page .catalog-card-body p {
    font-size: 12px;
    line-height: 1.65;
  }

  .catalog-card-actions > *,
  .products-page .catalog-card button,
  .products-page .tds-link {
    min-height: 44px;
  }

  .product-detail-page .product-detail-product,
  .contact-info-panel,
  .contact-form-card,
  .media-card,
  .document-toolbar,
  .document-meta,
  .media-gallery-card {
    border-radius: 17px;
  }

  .shopping-cart-drawer {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .cart-drawer-header {
    padding: 15px 16px;
  }

  .cart-drawer-body {
    padding: 12px;
  }

  .cart-drawer-footer {
    padding: 12px 14px calc(14px + env(safe-area-inset-bottom));
  }

  .footer {
    padding-bottom: 34px;
  }

  :where(a, button) {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  :where(.brand-logo-card, .product-card, .catalog-card, .featured-product-card, .media-card):active {
    transform: scale(.985);
  }
}

@media (max-width: 380px) {
  .featured-products-grid {
    grid-template-columns: 1fr;
  }

  .featured-product-card img {
    height: 190px;
  }

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

/* Mobile navigation uses the fixed bottom bar, keeping the top header compact. */
@media (max-width: 720px) {
  html {
    scroll-padding-top: 112px;
  }

  .site-header {
    grid-template-rows: auto auto;
  }

  .site-header .nav,
  .site-header .nav.open {
    display: none;
  }

  .site-header .site-search {
    grid-row: 2;
  }
}

/* Persistent light/dark appearance toggle. The existing design remains the default dark mode. */
.site-header .theme-toggle {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: #151515;
  border: 1px solid rgba(218, 41, 28, .62);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

.site-header .header-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.site-header .theme-toggle:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.theme-toggle-icon {
  font-family: "Segoe UI Symbol", sans-serif;
  font-size: 21px;
  line-height: 1;
}

html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="light"] body {
  background: #fff;
}

html[data-theme="light"] main > .section,
html[data-theme="light"] main > .section:nth-of-type(even),
html[data-theme="light"] main > .section-band,
html[data-theme="light"] main > section:first-child {
  background:
    radial-gradient(circle at 12% 10%, rgba(218, 41, 28, .07), transparent 27rem),
    radial-gradient(circle at 90% 86%, rgba(185, 154, 97, .07), transparent 24rem),
    linear-gradient(135deg, #fff, #fbf8f8);
  border-block-color: rgba(23, 20, 23, .08);
}

html[data-theme="light"] main > section:first-child h1,
html[data-theme="light"] main > section:first-child .hero-text,
html[data-theme="light"] main > section:first-child .product-detail-title,
html[data-theme="light"] main > section:first-child .product-breadcrumb,
html[data-theme="light"] main > section:first-child > .reveal > h1,
html[data-theme="light"] main > section:first-child > .reveal > p:not(.eyebrow),
html[data-theme="light"] main > .section:nth-of-type(even) > .section-heading h2,
html[data-theme="light"] main > .section-band > .section-heading h2,
html[data-theme="light"] main > .section-band > .section-heading .featured-intro,
html[data-theme="light"] main > .section:nth-of-type(even) > .section-heading p:not(.eyebrow) {
  color: var(--ink);
}

html[data-theme="light"] main > section:first-child .eyebrow,
html[data-theme="light"] main > .section:nth-of-type(even) > .section-heading .eyebrow,
html[data-theme="light"] main > .section-band > .section-heading .eyebrow {
  color: var(--red-dark);
  background: rgba(218, 41, 28, .075);
  border-color: rgba(218, 41, 28, .14);
}

html[data-theme="light"] main > section:first-child::after {
  color: rgba(23, 20, 23, .055);
}

html[data-theme="light"] .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, .97);
  border-bottom-color: rgba(218, 41, 28, .25);
  box-shadow: 0 12px 34px rgba(23, 20, 23, .1), inset 0 -1px 0 rgba(23, 20, 23, .03);
}

html[data-theme="light"] .site-header .brand strong,
html[data-theme="light"] .site-header .brand small,
html[data-theme="light"] .site-header .nav a,
html[data-theme="light"] .site-header .nav a:hover,
html[data-theme="light"] .site-header .nav a.active-nav {
  color: var(--ink);
}

html[data-theme="light"] .site-header .nav {
  background: rgba(255, 255, 255, .78);
  border-color: rgba(23, 20, 23, .09);
}

html[data-theme="light"] .site-header .nav a:hover,
html[data-theme="light"] .site-header .nav a.active-nav {
  background: rgba(218, 41, 28, .09);
}

html[data-theme="light"] .site-header .site-search-control,
html[data-theme="light"] .site-header .language-toggle,
html[data-theme="light"] .site-header .theme-toggle {
  color: var(--ink);
  background: #fff;
  border-color: rgba(218, 41, 28, .32);
  box-shadow: 0 8px 22px rgba(23, 20, 23, .09);
}

html[data-theme="light"] .site-header .site-search input {
  color: var(--ink);
}

html[data-theme="light"] .site-header .site-search input::placeholder {
  color: #777278;
}

html[data-theme="light"] .site-header .language-toggle:hover,
html[data-theme="light"] .site-header .theme-toggle:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

html[data-theme="light"] .trust-strip,
html[data-theme="light"] .metric-panel,
html[data-theme="light"] .catalog-summary,
html[data-theme="light"] .catalog-brand-heading,
html[data-theme="light"] .document-viewer-wrap,
html[data-theme="light"] .contact-map,
html[data-theme="light"] .contact-hero-card,
html[data-theme="light"] .exhibitions-visual,
html[data-theme="light"] .exhibitions-visual span,
html[data-theme="light"] .filter.active,
html[data-theme="light"] .media-icon,
html[data-theme="light"] .shopping-cart-button,
html[data-theme="light"] .cart-drawer-header {
  color: var(--ink);
  background: #fff;
  border-color: rgba(218, 41, 28, .2);
  box-shadow: 0 16px 40px rgba(23, 20, 23, .1);
}

html[data-theme="light"] .trust-strip span,
html[data-theme="light"] .metric-panel span,
html[data-theme="light"] .metric-panel strong,
html[data-theme="light"] .catalog-summary span,
html[data-theme="light"] .catalog-summary strong,
html[data-theme="light"] .contact-hero-card span,
html[data-theme="light"] .contact-hero-card strong,
html[data-theme="light"] .exhibitions-visual span,
html[data-theme="light"] .cart-drawer-header span,
html[data-theme="light"] .cart-drawer-header h2,
html[data-theme="light"] .cart-close-button {
  color: var(--ink);
}

html[data-theme="light"] .trust-strip span {
  border-inline-end-color: rgba(23, 20, 23, .1);
}

html[data-theme="light"] .catalog-summary span,
html[data-theme="light"] .exhibitions-visual span,
html[data-theme="light"] .cart-close-button {
  background: #fff7f8;
  border-color: rgba(218, 41, 28, .15);
}

html[data-theme="light"] .exhibitions-visual span:first-child {
  color: var(--red);
}

html[data-theme="light"] .footer {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0, rgba(218, 41, 28, .08), transparent 34%),
    linear-gradient(145deg, #fff, #faf6f7);
  border-top-color: rgba(218, 41, 28, .24);
}

html[data-theme="light"] .footer-brand,
html[data-theme="light"] .footer-brand span,
html[data-theme="light"] .footer-brand p,
html[data-theme="light"] .footer .contact-card,
html[data-theme="light"] .footer .contact-card small,
html[data-theme="light"] .footer .contact-card strong,
html[data-theme="light"] .footer-bottom,
html[data-theme="light"] .footer-bottom a {
  color: var(--ink);
}

html[data-theme="light"] .footer-brand {
  border-color: rgba(23, 20, 23, .1);
}

html[data-theme="light"] .footer .contact-card,
html[data-theme="light"] .footer .contact-card-accent,
html[data-theme="light"] .footer-bottom a {
  background: rgba(255, 255, 255, .86);
  border-color: rgba(23, 20, 23, .1);
}

html[data-theme="light"] .footer-contact .contact-card:nth-child(3),
html[data-theme="light"] .footer .contact-card:hover,
html[data-theme="light"] .footer-bottom a:hover {
  background: rgba(218, 41, 28, .08);
  border-color: rgba(218, 41, 28, .25);
}

@media (min-width: 721px) and (max-width: 1180px) {
  .site-header {
    gap: 10px;
    padding-inline: 14px;
  }

  .site-header .brand {
    min-width: 170px;
  }

  .site-header .site-search {
    flex-basis: 180px;
    max-width: 240px;
  }

  .site-header .nav a {
    padding-inline: 9px;
    font-size: 12px;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .site-header .language-toggle {
    grid-column: 2;
  }

  .site-header .theme-toggle {
    grid-column: 3;
    grid-row: 1;
    width: 38px;
    height: 38px;
    align-self: center;
  }

  html[data-theme="light"] .site-header {
    background: rgba(255, 255, 255, .98);
  }

  html[data-theme="light"] body {
    background: #fff;
  }

  html[data-theme="light"] .app-bottom-nav {
    background: rgba(255, 255, 255, .98);
    border-top-color: rgba(218, 41, 28, .28);
    box-shadow: 0 -10px 28px rgba(23, 20, 23, .12);
  }

  html[data-theme="light"] .app-bottom-nav-item {
    color: #625d63;
  }

  html[data-theme="light"] .app-bottom-nav-item.active {
    color: var(--red-dark);
    background: rgba(218, 41, 28, .09);
  }
}

/* Professional mobile product browsing: two balanced cards per row. */
@media (max-width: 720px) {
  .product-list-grid,
  .products-page .product-list-grid,
  .featured-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
  }

  .product-list-grid .catalog-card,
  .featured-product-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(23, 20, 23, .11);
  }

  .products-page .catalog-card img.product-photo,
  .products-page .catalog-card img.product-brand-logo,
  .related-products-grid .catalog-card img.product-photo,
  .related-products-grid .catalog-card img.product-brand-logo {
    height: clamp(110px, 31vw, 138px);
    padding: 6px;
  }

  .product-list-grid .catalog-card-body {
    gap: 5px;
    min-width: 0;
    padding: 8px;
  }

  .product-list-grid .catalog-card-body h3 {
    display: -webkit-box;
    min-height: 3em;
    margin: 0;
    overflow: hidden;
    font-size: clamp(11px, 3.05vw, 13px);
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-list-grid .catalog-card-body > p {
    display: none;
  }

  .product-list-grid .product-tag {
    padding: 4px 7px;
    font-size: 9px;
  }

  .product-list-grid .product-meta {
    display: none;
  }

  .product-list-grid .catalog-card-actions,
  .featured-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding-top: 2px;
  }

  .product-list-grid .catalog-card-actions .card-link,
  .product-list-grid .catalog-card-actions .quick-add-to-cart,
  .featured-actions .card-link,
  .featured-actions .quick-add-to-cart,
  .product-list-grid .tds-link {
    min-width: 0;
    min-height: 34px;
    padding: 5px 3px;
    border-radius: 8px;
    font-size: clamp(7.5px, 2.25vw, 9px);
    line-height: 1.25;
  }

  .product-list-grid .catalog-card-actions .quick-add-to-cart,
  .featured-actions .quick-add-to-cart {
    grid-column: auto;
  }

  .featured-product-card {
    gap: 6px;
    padding: 8px;
  }

  .featured-product-card img {
    height: clamp(110px, 31vw, 136px);
    padding: 5px;
  }

  .featured-product-card h3 {
    display: -webkit-box;
    min-height: 3em;
    overflow: hidden;
    font-size: clamp(11px, 3vw, 12.5px);
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 360px) {
  .product-list-grid,
  .products-page .product-list-grid,
  .featured-products-grid {
    gap: 7px;
  }

  .product-list-grid .catalog-card-body,
  .featured-product-card {
    padding: 8px;
  }

  .products-page .catalog-card img.product-photo,
  .products-page .catalog-card img.product-brand-logo,
  .related-products-grid .catalog-card img.product-photo,
  .related-products-grid .catalog-card img.product-brand-logo,
  .featured-product-card img {
    height: 108px;
  }
}

@media (max-width: 720px) {
  .site-header .header-controls {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    gap: 5px;
  }

  .site-header .header-controls .language-toggle {
    min-width: 54px;
    height: 38px;
    padding-inline: 7px;
  }

  .site-header .header-controls .theme-toggle {
    width: 38px;
    height: 38px;
  }

}

/* Verifiable market strengths and real supply sectors — no fabricated reviews. */
.market-proof {
  position: relative;
  overflow: hidden;
}

.market-proof .section-heading > p:last-child {
  max-width: 760px;
  margin-inline: auto;
}

.customer-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.customer-value-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  padding: 26px;
  color: #fff;
  background: linear-gradient(145deg, rgba(27, 24, 27, .96), rgba(12, 11, 12, .98));
  border: 1px solid rgba(218, 41, 28, .22);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .2);
}

.customer-value-card::after {
  content: "";
  position: absolute;
  inset-inline: 22px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 999px 999px 0 0;
}

.customer-value-card > span {
  color: var(--red);
  font: 900 13px/1 var(--font-latin);
  letter-spacing: .12em;
}

.customer-value-card h3,
.project-sectors h3 {
  margin: 0;
}

.customer-value-card p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.85;
}

.project-sectors {
  margin-top: 20px;
  padding: 26px;
  background: linear-gradient(145deg, rgba(218, 41, 28, .1), rgba(185, 154, 97, .08));
  border: 1px solid rgba(218, 41, 28, .2);
  border-radius: 24px;
}

.project-sectors-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

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

.project-sector-grid a {
  display: grid;
  gap: 7px;
  min-height: 128px;
  padding: 18px;
  color: #fff;
  background: rgba(10, 9, 10, .7);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.project-sector-grid a:hover {
  color: #fff;
  background: rgba(218, 41, 28, .16);
  border-color: rgba(218, 41, 28, .5);
  transform: translateY(-3px);
}

.project-sector-grid a > span {
  color: var(--red);
  font-size: 22px;
}

.project-sector-grid small {
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

html[data-theme="light"] .customer-value-card,
html[data-theme="light"] .project-sector-grid a {
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border-color: rgba(218, 41, 28, .16);
  box-shadow: 0 16px 34px rgba(23, 20, 23, .09);
}

html[data-theme="light"] .customer-value-card p,
html[data-theme="light"] .project-sector-grid small {
  color: #6b6469;
}

html[data-theme="light"] .project-sector-grid a:hover {
  color: var(--ink);
  background: #fff4f3;
}

@media (max-width: 900px) {
  .customer-value-grid {
    grid-template-columns: 1fr;
  }

  .customer-value-card {
    min-height: 0;
  }

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

@media (max-width: 600px) {
  .customer-value-grid {
    gap: 10px;
    margin-top: 20px;
  }

  .customer-value-card,
  .project-sectors {
    padding: 18px;
    border-radius: 18px;
  }

  .project-sectors-heading {
    display: grid;
  }

  .project-sector-grid a {
    min-height: 112px;
    padding: 14px;
    font-size: 12px;
  }
}

/* Skip painting off-screen product cards until they approach the viewport. */
@supports (content-visibility: auto) {
  .catalog-card,
  .featured-product-card,
  .media-gallery-card {
    content-visibility: auto;
    contain-intrinsic-size: auto 520px;
  }
}
