:root {
  --ink: #0B2141;
  --ink-soft: #26364F;
  --blue: #1F6BFF;
  --blue-dark: #0E57DC;
  --orange: #F26A1B;
  --muted: #6E7686;
  --muted-2: #98A1B0;
  --line: #E6E9EE;
  --line-strong: #D8DDE5;
  --card: #ECEFF3;
  --white: #FFFFFF;
  --radius: 20px;
  --container: 1440px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[lang="ar"] body { font-family: "IBM Plex Sans Arabic", "Manrope", system-ui, sans-serif; }

img { max-width: 100%; }

a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 48px;
}

section { scroll-margin-top: 110px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 92px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.brand__logo {
  width: 116px;
  height: auto;
  display: block;
  flex: none;
}

.brand__divider {
  width: 1px;
  height: 42px;
  background: var(--line-strong);
  flex: none;
}

.brand__tagline {
  max-width: 200px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  line-height: 1.55;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -6px;
  height: 1.5px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover { color: var(--blue); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 26px;
}

.lang-switch {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lang-switch button {
  background: none;
  border: 0;
  padding: 4px 0;
  font: inherit;
  color: #B4BAC5;
  cursor: pointer;
  transition: color 0.15s ease;
}

.lang-switch button.is-active { color: var(--blue); }

.lang-switch button:not(:last-child)::after {
  content: "/";
  margin-inline: 9px;
  color: #CBD0D9;
  font-weight: 500;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn__arrow { font-size: 13px; line-height: 1; }

.btn--dark {
  background: var(--ink);
  color: #fff;
  padding: 15px 22px;
}

.btn--dark:hover {
  background: #12294d;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(11, 33, 65, 0.18);
}

.btn--blue {
  background: var(--blue);
  color: #fff;
  padding: 19px 28px;
  font-size: 15.5px;
}

.btn--blue:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 107, 255, 0.28);
}

.link-underline {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--ink);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.link-underline:hover { color: var(--blue); border-color: var(--blue); }

.circle-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.circle-btn svg { width: 17px; height: 17px; }

.circle-btn--outline {
  border: 1.5px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
}

.circle-btn--outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- Hero ---------- */

.hero { padding: 26px 0 18px; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero__title {
  margin: 0 0 22px;
  font-size: clamp(42px, 4.9vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 800;
  color: var(--ink);
}

.hero__title-line { display: block; }
.accent { color: var(--blue); }

.hero__sub {
  margin: 0 0 34px;
  max-width: 460px;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--muted);
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.search {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 640px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

html[dir="rtl"] .search { padding: 6px 22px 6px 6px; }

.search:focus-within {
  border-color: #BFD3FF;
  box-shadow: 0 4px 18px rgba(31, 107, 255, 0.12);
}

.search__icon {
  width: 20px;
  height: 20px;
  color: #97A0AF;
  flex: none;
}

.search__icon svg { width: 100%; height: 100%; display: block; }

.search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.search__input::placeholder { color: #A6AEBB; font-weight: 500; }

.search__submit {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.search__submit svg { width: 20px; height: 20px; }
.search__submit:hover { background: var(--blue-dark); }
html[dir="rtl"] .search__submit svg,
html[dir="rtl"] .circle-btn svg { transform: scaleX(-1); }

.hero__visual { position: relative; }

.hero__globe {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 30px 45px rgba(16, 24, 40, 0.1));
}

.hero__pin {
  position: absolute;
  top: 27%;
  inset-inline-start: 61%;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.hero-card {
  position: absolute;
  inset-inline-end: 0;
  bottom: 5%;
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #fff;
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.14), 0 2px 8px rgba(16, 24, 40, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(16, 24, 40, 0.18);
}

.hero-card__img {
  width: 100%;
  height: 148px;
  object-fit: contain;
  object-position: center;
}

.hero-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-card__label { font-size: 15px; font-weight: 700; color: var(--ink); }

.hero-card .circle-btn {
  width: 38px;
  height: 38px;
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line-strong);
}

/* ---------- Brands ---------- */

.brands {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brands__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 90px;
}

.brands__label {
  flex: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.brands__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  flex: 1;
  min-height: 90px;
}

.brands__list li {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

.brands__list a { color: inherit; text-decoration: none; }
.brands__list a:active { color: var(--blue); }

.brands__list li + li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 42px;
  background: var(--line-strong);
}

/* ---------- Catalog ---------- */

.catalog { padding: 72px 0 84px; }

.catalog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.05;
  color: var(--ink);
}

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

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.1);
}

.card__text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.card__title { font-size: 19px; font-weight: 700; color: var(--ink); }

.card__sub {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  line-height: 1.5;
}

.card .circle-btn--card {
  position: absolute;
  z-index: 3;
  top: 20px;
  inset-inline-end: 20px;
  width: 38px;
  height: 38px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(16, 24, 40, 0.07);
}

.card:hover .circle-btn--card {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(31, 107, 255, 0.28);
}

.card__img {
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  height: 74%;
  max-width: 92%;
  object-fit: contain;
  object-position: bottom center;
}

.card__group {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  height: 74%;
  width: 100%;
}

.card__group img {
  height: 100%;
  width: auto;
  max-width: 34%;
  object-fit: contain;
  object-position: bottom center;
}

.card__group img:nth-child(1),
.card__group img:nth-child(3) { height: 62%; }

/* ---------- Footer ---------- */

.site-footer { padding-bottom: 44px; }

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.site-footer__title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.site-footer__text { margin: 0; color: var(--muted); font-size: 15px; }

.site-footer__right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__phone {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--line-strong);
  padding-bottom: 3px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.site-footer__phone:hover { color: var(--blue); border-color: var(--blue); }

.site-footer__bar {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-footer__rule { flex: 1; height: 1px; background: var(--line-strong); }

.site-footer__domain {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--muted);
}

/* ---------- RTL tweaks ---------- */

html[dir="rtl"] .hero__title { letter-spacing: 0; }
html[dir="rtl"] .section-title { letter-spacing: 0; }
html[dir="rtl"] .brands__list li,
html[dir="rtl"] .brands__label { letter-spacing: 0.06em; }
html[dir="rtl"] .card__img,
html[dir="rtl"] .hero-card__img { object-position: bottom center; }

/* ---------- Responsive ---------- */

@media (max-width: 1180px) {
  .container { padding-inline: 32px; }
  .hero__grid { grid-template-columns: 1fr; gap: 8px; }
  .hero__visual { order: 2; margin-top: 8px; }
  .hero__globe { max-width: 520px; }
  .hero-card { width: 200px; bottom: 4%; }
  .brands__inner { gap: 22px; }
  .brands__list li { font-size: 12px; letter-spacing: 0.14em; }
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .brand__tagline { display: none; }
  .brand__divider { display: none; }
  .cards { grid-template-columns: 1fr 1fr; }
  .card:first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { padding-inline: 16px; }
  .site-header__inner { min-height: 68px; gap: 10px; }
  .brand { gap: 0; }
  .brand__logo { width: 84px; }
  .header-actions { gap: 10px; }
  .lang-switch { font-size: 12px; }
  .lang-switch button:not(:last-child)::after { margin-inline: 6px; }
  .btn--dark { padding: 10px 14px; font-size: 12px; }
  .btn--dark .btn__arrow { display: none; }
  .hero { padding-top: 14px; }
  .hero__title { font-size: clamp(34px, 10vw, 48px); }
  .hero__sub { font-size: 18px; max-width: none; }
  .hero__cta { gap: 18px; }
  .hero__globe { max-width: 380px; }
  .hero-card { position: relative; inset-inline-end: auto; bottom: auto; width: 100%; max-width: 320px; margin: 18px auto 0; }
  .hero__pin { display: none; }
  .brands__inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 0; }
  .brands__list { flex-wrap: wrap; justify-content: flex-start; gap: 14px 26px; width: 100%; min-height: 0; }
  .brands__list li { flex: 0 0 auto; font-size: 12px; }
  .brands__list li + li::before { display: none; }
  .cards { grid-template-columns: 1fr; }
  .card:first-child { grid-column: auto; }
  .catalog__head { margin-bottom: 26px; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
  .site-footer__bar { gap: 12px; }
  .site-footer__domain { letter-spacing: 0.2em; }
}

@media (max-width: 380px) {
  .brand__logo { width: 72px; }
  .lang-switch button:not(:last-child)::after { margin-inline: 4px; }
  .btn--dark { padding: 9px 11px; font-size: 11.5px; }
}

/* =========================================================
   Inner pages - mobile-first
   ========================================================= */

/* ---------- Mobile navigation ---------- */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-inline-start: 6px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.22s ease, opacity 0.15s ease;
}

.nav-toggle:active { background: var(--card); }

.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 22px 40px rgba(16, 24, 40, 0.08);
}

.nav-panel__links,
.nav-panel__extra {
  display: flex;
  flex-direction: column;
  padding-inline: 16px;
}

.nav-panel__links { padding-top: 10px; }
.nav-panel__extra { padding-bottom: 8px; }

.nav-panel__links a,
.nav-panel__extra a {
  display: flex;
  align-items: center;
  min-height: 52px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.nav-panel__extra a {
  min-height: 46px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.nav-panel__links a:active,
.nav-panel__extra a:active { color: var(--blue); }

.nav-panel__cta {
  display: flex;
  justify-content: center;
  width: calc(100% - 32px);
  margin: 4px 16px 20px;
  padding: 16px 22px;
  font-size: 15px;
}

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav-panel {
    display: block;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .header-actions .btn--dark { display: none; }
  .nav-panel__links a { border-bottom: 1px solid var(--line); }
  .nav-panel__extra { border-top: 1px solid var(--line); padding-top: 4px; margin-top: 6px; }
}

@media (min-width: 981px) {
  .nav-panel { display: none !important; }
}

/* ---------- Footer sitemap ---------- */

.footer-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 40px 0 8px;
  border-top: 1px solid var(--line);
}

.footer-map__col { display: flex; flex-direction: column; gap: 2px; }

.footer-map__title {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.footer-map__col a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.footer-map__col a:active { color: var(--blue); }

.footer-copy {
  padding: 18px 0 26px;
  font-size: 12.5px;
  color: var(--muted);
}

html[dir="rtl"] .footer-map__title { letter-spacing: 0.05em; }

/* ---------- Page hero ---------- */

.page-hero { padding: 26px 0 14px; }
.page-hero--tight { padding: 18px 0 0; }

.page-hero__sub {
  margin: 14px 0 0;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--muted);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.search--page { margin-top: 26px; max-width: none; }

.section-title--xl {
  font-size: clamp(30px, 6vw, 58px);
  letter-spacing: -0.024em;
}

.section-title--sm {
  font-size: clamp(22px, 3.4vw, 34px);
  letter-spacing: -0.02em;
}

/* ---------- Breadcrumb ---------- */

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted-2);
}

.breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}

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

