:root {
  --ink: #0d2b22;
  --ink-soft: #173b31;
  --paper: #f4f1e8;
  --paper-deep: #e9e5da;
  --white: #fffdf8;
  --green: #62ae6a;
  --green-dark: #438b4c;
  --green-wash: #dceadc;
  --muted: #68716c;
  --line: rgba(13, 43, 34, .17);
  --line-light: rgba(255, 255, 255, .18);
  --shadow: 0 24px 70px rgba(13, 43, 34, .13);
  --shell: min(1300px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 132px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--green-dark); outline-offset: 3px; }
.catalogue :focus-visible, .method-visual :focus-visible { outline-color: var(--green); }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  inset-inline-start: 10px;
  padding: 12px 16px;
  background: var(--green);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

/* Header */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(244, 241, 232, .97);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 12px 34px rgba(13, 43, 34, .08); }
.topbar { background: var(--ink); color: rgba(255, 255, 255, .72); }
.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.topbar p { margin: 0; }
.topbar-inner > div { display: flex; align-items: center; gap: 24px; }
.topbar a { color: white; text-decoration: none; }
.topbar a span { color: var(--green); }
.header-inner {
  position: relative;
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand .brand-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
  object-position: center;
}
.main-nav { display: flex; justify-self: end; gap: clamp(18px, 2.2vw, 34px); }
.main-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s;
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-switch {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.language-switch:hover { border-color: var(--ink); background: var(--white); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

/* Shared controls */
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid var(--green);
  border-radius: 2px;
  background: var(--green);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
}
.button:hover { border-color: var(--green-dark); background: var(--green-dark); color: white; transform: translateY(-2px); }
.button-small { min-height: 44px; padding-inline: 17px; }
.header-cta { border-color: var(--ink); background: var(--ink); color: white; }
.header-cta:hover { border-color: var(--green-dark); background: var(--green-dark); }
.button-secondary { border-color: var(--ink); background: transparent; color: var(--ink); }
.button-secondary:hover { border-color: var(--ink); background: var(--ink); color: white; }
.button-outline { border-color: rgba(255, 255, 255, .42); background: transparent; color: white; }
.button-outline:hover { border-color: var(--green); background: var(--green); color: var(--ink); }
.button-light { border-color: white; background: white; color: var(--ink); }
.button-light:hover { border-color: var(--green); background: var(--green); color: var(--ink); }
.whatsapp-mark { width: 28px; height: 28px; flex: 0 0 28px; object-fit: contain; }
.whatsapp-mark-small { width: 20px; height: 20px; flex-basis: 20px; }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--paper); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 43, 34, .052) 1px, transparent 1px),
    linear-gradient(rgba(13, 43, 34, .052) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 64%);
}
.hero-grid {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, .91fr) minmax(500px, 1.09fr);
  align-items: center;
  gap: clamp(48px, 6.5vw, 96px);
}
.hero-copy { position: relative; z-index: 2; grid-column: 1; grid-row: 1; padding: 80px 0 86px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  color: #52615b;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-kicker::before { content: ""; width: 34px; height: 2px; background: var(--green); }
.hero-kicker span { padding-inline-end: 10px; border-inline-end: 1px solid var(--line); }
.hero-kicker b { color: var(--green-dark); }
.hero h1,
.section h2,
.product-dialog h2 {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.055em;
}
.hero h1 { max-width: 800px; font-size: clamp(66px, 6.25vw, 102px); line-height: .89; }
.hero h1 span { color: var(--green-dark); }
.hero-price-title .hero-title-main {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(62px, 6.1vw, 96px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .92;
}
html[dir="rtl"] .hero-price-title .hero-title-main {
  font-family: "Noto Kufi Arabic", "Noto Sans Arabic", Tahoma, sans-serif;
  font-size: clamp(43px, 4.8vw, 72px);
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1.28;
}
.hero-price-title .hero-title-main em { color: var(--green-dark); font-style: normal; }
.hero-lead { max-width: 580px; margin: 30px 0 0; color: #4f5d57; font-size: 18px; line-height: 1.6; }
html[dir="rtl"] .hero-lead { color: var(--ink); font-family: "Noto Sans Arabic", Tahoma, sans-serif; font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 11px; margin-top: 36px; }
.hero-contact-action { min-width: 190px; display: grid; gap: 1px; padding-block: 8px; }
.hero-contact-action.whatsapp-action { grid-template-columns: auto auto; justify-content: center; gap: 10px; background: #25d366; border-color: #25d366; }
.hero-contact-action.whatsapp-action:hover { background: #20bd5a; border-color: #20bd5a; color: var(--ink); }
.hero-contact-copy { display: grid; gap: 1px; text-align: start; }
.hero-contact-action strong { font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif; font-size: 14px; }
html[dir="rtl"] .hero-contact-action strong { font-family: "Noto Sans Arabic", Tahoma, sans-serif; }
.hero-contact-action small { font-size: 9px; font-weight: 700; letter-spacing: .04em; }
.hero-contact-action.whatsapp-action .whatsapp-mark { padding: 2px; border-radius: 50%; background: white; }
.hero-proof {
  max-width: 660px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-block: 1px solid var(--line);
}
.hero-proof div {
  min-width: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px 15px;
  border-inline-end: 1px solid var(--line);
}
.hero-proof div:last-child { border-inline-end: 0; }
.hero-proof span { color: var(--green-dark); font-size: 10px; font-weight: 800; }
.hero-proof strong { font-size: 12px; line-height: 1.35; }
.hero-visual { position: relative; z-index: 1; grid-column: 2; grid-row: 1; min-width: 0; padding: 52px 0 58px; }
.equipment-carousel {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(13, 43, 34, .25);
  background: var(--ink);
  box-shadow: var(--shadow);
}
.equipment-carousel::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 28px -28px -28px 28px;
  border: 1px solid rgba(13, 43, 34, .28);
}
.carousel-topline {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line-light);
  color: white;
}
.carousel-topline p { display: flex; align-items: baseline; gap: 12px; margin: 0; }
.carousel-topline strong {
  color: var(--green);
  font-family: "Noto Kufi Arabic", "Noto Sans Arabic", Tahoma, sans-serif;
  font-size: 15px;
  font-weight: 750;
}
.carousel-topline p span { color: rgba(255, 255, 255, .54); font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.carousel-count { color: rgba(255, 255, 255, .72); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.carousel-viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  background: #f8f7f2;
  -webkit-overflow-scrolling: touch;
}
.carousel-viewport::-webkit-scrollbar { display: none; }
.carousel-viewport:focus-visible { outline-offset: -4px; }
.carousel-track { min-width: 100%; display: flex; }
.equipment-slide {
  position: relative;
  min-width: 0;
  flex: 0 0 100%;
  display: grid;
  grid-template-rows: minmax(370px, 1fr) auto;
  overflow: hidden;
  scroll-snap-align: start;
  background: #fff;
  color: var(--ink);
}
.carousel-slide-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  inset-inline-start: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 43, 34, .16);
  background: rgba(244, 241, 232, .94);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}
.carousel-slide-media {
  min-height: 370px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}
.carousel-slide-media img {
  width: 100%;
  height: 370px;
  padding: 34px 42px 24px;
  object-fit: contain;
  filter: saturate(.92) contrast(1.03) drop-shadow(0 22px 18px rgba(13, 43, 34, .17));
}
.overview-media {
  position: relative;
  padding: 0;
}
.overview-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}
.overview-grid > span {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.overview-grid > span:nth-child(even) { border-inline-end: 0; }
.overview-grid > span:nth-child(n + 3) { border-bottom: 0; }
.carousel-slide-media .overview-grid img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-height: none;
  padding: 14px 18px 20px;
  object-fit: contain;
  filter: saturate(.92) contrast(1.03) drop-shadow(0 10px 9px rgba(13, 43, 34, .12));
}
.overview-grid b {
  position: absolute;
  z-index: 2;
  right: 44px;
  bottom: 5px;
  padding: 3px 6px;
  background: rgba(13, 43, 34, .9);
  color: white;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 9px;
  line-height: 1.35;
}
html[dir="rtl"] .overview-grid b { font-family: "Noto Sans Arabic", Tahoma, sans-serif; }
.carousel-slide-caption {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 22px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.carousel-slide-caption p { display: grid; gap: 2px; margin: 0; }
.carousel-slide-caption p strong { font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif; font-size: 21px; line-height: 1.35; }
html[dir="rtl"] .carousel-slide-caption p strong { font-family: "Noto Kufi Arabic", "Noto Sans Arabic", Tahoma, sans-serif; }
.carousel-slide-caption p span { color: var(--green-dark); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.carousel-slide-caption > a {
  min-width: 78px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
}
.equipment-slide[data-carousel-slide] { cursor: pointer; }
.carousel-slide-caption > a[data-carousel-link] { position: static; }
.carousel-slide-caption > a[data-carousel-link]::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
}
.carousel-slide-caption > a[data-carousel-link]:focus-visible { outline: 0; }
.carousel-slide-caption > a[data-carousel-link]:focus-visible::before {
  outline: 3px solid var(--green-dark);
  outline-offset: -4px;
}
.carousel-slide-caption > a > span:first-child { display: grid; gap: 0; }
.carousel-slide-caption > a b { font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif; font-size: 11px; }
html[dir="rtl"] .carousel-slide-caption > a b { font-family: "Noto Sans Arabic", Tahoma, sans-serif; }
.carousel-slide-caption > a small { color: var(--muted); font-size: 8px; font-weight: 700; text-transform: uppercase; }
.carousel-slide-caption > a > span:last-child { color: var(--green-dark); font-size: 18px; }
.carousel-arrow {
  position: absolute;
  z-index: 6;
  top: 243px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 2px;
  background: rgba(13, 43, 34, .9);
  color: white;
  box-shadow: 0 6px 20px rgba(13, 43, 34, .22);
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  visibility: hidden;
  transform: translateY(-50%);
}
.carousel-arrow-left { left: -12px; }
.carousel-arrow-right { right: -12px; }
.carousel-arrow[aria-disabled="true"] { opacity: .34; cursor: default; }
.carousel-arrow:focus-visible { outline-color: white; outline-offset: 3px; }
.equipment-carousel[data-ready="true"] > .carousel-arrow { visibility: visible; }

/* Section framing */
.section { padding: 112px 0; }
.section-mast {
  display: grid;
  grid-template-columns: minmax(130px, .25fr) minmax(0, .75fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 58px;
}
.section-index {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.section-index span { min-width: 32px; padding-bottom: 5px; border-bottom: 2px solid var(--green); color: var(--green-dark); }
.section-index.light { color: rgba(255, 255, 255, .6); }
.section-index.light span { color: var(--green); }
.section-mast > div { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr); gap: 60px; align-items: end; }
.section-mast h2 { font-size: clamp(46px, 5vw, 72px); line-height: .98; }
.section-mast > div > p { max-width: 430px; margin: 0 0 5px; color: var(--muted); font-size: 16px; line-height: 1.7; }

/* Sectors */
.sectors { border-top: 1px solid var(--line); background: var(--paper); }
.section.sectors { padding: 70px 0 86px; }
.sectors .section-mast { margin-bottom: 28px; }
.sectors .section-mast h2 {
  font-family: "Noto Kufi Arabic", "Noto Sans Arabic", Tahoma, sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -.025em;
  line-height: 1.3;
}
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.category-card {
  position: relative;
  min-width: 0;
  min-height: 295px;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .5);
  color: inherit;
  text-align: start;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s;
}
.category-card:hover { background: var(--white); }
.category-card > img { width: 100%; height: 205px; padding: 22px 34px 10px; object-fit: contain; filter: saturate(.88) contrast(1.02); transition: transform .35s; }
.category-card:hover > img { transform: scale(1.045); }
.category-card > span {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 15px;
  transition: background .2s, color .2s;
}
.category-card:hover > span { background: var(--green); color: var(--ink); }
.category-card-content { display: grid; gap: 5px; padding: 18px 20px 20px; border-top: 1px solid var(--line); }
.category-card small { color: var(--green-dark); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.category-card strong { font-family: "Noto Kufi Arabic", "Noto Sans Arabic", Tahoma, sans-serif; font-size: 18px; letter-spacing: -.02em; line-height: 1.35; }

/* Showroom */
.showroom {
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}
.section.showroom { padding: 86px 0 92px; }
.showroom-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: end;
}
.showroom-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.showroom-kicker span { width: 44px; height: 3px; background: var(--green); }
.showroom-heading h2 {
  max-width: 790px;
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(48px, 5.25vw, 76px);
  letter-spacing: -.05em;
  line-height: .98;
}
.showroom-visit {
  padding-inline-start: 32px;
  border-inline-start: 1px solid var(--line);
}
.showroom-visit > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.showroom-visit address {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}
.showroom-visit address::before {
  content: "⌖";
  min-width: 39px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 800;
}
.showroom-visit address small { font-size: 9px; font-weight: 750; }
.showroom-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 18px; }
.showroom-actions a {
  min-width: 0;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.showroom-map { border-color: var(--green) !important; background: var(--green); color: var(--ink); }
.showroom-map:hover { border-color: var(--green-dark) !important; background: var(--green-dark); color: white; }
.showroom-map span { font-size: 18px; }
.showroom-call { flex-direction: column; }
.showroom-call:hover { background: var(--ink); color: white; }
.showroom-call small { font-size: 10px; font-weight: 650; }
.showroom-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, clamp(150px, 12.7vw, 210px));
  gap: 10px;
  margin-top: 58px;
}
.showroom-photo {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}
.showroom-photo-main { grid-column: 1 / 10; grid-row: 1 / 3; }
.showroom-photo-floor { grid-column: 1 / 10; grid-row: 3; }
.showroom-photo-portrait { grid-column: 10 / 13; grid-row: 1 / 4; }
.showroom-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.showroom-photo:hover img { transform: scale(1.018); }
.showroom-photo-main img { object-position: center 52%; }
.showroom-photo-floor img { object-position: center 51%; }
.showroom-photo-portrait img { object-position: center 38%; }
.showroom-photo-main::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(5, 18, 14, .78), transparent);
  pointer-events: none;
}
.showroom-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: white;
}
.showroom-photo figcaption span {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.showroom-photo figcaption strong {
  max-width: 330px;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  letter-spacing: -.025em;
  line-height: 1.15;
  text-align: end;
}

/* Catalogue */
.catalogue { background: var(--ink); color: white; }
.catalogue-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .54fr); gap: 80px; align-items: end; }
.catalogue-heading h2 { margin-top: 22px; font-size: clamp(50px, 5.2vw, 74px); line-height: .98; }
.catalogue-heading h2 em { color: var(--green); font-style: normal; }
.catalogue-tools { display: grid; gap: 24px; }
.catalogue-note { margin: 0; color: rgba(255, 255, 255, .58); font-size: 13px; line-height: 1.6; }
.search-box { min-height: 58px; display: flex; align-items: center; gap: 14px; padding: 0 16px; border: 1px solid rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .035); }
.search-box:focus-within { border-color: var(--green); }
.search-icon { position: relative; width: 18px; height: 18px; flex: 0 0 auto; border: 2px solid var(--green); border-radius: 50%; }
.search-icon::after { content: ""; position: absolute; width: 7px; height: 2px; right: -5px; bottom: -2px; background: var(--green); transform: rotate(45deg); }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: white; font-size: 14px; }
.search-box input::placeholder { color: rgba(255, 255, 255, .54); }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 54px; }
.filter-button { min-height: 44px; padding: 0 15px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 0; background: transparent; color: rgba(255, 255, 255, .72); font-size: 11px; font-weight: 650; cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.filter-button:hover:not(.is-active) { border-color: rgba(255, 255, 255, .64); color: white; }
.filter-button.is-active { border-color: var(--green); background: var(--green); color: var(--ink); }
.results-copy { min-height: 18px; margin: 20px 0; color: rgba(255, 255, 255, .52); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; background: var(--white); color: var(--ink); transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 24px 54px rgba(0, 0, 0, .24); }
.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: inherit;
  cursor: pointer;
}
.product-image::after { content: ""; position: absolute; right: 18%; bottom: 9%; left: 18%; height: 8%; border-radius: 50%; background: rgba(13, 43, 34, .12); filter: blur(13px); }
.product-image img { position: relative; z-index: 1; width: 100%; height: 100%; padding: 26px; object-fit: contain; filter: saturate(.92) contrast(1.02); transition: transform .35s; }
.product-card:hover .product-image img { transform: scale(1.045); }
.product-badge { position: absolute; z-index: 2; top: 12px; inset-inline-start: 12px; padding: 6px 8px; background: var(--ink); color: white; font-size: 8px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.product-number { position: absolute; z-index: 2; top: 14px; inset-inline-end: 14px; color: var(--muted); font-size: 10px; font-weight: 700; }
.product-info { flex: 1; display: flex; flex-direction: column; padding: 18px; }
.product-info small { color: var(--green-dark); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-info h3 { min-height: 48px; margin: 8px 0 17px; font-family: "Space Grotesk", sans-serif; font-size: 18px; font-weight: 650; letter-spacing: -.025em; line-height: 1.3; }
.product-actions { display: grid; grid-template-columns: 1fr auto; gap: 9px; margin-top: auto; padding-top: 13px; border-top: 1px solid var(--line); }
.product-action,
.product-whatsapp {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.product-action:hover { border-color: var(--ink); background: var(--paper); }
.product-whatsapp { border-color: var(--ink); background: var(--ink); color: white; }
.product-whatsapp:hover { border-color: var(--green-dark); background: var(--green-dark); }
.catalogue-footer { display: flex; justify-content: center; margin-top: 42px; }
.empty-state { grid-column: 1 / -1; margin: 0; padding: 60px 24px; border: 1px dashed rgba(255, 255, 255, .25); color: rgba(255, 255, 255, .62); text-align: center; line-height: 1.7; }
.sourcing-callout {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 76px;
  padding: 38px 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: var(--ink-soft);
}
.sourcing-callout > div > span { color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.sourcing-callout h3 { max-width: 720px; margin: 12px 0 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(25px, 2.6vw, 38px); letter-spacing: -.035em; line-height: 1.15; }

/* Method */
.method { border-bottom: 1px solid var(--line); background: var(--paper-deep); }
.method-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(410px, .75fr); gap: clamp(60px, 8vw, 120px); align-items: center; }
.method-copy h2 { max-width: 790px; margin-top: 25px; font-size: clamp(46px, 5vw, 72px); line-height: 1; }
.method-lead { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.method-steps { margin: 44px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.method-steps li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.method-steps li > span { color: var(--green-dark); font-size: 10px; font-weight: 800; }
.method-steps h3 { margin: 0 0 7px; font-size: 17px; }
.method-steps p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.58; }
.method-visual { position: relative; min-height: 590px; margin: 0; overflow: hidden; background: var(--ink); }
.method-visual::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 56% 34%, rgba(98, 174, 106, .24), transparent 38%); }
.method-visual img { position: absolute; z-index: 1; width: 115%; max-width: none; height: 78%; right: -17%; bottom: 14%; object-fit: contain; filter: saturate(.8) contrast(1.08) drop-shadow(0 26px 18px rgba(0, 0, 0, .28)); }
.vertical-label { position: absolute; z-index: 2; top: 28px; inset-inline-start: 26px; color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; writing-mode: vertical-rl; }
.method-visual figcaption { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; border-top: 1px solid var(--line-light); color: white; }
.method-visual figcaption strong { font-family: "Space Grotesk", sans-serif; font-size: 18px; }
.method-visual figcaption span { color: rgba(255, 255, 255, .58); font-size: 11px; }

/* Company */
.company { background: var(--white); }
.company-grid { display: grid; grid-template-columns: minmax(300px, .64fr) minmax(0, 1.36fr); gap: clamp(60px, 8vw, 120px); }
.company-heading h2 { max-width: 560px; margin-top: 25px; font-size: clamp(48px, 5vw, 72px); line-height: 1; }
.company-copy { padding-inline-start: clamp(42px, 5vw, 78px); border-inline-start: 1px solid var(--line); }
.company-statement { max-width: 790px; margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(27px, 2.7vw, 40px); font-weight: 600; letter-spacing: -.035em; line-height: 1.24; }
.company-principles { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 55px; border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.company-principles article { min-height: 190px; padding: 20px; border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.company-principles article > span { color: var(--green-dark); font-size: 10px; font-weight: 800; }
.company-principles h3 { margin: 34px 0 8px; font-size: 16px; }
.company-principles p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

/* Quote */
.quote { background: var(--green-wash); }
.quote-grid { display: grid; grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr); gap: clamp(54px, 7vw, 108px); align-items: start; }
.quote-intro h2 { margin-top: 25px; font-size: clamp(48px, 5vw, 72px); line-height: 1; }
.quote-intro > p:not(.section-index) { max-width: 500px; margin: 26px 0 0; color: #4e6157; font-size: 16px; line-height: 1.7; }
.whatsapp-direct { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; margin-top: 35px; padding: 14px 16px; border: 1px solid var(--line); background: rgba(255, 255, 255, .54); text-decoration: none; transition: background .2s, transform .2s; }
.whatsapp-direct:hover { background: white; transform: translateY(-2px); }
.whatsapp-direct > span:nth-child(2) { display: grid; gap: 3px; }
.whatsapp-direct small { color: var(--muted); font-size: 10px; }
.whatsapp-direct strong { font-size: 15px; }
.whatsapp-direct > bdi { color: var(--green-dark); font-size: 20px; }
.direct-contact { display: grid; margin-top: 30px; border-top: 1px solid var(--line); }
.direct-contact > a,
.office-hours { display: grid; gap: 5px; padding: 17px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.direct-contact small { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.direct-contact strong { font-size: 15px; overflow-wrap: anywhere; }
.office-hours p { margin: 0; font-size: 13px; line-height: 1.65; }
.quote-form { padding: 36px; background: var(--ink); color: white; box-shadow: var(--shadow); }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--line-light); }
.form-heading span { font-family: "Space Grotesk", sans-serif; font-size: 19px; font-weight: 700; }
.form-heading p { margin: 0; color: rgba(255, 255, 255, .5); font-size: 10px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label { display: grid; gap: 8px; margin-bottom: 16px; color: rgba(255, 255, 255, .72); font-size: 10px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.quote-form input,
.quote-form select,
.quote-form textarea { width: 100%; border: 1px solid rgba(255, 255, 255, .22); border-radius: 0; outline: 0; background: rgba(255, 255, 255, .055); color: white; transition: border-color .2s, background .2s; }
.quote-form input,
.quote-form select { min-height: 50px; padding: 0 14px; }
.quote-form textarea { min-height: 130px; padding: 14px; resize: vertical; }
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: rgba(255, 255, 255, .38); }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { border-color: var(--green); background: rgba(255, 255, 255, .08); }
.quote-form select option { color: var(--ink); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 8px; }
.form-footer p { max-width: 320px; margin: 0; color: rgba(255, 255, 255, .45); font-size: 10px; line-height: 1.55; }
.form-footer .button { flex-shrink: 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--paper); }
.footer-main { min-height: 200px; display: grid; grid-template-columns: minmax(240px, .8fr) minmax(250px, 1fr) auto; align-items: center; gap: 60px; }
.footer-brand .brand-logo { width: 128px; height: 128px; }
.footer-main > p { max-width: 400px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
.footer-nav a { min-height: 32px; display: flex; align-items: center; font-size: 12px; font-weight: 650; text-decoration: none; }
.footer-nav a:hover { color: var(--green-dark); }
.footer-bottom { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 650; letter-spacing: .07em; text-transform: uppercase; }
.footer-bottom a { text-decoration: none; }

/* Product dialog */
.product-dialog { width: min(900px, calc(100% - 32px)); max-width: none; padding: 0; overflow: visible; border: 0; background: var(--white); color: var(--ink); box-shadow: 0 34px 100px rgba(0, 0, 0, .34); }
.product-dialog[open] { display: grid; grid-template-columns: .92fr 1.08fr; }
.product-dialog::backdrop { background: rgba(5, 18, 14, .78); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; z-index: 5; top: 12px; inset-inline-end: 12px; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--paper); font-size: 25px; line-height: 1; cursor: pointer; }
.dialog-media { min-height: 520px; display: grid; place-items: center; padding: 48px 30px; border-inline-end: 1px solid var(--line); background: #fff; }
.dialog-media img { width: 100%; max-height: 430px; object-fit: contain; filter: drop-shadow(0 20px 18px rgba(13, 43, 34, .15)); }
.dialog-copy { align-self: center; padding: 60px 48px 48px; }
.dialog-category { margin: 0 0 14px; color: var(--green-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.dialog-copy h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.03; }
.dialog-copy > p:not(.dialog-category) { margin: 20px 0; color: var(--muted); line-height: 1.65; }
.dialog-copy ul { display: grid; gap: 10px; margin: 24px 0 30px; padding: 22px 0; border-block: 1px solid var(--line); list-style: none; }
.dialog-copy li { position: relative; padding-inline-start: 18px; color: #52605a; font-size: 12px; line-height: 1.5; }
.dialog-copy li::before { content: ""; position: absolute; top: .58em; inset-inline-start: 0; width: 6px; height: 6px; background: var(--green); }
.mobile-contact { display: none; }

/* RTL */
html[dir="rtl"] body,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea { font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif; }
html[dir="rtl"] body { line-height: 1.65; }
html[dir="rtl"] .brand .brand-logo { object-position: right center; }
html[dir="rtl"] .language-switch { font-family: "IBM Plex Sans", Arial, sans-serif; }
html[dir="rtl"] .hero::before {
  mask-image: linear-gradient(to left, #000, transparent 64%);
}
html[dir="rtl"] .hero h1,
html[dir="rtl"] .section h2,
html[dir="rtl"] .category-card strong,
html[dir="rtl"] .product-info h3,
html[dir="rtl"] .sourcing-callout h3,
html[dir="rtl"] .company-statement,
html[dir="rtl"] .form-heading span,
html[dir="rtl"] .method-visual figcaption strong,
html[dir="rtl"] .product-dialog h2 { font-family: "Noto Kufi Arabic", "Noto Sans Arabic", Tahoma, sans-serif; letter-spacing: 0; }
html[dir="rtl"] .hero h1 { font-size: clamp(50px, 5.25vw, 79px); line-height: 1.22; }
html[dir="rtl"] .section-mast h2,
html[dir="rtl"] .catalogue-heading h2,
html[dir="rtl"] .method-copy h2,
html[dir="rtl"] .company-heading h2,
html[dir="rtl"] .quote-intro h2 { line-height: 1.32; }
html[dir="rtl"] .hero-kicker,
html[dir="rtl"] .section-index,
html[dir="rtl"] .category-card small,
html[dir="rtl"] .product-badge,
html[dir="rtl"] .product-info small,
html[dir="rtl"] .results-copy,
html[dir="rtl"] .sourcing-callout > div > span,
html[dir="rtl"] .direct-contact small,
html[dir="rtl"] .quote-form label,
html[dir="rtl"] .footer-bottom,
html[dir="rtl"] .dialog-category { letter-spacing: 0; text-transform: none; }
html[dir="rtl"] .main-nav a::after { transform-origin: left; }
html[dir="rtl"] .main-nav a:hover::after { transform-origin: right; }
html[dir="rtl"] .equipment-carousel::before { inset: 28px 28px -28px -28px; }
html[dir="rtl"] .method-visual img { right: auto; left: -17%; transform: scaleX(-1); }
html[dir="rtl"] .search-box input,
html[dir="rtl"] .quote-form input:not([dir="ltr"]),
html[dir="rtl"] .quote-form textarea { text-align: start; }
html[dir="rtl"] .showroom-kicker { letter-spacing: 0; text-transform: none; }
html[dir="rtl"] .showroom-heading h2,
html[dir="rtl"] .showroom-photo figcaption strong { font-family: "Noto Kufi Arabic", "Noto Sans Arabic", Tahoma, sans-serif; letter-spacing: 0; }
html[dir="rtl"] .showroom-heading h2 { line-height: 1.35; }
html[dir="rtl"] .showroom-photo figcaption { flex-direction: row-reverse; }
html[dir="rtl"] .showroom-photo figcaption span { letter-spacing: 0; text-transform: none; }

/* Responsive */
@media (max-width: 1120px) {
  :root { --shell: min(100% - 40px, 1100px); }
  .header-inner { gap: 20px; }
  .brand .brand-logo { width: 76px; height: 76px; }
  .main-nav { gap: 18px; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(430px, .92fr); gap: 48px; }
  .hero h1 { font-size: clamp(62px, 7vw, 82px); }
  .equipment-slide { grid-template-rows: minmax(340px, 1fr) auto; }
  .carousel-slide-media { min-height: 340px; }
  .carousel-slide-media img { height: 340px; }
  .catalogue-heading { gap: 50px; }
  .method-grid { gap: 60px; }
  .company-grid { gap: 60px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 102px; }
  .hero-grid { min-height: 0; display: flex; flex-direction: column; gap: 0; }
  .hero-copy { padding: 58px 0 54px; }
  .hero-lead { max-width: 680px; }
  .hero-visual { order: -1; width: min(690px, calc(100% - 28px)); margin-inline-start: 0; padding: 28px 0 48px; }
  .section { padding: 88px 0; }
  .section-mast { grid-template-columns: 1fr; gap: 24px; }
  .section-mast > div { grid-template-columns: 1fr; gap: 22px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .showroom-intro { grid-template-columns: 1fr; gap: 34px; }
  .showroom-visit { max-width: 680px; padding-block-start: 28px; padding-inline-start: 0; border-block-start: 1px solid var(--line); border-inline-start: 0; }
  .showroom-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto clamp(210px, 34vw, 290px);
  }
  .showroom-photo-main { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 2.16 / 1; }
  .showroom-photo-floor { grid-column: 1; grid-row: 2; }
  .showroom-photo-portrait { grid-column: 2; grid-row: 2; }
  .catalogue-heading { grid-template-columns: 1fr; gap: 36px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: 1fr; }
  .method-visual { min-height: 520px; }
  .company-grid { grid-template-columns: 1fr; }
  .company-copy { padding: 42px 0 0; border-top: 1px solid var(--line); border-inline-start: 0; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; }
  .quote-intro .section-index,
  .quote-intro h2,
  .quote-intro > p { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 30px; padding-block: 42px; }
  .footer-nav { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid var(--line); }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 28px);
    --carousel-mobile-media: clamp(170px, 24vh, 205px);
  }
  html { scroll-padding-top: 78px; }
  body { padding-bottom: 72px; }
  .topbar { display: none; }
  .header-inner { min-height: 76px; grid-template-columns: auto 1fr auto auto; gap: 9px; }
  .brand .brand-logo { width: 56px; height: 56px; }
  .menu-toggle { display: block; grid-column: 4; }
  .header-actions { grid-column: 3; grid-row: 1; }
  .language-switch { min-width: 52px; padding-inline: 10px; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: -14px;
    left: -14px;
    display: none;
    padding: 12px 14px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 38px rgba(13, 43, 34, .12);
  }
  .main-nav.is-open { display: grid; }
  .main-nav a { min-height: 52px; padding: 8px 5px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .main-nav a::after { display: none; }
  .hero-copy { padding: 18px 0 24px; }
  .hero-kicker { flex-wrap: wrap; margin-bottom: 12px; }
  .hero h1 { font-size: clamp(40px, 11.5vw, 48px); line-height: .94; }
  html[dir="rtl"] .hero h1 { font-size: clamp(34px, 9.8vw, 42px); }
  .hero-price-title .hero-title-main { font-size: clamp(40px, 11.5vw, 48px); line-height: .98; }
  html[dir="rtl"] .hero-price-title .hero-title-main { font-size: clamp(32px, 8.7vw, 39px); line-height: 1.45; }
  .hero-lead { margin-top: 11px; font-size: 13px; line-height: 1.45; }
  .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; margin-top: 14px; }
  .hero-actions .button-secondary { display: grid; }
  .hero-contact-action { min-width: 0; min-height: 56px; padding: 7px 6px; }
  .hero-contact-action strong { font-size: 13px; }
  .hero-proof { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 16px; }
  .hero-proof div {
    min-height: 58px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 2px;
    padding: 7px 5px;
    border-inline-end: 1px solid var(--line);
    border-bottom: 0;
    text-align: center;
  }
  .hero-proof div:last-child { border-inline-end: 0; }
  .hero-proof span { font-size: 8px; }
  .hero-proof strong { font-size: 10px; line-height: 1.45; }
  html[dir="rtl"] .hero-proof strong { font-family: "Noto Sans Arabic", Tahoma, sans-serif; }
  .hero-visual { width: 100%; padding: 8px 0 14px; }
  .equipment-carousel { box-shadow: 0 14px 38px rgba(13, 43, 34, .1); }
  .equipment-carousel::before,
  .carousel-topline { display: none; }
  .carousel-track { gap: 8px; }
  .carousel-track::after { content: ""; flex: 0 0 calc(8% - 8px); }
  .equipment-slide { flex-basis: 92%; grid-template-rows: var(--carousel-mobile-media) auto; }
  .carousel-slide-media { min-height: var(--carousel-mobile-media); }
  .carousel-slide-media img {
    width: 100%;
    height: var(--carousel-mobile-media);
    padding: 12px 16px 8px;
    object-fit: contain;
    filter: saturate(.94) contrast(1.03) drop-shadow(0 12px 10px rgba(13, 43, 34, .13));
  }
  .carousel-slide-media .overview-grid img { height: 100%; padding: 7px 9px 16px; }
  .overview-grid b { right: 28px; bottom: 3px; padding: 2px 4px; font-size: 7px; }
  .carousel-slide-caption { min-height: 58px; gap: 8px; padding: 7px 10px; }
  .carousel-slide-caption p strong { font-size: 16px; }
  .carousel-slide-caption > a { min-width: 64px; min-height: 42px; gap: 7px; padding: 5px 8px; }
  .carousel-arrow { top: calc(var(--carousel-mobile-media) / 2); width: 44px; height: 44px; }
  .section { padding: 76px 0; }
  .section.sectors { padding: 32px 0 48px; }
  .sectors .section-mast { display: block; margin-bottom: 17px; }
  .sectors .section-mast > div { display: block; }
  .sectors .section-mast h2 { font-size: 35px; }
  .sectors .section-mast > div > p { margin-top: 7px; font-size: 12px; line-height: 1.5; }
  .section-mast { margin-bottom: 38px; }
  .section-mast h2,
  .catalogue-heading h2,
  .method-copy h2,
  .company-heading h2,
  .quote-intro h2 { font-size: 44px; }
  html[dir="rtl"] .section-mast h2,
  html[dir="rtl"] .catalogue-heading h2,
  html[dir="rtl"] .method-copy h2,
  html[dir="rtl"] .company-heading h2,
  html[dir="rtl"] .quote-intro h2 { font-size: 38px; }
  .category-grid { gap: 8px; border: 0; }
  .category-card { min-height: 240px; border: 1px solid var(--line); }
  .category-card > img { height: 166px; padding: 18px 14px 6px; }
  .category-card-content { padding: 14px; }
  .category-card strong { font-size: 15px; }
  .category-card small { font-size: 8px; }
  .section.showroom { padding: 52px 0 58px; }
  .showroom-kicker { margin-bottom: 14px; }
  .showroom-heading h2 { font-size: clamp(38px, 10vw, 48px); line-height: 1; }
  html[dir="rtl"] .showroom-heading h2 { font-size: clamp(33px, 8.7vw, 41px); line-height: 1.4; }
  .showroom-visit { padding-block-start: 22px; }
  .showroom-visit > p { font-size: 13px; line-height: 1.55; }
  .showroom-visit address { margin-top: 17px; padding-top: 15px; font-size: 12px; }
  .showroom-actions { gap: 7px; margin-top: 14px; }
  .showroom-actions a { min-height: 56px; padding: 8px; font-size: 11px; }
  .showroom-call small { font-size: 9px; }
  .showroom-gallery { grid-template-rows: auto clamp(175px, 43vw, 235px); gap: 7px; margin-top: 32px; }
  .showroom-photo figcaption { right: 14px; bottom: 13px; left: 14px; gap: 10px; }
  .showroom-photo figcaption span { font-size: 7px; }
  .showroom-photo figcaption strong { max-width: 220px; font-size: 14px; }
  .showroom-photo-floor img { object-position: 52% center; }
  .showroom-photo-portrait img { object-position: center 34%; }
  .catalogue-heading { gap: 30px; }
  .catalogue-note { font-size: 12px; }
  .filter-row { margin-top: 36px; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
  .filter-button { flex: 0 0 auto; }
  .product-grid { gap: 10px; }
  .product-image img { padding: 14px; }
  .product-info { padding: 13px; }
  .product-info h3 { min-height: 44px; margin: 7px 0 12px; font-size: 14px; }
  .product-actions { grid-template-columns: 1fr; gap: 6px; }
  .product-action,
  .product-whatsapp { min-height: 40px; padding: 0 8px; font-size: 10px; }
  .sourcing-callout { align-items: stretch; flex-direction: column; margin-top: 54px; padding: 28px 24px; }
  .sourcing-callout .button { width: 100%; }
  .method-visual { min-height: 410px; }
  .method-visual img { width: 125%; height: 74%; }
  .company-principles { grid-template-columns: 1fr; }
  .company-principles article { min-height: 140px; }
  .company-principles h3 { margin-top: 20px; }
  .quote-intro { display: block; }
  .quote-form { padding: 27px 18px 24px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-heading { align-items: flex-start; flex-direction: column; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand .brand-logo { width: 112px; height: 112px; }
  .footer-nav { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; padding-block: 18px; }
  .product-dialog[open] { grid-template-columns: 1fr; max-height: calc(100vh - 28px); overflow-y: auto; }
  .dialog-media { min-height: 280px; padding: 42px 25px; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .dialog-copy { padding: 34px 24px 28px; }
  .mobile-contact {
    position: fixed;
    z-index: 45;
    right: 14px;
    bottom: 12px;
    left: 14px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: var(--ink);
    color: white;
    box-shadow: 0 12px 34px rgba(13, 43, 34, .28);
    font-size: 13px;
    text-decoration: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity .2s, transform .2s;
  }
  .mobile-contact.is-visible { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-contact > span:last-child { color: var(--green); }
}

@media (max-width: 380px) {
  .showroom-actions { grid-template-columns: 1fr; }
  .showroom-photo figcaption strong { max-width: 175px; font-size: 12px; }
}

@media (max-width: 390px) {
  .brand .brand-logo { width: 52px; height: 52px; }
  .language-switch { min-width: 48px; font-size: 10px; }
  .header-inner { grid-template-columns: auto 1fr auto auto; }
  .hero h1 { font-size: 43px; }
  html[dir="rtl"] .hero h1 { font-size: 36px; }
  .category-card { min-height: 220px; }
  .category-card > img { height: 145px; }
  .product-info h3 { font-size: 13px; }
  .carousel-slide-caption p strong { font-size: 16px; }
  .carousel-slide-caption p span { font-size: 8px; }
}

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

/* Dedicated product-family screens */
.family-page { min-height: 100vh; padding-bottom: 132px; background: var(--paper); color: var(--ink); }
.family-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.family-topbar {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 232, .97);
  backdrop-filter: blur(16px);
}
.family-topbar-inner { min-height: 76px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; }
.family-back,
.family-language,
.family-brand { color: inherit; text-decoration: none; }
.family-back { display: inline-flex; align-items: center; gap: 10px; justify-self: start; font-size: 13px; font-weight: 750; }
.family-back > span:first-child { color: var(--green-dark); font-size: 20px; }
.family-brand { justify-self: center; }
.family-brand img { width: 58px; height: 58px; object-fit: contain; }
.family-language {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 0 15px;
  border: 1px solid var(--line);
  font-weight: 750;
}
.family-intro { position: relative; overflow: hidden; padding: 54px 0 46px; background: var(--ink); color: white; }
.family-intro::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -60px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(98, 174, 106, .28);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(98, 174, 106, .045), 0 0 0 84px rgba(98, 174, 106, .035);
}
.family-intro .family-shell { position: relative; z-index: 1; }
.family-eyebrow { margin: 0 0 14px; color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.family-intro h1 { max-width: 900px; margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(52px, 7vw, 88px); letter-spacing: -.055em; line-height: .95; }
html[dir="rtl"] .family-intro h1 { font-family: "Noto Kufi Arabic", "Noto Sans Arabic", Tahoma, sans-serif; font-size: clamp(44px, 6vw, 70px); letter-spacing: -.035em; line-height: 1.35; }
.family-intro-meta { max-width: 760px; display: flex; align-items: center; gap: 24px; margin-top: 28px; }
.family-intro-meta strong { flex: 0 0 auto; padding: 9px 12px; background: var(--green); color: var(--ink); font-size: 12px; }
.family-intro-meta p { margin: 0; color: rgba(255, 255, 255, .72); font-size: 15px; line-height: 1.55; }
.family-gallery-section { padding: 38px 0 82px; }
.family-gallery-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.family-gallery-heading h2 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: 30px; letter-spacing: -.035em; }
html[dir="rtl"] .family-gallery-heading h2 { font-family: "Noto Kufi Arabic", "Noto Sans Arabic", Tahoma, sans-serif; }
.family-gallery-heading > span { color: var(--green-dark); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.family-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.family-product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  color: inherit;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.family-product-card:hover { border-color: var(--green-dark); transform: translateY(-4px); box-shadow: 0 18px 36px rgba(13, 43, 34, .12); }
.family-product-primary { min-width: 0; display: grid; grid-template-rows: auto 1fr; color: inherit; text-decoration: none; }
.family-product-image { position: relative; aspect-ratio: 1.28 / 1; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--line); background: white; }
.family-product-image img { width: 100%; height: 100%; padding: 20px; object-fit: contain; filter: saturate(.93) contrast(1.02) drop-shadow(0 13px 10px rgba(13, 43, 34, .13)); transition: transform .3s; }
.family-product-primary:hover .family-product-image img { transform: scale(1.035); }
.family-product-number { position: absolute; z-index: 2; top: 10px; inset-inline-start: 10px; color: var(--green-dark); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.family-product-status { position: absolute; z-index: 2; right: 8px; bottom: 8px; padding: 6px 8px; background: var(--green-dark); color: white; font-size: 8px; font-weight: 800; line-height: 1.2; }
html[dir="rtl"] .family-product-status { right: auto; left: 8px; }
.family-product-copy { min-width: 0; padding: 14px 15px; }
.family-product-copy strong { font-family: "Space Grotesk", sans-serif; font-size: 16px; line-height: 1.25; }
html[dir="rtl"] .family-product-copy strong { font-family: "Noto Sans Arabic", Tahoma, sans-serif; line-height: 1.55; }
.family-product-actions { display: grid; gap: 1px; border-top: 1px solid var(--line); background: var(--line); }
.family-product-details-action,
.family-product-whatsapp-action { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 12px; font-size: 10px; font-weight: 800; line-height: 1.25; text-decoration: none; }
.family-product-details-action { background: var(--paper); color: var(--green-dark); }
.family-product-whatsapp-action { justify-content: flex-start; background: #25d366; color: var(--ink); }
.family-product-whatsapp-action img { flex: 0 0 auto; padding: 2px; border-radius: 50%; background: white; }
.family-product-primary:focus-visible,
.family-product-details-action:focus-visible,
.family-product-whatsapp-action:focus-visible { position: relative; z-index: 3; outline: 3px solid var(--green); outline-offset: -3px; }
.family-missing { display: flex; align-items: center; justify-content: space-between; gap: 36px; margin-top: 38px; padding: 28px 30px; border: 1px solid var(--line); background: var(--paper-deep); }
.family-missing h2 { margin: 0 0 6px; font-family: "Space Grotesk", sans-serif; font-size: 24px; }
html[dir="rtl"] .family-missing h2 { font-family: "Noto Kufi Arabic", "Noto Sans Arabic", Tahoma, sans-serif; }
.family-missing p { margin: 0; color: var(--muted); line-height: 1.55; }
.family-missing > a { min-height: 50px; display: inline-flex; align-items: center; gap: 9px; padding: 0 18px; background: #25d366; color: var(--ink); font-weight: 800; text-decoration: none; white-space: nowrap; }
.family-missing > a img,
.family-whatsapp-action img { padding: 2px; border-radius: 50%; background: white; }
.family-sticky-actions {
  position: fixed;
  z-index: 70;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, .16);
  background: rgba(13, 43, 34, .97);
  box-shadow: 0 -14px 34px rgba(13, 43, 34, .2);
  backdrop-filter: blur(16px);
}
.family-sticky-actions-inner { display: grid; grid-template-columns: 1fr minmax(210px, .45fr); gap: 10px; }
.family-whatsapp-action,
.family-phone-action { min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 11px; text-decoration: none; font-weight: 800; }
.family-whatsapp-action { background: #25d366; color: var(--ink); }
.family-phone-action { flex-direction: column; gap: 1px; border: 1px solid rgba(255, 255, 255, .44); color: white; }
.family-phone-action small { color: rgba(255, 255, 255, .68); font-size: 10px; }

/* Verified product-detail screens. Homepage styles and markup remain unchanged. */
.product-detail-description { max-width: 760px; margin: 24px 0 0; color: rgba(255, 255, 255, .74); font-size: 17px; line-height: 1.65; }
.product-detail-content { padding: 38px 0 86px; }
.product-detail-overview { display: grid; grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr); gap: 34px; align-items: center; margin-bottom: 34px; }
.product-detail-hero-image { margin: 0; overflow: hidden; border: 1px solid var(--line); background: white; }
.product-detail-hero-image img { width: 100%; aspect-ratio: 1.28 / 1; display: block; padding: 26px; object-fit: contain; filter: saturate(.93) contrast(1.02) drop-shadow(0 13px 10px rgba(13, 43, 34, .13)); }
.product-detail-hero-image figcaption { padding: 12px 15px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; line-height: 1.5; }
.product-detail-heading > p { margin: 0 0 12px; color: var(--green-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-detail-heading h2 { max-width: 620px; margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(38px, 5vw, 62px); letter-spacing: -.055em; line-height: .98; }
html[dir="rtl"] .product-detail-heading h2 { font-family: "Noto Kufi Arabic", "Noto Sans Arabic", Tahoma, sans-serif; letter-spacing: -.035em; line-height: 1.4; }
.product-detail-heading > strong { min-width: 42px; min-height: 42px; display: inline-grid; place-items: center; margin-top: 22px; padding: 8px; background: var(--green); color: var(--ink); }
.product-variant-list { display: grid; gap: 18px; }
.product-variant { overflow: hidden; border: 1px solid var(--line); background: var(--white); }
.product-variant.has-image { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); }
.product-variant-image { display: grid; place-items: center; min-height: 360px; border-inline-end: 1px solid var(--line); background: white; }
.product-variant-image img { width: 100%; height: 100%; max-height: 430px; padding: 28px; object-fit: contain; }
.product-variant-body { padding: 28px 30px 30px; }
.product-variant-title { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.product-variant-title > span { color: var(--green-dark); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-variant-title h3 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(27px, 3.8vw, 44px); letter-spacing: -.04em; }
.product-variant-body > p { margin: 18px 0 0; color: var(--muted); line-height: 1.6; }
.product-spec-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 24px 0; border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.product-spec-list > div { min-width: 0; display: grid; gap: 7px; padding: 15px; border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-spec-list dt { color: var(--muted); font-size: 10px; font-weight: 700; line-height: 1.4; }
.product-spec-list dd { margin: 0; color: var(--ink); font-size: 15px; font-weight: 800; line-height: 1.35; overflow-wrap: anywhere; }
.product-variant-whatsapp { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 18px; background: #25d366; color: var(--ink); font-weight: 800; text-decoration: none; }
.product-variant-whatsapp img { padding: 2px; border-radius: 50%; background: white; }

/* Lightweight catalog pages. Technical specifications remain reserved for verified records. */
.catalog-product-use-list { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.catalog-product-use-list li { position: relative; padding: 14px 16px 14px 42px; border: 1px solid var(--line); background: var(--white); color: var(--ink); font-size: 14px; font-weight: 750; line-height: 1.45; }
.catalog-product-use-list li::before { content: "✓"; position: absolute; top: 13px; left: 15px; color: var(--green-dark); font-weight: 900; }
html[dir="rtl"] .catalog-product-use-list li { padding: 14px 42px 14px 16px; }
html[dir="rtl"] .catalog-product-use-list li::before { right: 15px; left: auto; }
.catalog-confirmation-panel { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: 30px; border: 1px solid var(--line); background: var(--paper-deep); }
.catalog-confirmation-panel > div { max-width: 720px; }
.catalog-confirmation-panel p { margin: 0 0 8px; color: var(--green-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.catalog-confirmation-panel h2 { margin: 0 0 10px; font-family: "Space Grotesk", sans-serif; font-size: 28px; letter-spacing: -.035em; }
html[dir="rtl"] .catalog-confirmation-panel h2 { font-family: "Noto Kufi Arabic", "Noto Sans Arabic", Tahoma, sans-serif; line-height: 1.5; }
.catalog-confirmation-panel > div > span { display: block; color: var(--muted); line-height: 1.6; }
.catalog-confirmation-panel > a { min-height: 58px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 20px; background: #25d366; color: var(--ink); font-size: 12px; font-weight: 800; text-decoration: none; text-align: center; }
.catalog-confirmation-panel > a img { padding: 2px; border-radius: 50%; background: white; }

@media (max-width: 900px) {
  .family-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-detail-overview { grid-template-columns: minmax(240px, .78fr) minmax(0, 1.22fr); gap: 24px; }
  .product-variant.has-image { grid-template-columns: minmax(220px, .66fr) minmax(0, 1.34fr); }
}

@media (max-width: 620px) {
  .family-page { padding-bottom: 118px; }
  .family-shell { width: calc(100% - 24px); }
  .family-topbar-inner { min-height: 60px; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 10px; }
  .family-back { gap: 7px; font-size: 11px; }
  .family-back span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .family-brand img { width: 42px; height: 42px; }
  .family-language { min-height: 38px; padding: 0 11px; font-size: 11px; }
  .family-intro { padding: 26px 0 23px; }
  .family-intro::after { top: -90px; right: -110px; width: 260px; height: 260px; }
  .family-eyebrow { margin-bottom: 8px; font-size: 9px; }
  .family-intro h1 { font-size: clamp(38px, 12vw, 50px); line-height: .98; }
  html[dir="rtl"] .family-intro h1 { font-size: clamp(34px, 10.5vw, 44px); line-height: 1.4; }
  .family-intro-meta { align-items: flex-start; flex-direction: column; gap: 10px; margin-top: 15px; }
  .family-intro-meta strong { padding: 7px 9px; font-size: 10px; }
  .family-intro-meta p { max-width: 390px; font-size: 12px; line-height: 1.45; }
  .family-gallery-section { padding: 20px 0 46px; }
  .family-gallery-heading { margin-bottom: 12px; }
  .family-gallery-heading h2 { font-size: 21px; }
  .family-gallery-heading > span { font-size: 9px; }
  .family-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .family-product-image img { padding: 12px 10px 8px; }
  .family-product-copy { gap: 9px; padding: 10px; }
  .family-product-copy strong { font-size: 13px; }
  .family-product-status { max-width: 104px; padding: 5px 6px; font-size: 7px; }
  .family-product-details-action,
  .family-product-whatsapp-action { min-height: 48px; padding: 8px; font-size: 8px; }
  .family-product-whatsapp-action img { width: 18px; height: 18px; }
  .family-missing { align-items: stretch; flex-direction: column; gap: 18px; margin-top: 24px; padding: 22px 18px; }
  .family-missing h2 { font-size: 20px; }
  .family-missing p { font-size: 12px; }
  .family-missing > a { justify-content: center; }
  .family-sticky-actions { padding: 7px 0 calc(7px + env(safe-area-inset-bottom)); }
  .family-sticky-actions-inner { grid-template-columns: 1.15fr .85fr; gap: 7px; }
  .family-whatsapp-action,
  .family-phone-action { min-height: 54px; gap: 7px; font-size: 11px; text-align: center; }
  .family-phone-action { gap: 1px; }
  .family-whatsapp-action img { width: 24px; height: 24px; }
  .product-detail-description { margin-top: 14px; font-size: 12px; line-height: 1.55; }
  .product-detail-content { padding: 20px 0 48px; }
  .product-detail-overview { grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
  .product-detail-hero-image img { padding: 18px; }
  .product-detail-heading h2 { font-size: 34px; }
  html[dir="rtl"] .product-detail-heading h2 { font-size: 31px; }
  .product-detail-heading > strong { margin-top: 14px; }
  .product-variant.has-image { grid-template-columns: 1fr; }
  .product-variant-image { min-height: 240px; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .product-variant-image img { max-height: 310px; padding: 20px; }
  .product-variant-body { padding: 20px 16px; }
  .product-variant-title { align-items: flex-start; flex-direction: column; gap: 8px; }
  .product-variant-title h3 { font-size: 28px; }
  .product-spec-list { grid-template-columns: 1fr 1fr; margin: 18px 0; }
  .product-spec-list > div { padding: 12px 10px; }
  .product-spec-list dd { font-size: 13px; }
  .product-variant-whatsapp { width: 100%; padding: 0 12px; font-size: 11px; text-align: center; }
  .catalog-product-use-list { margin-top: 16px; }
  .catalog-product-use-list li { padding: 12px 12px 12px 38px; font-size: 12px; }
  .catalog-product-use-list li::before { top: 11px; left: 13px; }
  html[dir="rtl"] .catalog-product-use-list li { padding: 12px 38px 12px 12px; }
  html[dir="rtl"] .catalog-product-use-list li::before { right: 13px; left: auto; }
  .catalog-confirmation-panel { align-items: stretch; flex-direction: column; gap: 20px; padding: 22px 18px; }
  .catalog-confirmation-panel h2 { font-size: 22px; }
  .catalog-confirmation-panel > div > span { font-size: 12px; }
  .catalog-confirmation-panel > a { width: 100%; min-height: 56px; padding: 0 12px; font-size: 11px; }
}

@media (max-width: 350px) {
  .family-shell { width: calc(100% - 18px); }
  .family-back span:last-child { max-width: 86px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .family-product-copy strong { font-size: 12px; }
  .family-whatsapp-action,
  .family-phone-action { font-size: 10px; }
  .product-spec-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .family-product-card,
  .family-product-image img { transition: none; }
}