/* ---------- Catalogue filters ---------- */

.filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}

.filters__row { display: flex; flex-direction: column; gap: 10px; }

.filters__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-inline: -16px;
  padding-inline: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.chips::-webkit-scrollbar { display: none; }

.chip {
  display: inline-flex;
  align-items: center;
  flex: none;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.chip:active { transform: translateY(1px); }

.filters__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 14px;
}

.filters__count {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
}

/* ---------- Product grid ---------- */

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.product {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.product__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 148px;
  padding: 18px;
  overflow: hidden;
}

.product__media img {
  height: 100%;
  width: 100%;
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
}

.product__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 16px 16px;
}

.product__brand {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.product__name {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.product__ref {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  word-break: break-word;
}

.product__foot { margin-top: 6px; }

.product .circle-btn--card {
  position: absolute;
  z-index: 2;
  top: 12px;
  inset-inline-end: 12px;
  width: 36px;
  height: 36px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(16, 24, 40, 0.07);
}

.product:hover .circle-btn--card { background: var(--blue); color: #fff; }

/* ---------- Stock badge ---------- */

.stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.stock::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none;
  background: var(--muted-2);
}

.stock--in { color: #1B7F4D; }
.stock--in::before { background: #1B7F4D; }
.stock--order { color: #B4690E; }
.stock--order::before { background: #E39A2A; }
.stock--quote { color: var(--muted); }
.stock--quote::before { background: var(--muted-2); }

/* ---------- Empty state ---------- */

.empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 44px 24px;
  background: var(--card);
  border-radius: var(--radius);
}

.empty--page { margin-top: 10px; }

.empty__title { margin: 0; font-size: 20px; font-weight: 800; color: var(--ink); }
.empty__text { margin: 0; max-width: 520px; font-size: 15.5px; color: var(--muted); }

.empty__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}

/* ---------- Buttons (helpers) ---------- */

.link-underline--sm { font-size: 14px; font-weight: 600; }

.link-underline--btn {
  background: none;
  border: 0;
  border-bottom: 1.5px solid var(--ink);
  padding: 0 0 3px;
  font: inherit;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.link-underline--back { align-self: flex-start; }

/* ---------- Product detail ---------- */

.product-detail { padding: 8px 0 40px; }

.detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.detail__media {
  display: grid;
  place-items: center;
  padding: 28px 18px;
  background: var(--card);
  border-radius: var(--radius);
  min-height: 240px;
}

.detail__media img {
  max-height: 300px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(16, 24, 40, 0.12));
}

.detail__body { display: flex; flex-direction: column; gap: 14px; }

.detail__brand {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
}

.detail__name {
  margin: 0;
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.detail__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.detail__ref { font-size: 14px; color: var(--muted); }
.detail__ref strong { color: var(--ink); font-weight: 700; }

.detail__desc {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.detail__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}

.detail__block { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }

.detail__label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.specs th,
.specs td {
  text-align: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.specs th { width: 46%; font-weight: 600; color: var(--muted); }
.specs td { font-weight: 600; color: var(--ink); }

/* ---------- Brand cards ---------- */

.brands-page { padding: 6px 0 48px; }

.brand-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }

.brand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-card:active { transform: translateY(-2px); }

.brand-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.brand-card__mark {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-card__country {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}

.brand-card__desc { margin: 0; font-size: 15.5px; line-height: 1.5; color: var(--muted); }

.brand-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
}

.brand-card__count { font-size: 13.5px; font-weight: 700; color: var(--ink); }

.brand-card__go {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}

.brand-card:hover .circle-btn--outline {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.brand-card__link {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--line-strong);
  padding-bottom: 2px;
}

.brand-card__link:active { color: var(--blue); border-color: var(--blue); }

/* ---------- Generic content blocks ---------- */

.block { padding: 34px 0; }
.block--alt { background: #F7F8FA; }

.block__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.block__note { margin: 0; font-size: 13.5px; color: var(--muted); }

.block__lead {
  margin: 16px 0 0;
  max-width: 760px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- Zones ---------- */

.zones { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 10px; }

.zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 60px;
  padding: 0 18px;
  background: var(--card);
  border-radius: 14px;
}

.zone__name { font-size: 16px; font-weight: 700; color: var(--ink); }
.zone__days { font-size: 13.5px; font-weight: 600; color: var(--muted); white-space: nowrap; }

/* ---------- Steps ---------- */

.steps { display: grid; grid-template-columns: 1fr; gap: 16px; }

.step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step__num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--blue);
}

.step__title { margin: 0; font-size: 18px; font-weight: 800; color: var(--ink); }
.step__text { margin: 0; font-size: 15px; line-height: 1.55; color: var(--muted); }

/* ---------- CTA band ---------- */

.cta-band { padding: 30px 0 44px; }

.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 30px 24px;
  background: var(--ink);
  border-radius: var(--radius);
  color: #fff;
}

.cta-band__title { margin: 0 0 6px; font-size: clamp(20px, 3.4vw, 28px); font-weight: 800; letter-spacing: -0.01em; }
.cta-band__text { margin: 0; max-width: 560px; font-size: 15.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.72); }
.cta-band .link-underline { color: #fff; border-color: rgba(255, 255, 255, 0.6); }

/* ---------- Prose ---------- */

.prose { max-width: 760px; }

.prose p {
  margin: 0 0 18px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.prose__lead { font-size: 19px !important; color: var(--ink) !important; font-weight: 500; }

/* ---------- Stats ---------- */

.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__value { font-size: clamp(26px, 5vw, 40px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.stat__label { font-size: 13.5px; font-weight: 600; color: var(--muted); }

/* ---------- Values ---------- */

.values { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 20px; }

.value {
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
}

.value__title { margin: 0 0 8px; font-size: 18px; font-weight: 800; color: var(--ink); }
.value__text { margin: 0; font-size: 15px; line-height: 1.55; color: var(--muted); }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
}

.contact-card--primary { background: var(--ink); }
.contact-card--primary .contact-card__title,
.contact-card--primary .contact-card__value { color: #fff; }
.contact-card--primary .contact-card__text { color: rgba(255, 255, 255, 0.7); }

.contact-card__title {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.contact-card__text { margin: 0; font-size: 15px; line-height: 1.5; color: var(--muted); }

.contact-card__value {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  word-break: break-word;
}

.contact-card__value:active { color: var(--blue); }

/* ---------- RFQ form ---------- */

.rfq { display: flex; flex-direction: column; gap: 20px; max-width: 760px; }

.rfq__row { display: grid; grid-template-columns: 1fr; gap: 16px; }

.field { position: relative; display: flex; flex-direction: column; gap: 7px; }
.field--block { width: 100%; }

.field__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.field__opt {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-2);
}

.field__input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field__input::placeholder { color: #A6AEBB; font-weight: 500; }

.field__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 107, 255, 0.14);
}

.field__input--area { min-height: 120px; resize: vertical; line-height: 1.5; }

.rfq__items { display: flex; flex-direction: column; gap: 10px; }

.rfq__line { display: flex; align-items: center; gap: 10px; }
.rfq__line .field__input { flex: 1; min-width: 0; }

.rfq__remove {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.rfq__remove svg { width: 16px; height: 16px; }
.rfq__remove:active { color: #C0392B; border-color: #E7B7B1; }

.rfq__error {
  margin: 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: #FDECEA;
  color: #B03A2E;
  font-size: 14.5px;
  font-weight: 600;
}

.rfq__submit { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.rfq__submit .btn { width: 100%; justify-content: center; }

.rfq__hint { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--muted); max-width: 460px; }

/* ---------- Articles ---------- */

.article-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:active { transform: translateY(-2px); }

.article-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.article-card__media img {
  height: 100%;
  width: 100%;
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
}

.article-card__body { display: flex; flex-direction: column; gap: 8px; padding: 20px; }

.article-card__tag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.article-card__title { font-size: 18px; font-weight: 800; line-height: 1.28; color: var(--ink); }
.article-card__excerpt { font-size: 14.5px; line-height: 1.5; color: var(--muted); }

.article-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.article-card__cta svg { width: 16px; height: 16px; }

/* ---------- Single article ---------- */

.article { padding: 4px 0 40px; }

.article__head { max-width: 780px; }

.article__tag {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.article__title {
  margin: 0 0 12px;
  font-size: clamp(26px, 5.4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink);
}

.article__meta { margin: 0; font-size: 13.5px; font-weight: 600; color: var(--muted); }

.article__media {
  display: grid;
  place-items: center;
  margin: 26px 0;
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
}

.article__media img { max-height: 220px; width: auto; object-fit: contain; }

.prose--article { max-width: 720px; }
.prose--article p:first-child { font-size: 19px; color: var(--ink); font-weight: 500; }

.article__foot { margin-top: 26px; }

/* ---------- Legal ---------- */

.notice {
  margin: 0 0 24px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #FFF6EA;
  border: 1px solid #F3DDBB;
  font-size: 14.5px;
  font-weight: 600;
  color: #8A5A16;
}

.legal { display: grid; grid-template-columns: 1fr; gap: 28px; }

.legal__toc { display: flex; flex-direction: column; gap: 2px; }

.legal__toc a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.legal__toc a:active { color: var(--blue); }

.legal__body { display: flex; flex-direction: column; gap: 34px; }
.legal__section { scroll-margin-top: 110px; }

.legal__title {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
}

.legal__section p {
  margin: 0 0 14px;
  max-width: 720px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---------- Inner pages: larger screens ---------- */

@media (min-width: 520px) {
  .rfq__row { grid-template-columns: 1fr 1fr; }
  .rfq__submit .btn { width: auto; }
}

@media (min-width: 560px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product__media { height: 168px; }
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .zones { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 720px) {
  .page-hero { padding: 40px 0 20px; }
  .page-hero__sub { font-size: 19px; }
  .block { padding: 52px 0; }
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 40px; }
  .cta-band__inner > div { max-width: 640px; }
  .detail__media { padding: 44px; min-height: 420px; }
  .detail__media img { max-height: 380px; }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .values { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-map { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .filters__row { flex-direction: row; align-items: center; gap: 22px; }
  .filters__label { width: 92px; flex: none; }
  .chips { margin-inline: 0; padding-inline: 0; }
  .article__media { padding: 40px; }
  .article__media img { max-height: 280px; }
}

@media (min-width: 980px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product__media { height: 190px; }
  .detail { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; }
  .brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .zones { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .legal { grid-template-columns: 260px minmax(0, 1fr); gap: 56px; }
  .legal__toc { position: sticky; top: 116px; align-self: start; }
}

@media (min-width: 1280px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ---------- Inner pages: RTL ---------- */

html[dir="rtl"] .section-title--xl,
html[dir="rtl"] .section-title--sm,
html[dir="rtl"] .detail__name,
html[dir="rtl"] .article__title { letter-spacing: 0; }

html[dir="rtl"] .product .circle-btn--card svg,
html[dir="rtl"] .article-card__cta svg,
html[dir="rtl"] .brand-card__foot .circle-btn svg { transform: scaleX(-1); }