/* ==========================================================================
   RABAR STEEL — Modern Industrial Design System
   Brand Colors:
     Primary Red:       #E6332A
     Red Hover:         #C52821
     Red Subtle:        rgba(230, 51, 42, 0.08)
     Deep Navy Blue:    #071A2B
     Industrial Blue:   #0D2638
     Clean White:       #FFFFFF
     Light Gray:        #F4F6F7
     Text Dark:         #14212B
     Muted Text:        #66727C
   ========================================================================== */

:root {
  --red: #e6332a;
  --red-hover: #c52821;
  --red-subtle: rgba(230, 51, 42, 0.08);
  --red-border: rgba(230, 51, 42, 0.25);
  --deep-blue: #071a2b;
  --industrial-blue: #0d2638;
  --blue-card: #0f273b;
  --blue-surface: #102a3e;
  --white: #ffffff;
  --light-gray: #f4f6f7;
  --light-gray-2: #eaeff2;
  --text-dark: #14212b;
  --muted-text: #66727c;
  --border-light: rgba(20, 33, 43, 0.1);
  --border-subtle: rgba(20, 33, 43, 0.06);
  --shadow-sm: 0 4px 16px rgba(7, 26, 43, 0.05);
  --shadow-md: 0 12px 32px rgba(7, 26, 43, 0.08);
  --shadow-lg: 0 24px 60px rgba(7, 26, 43, 0.14);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --header-h: 80px;
  --shell: min(1380px, calc(100% - 40px));
  --font-en: "Manrope", system-ui, -apple-system, sans-serif;
  --font-ar: "IBM Plex Sans Arabic", "Readex Pro", system-ui, -apple-system, sans-serif;
  --font-ku: "IBM Plex Sans Arabic", "Readex Pro", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--white);
  color: var(--text-dark);
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 1;
  transition: opacity 0.16s ease;
}

body.page-lang-switching {
  opacity: 0.05;
  pointer-events: none;
}

/* RTL & Arabic/Kurdish Typography */
html[lang="ar"],
html[lang="ku"],
html[dir="rtl"] {
  font-family: var(--font-ar);
}

html[lang="ar"] body,
html[lang="ku"] body,
html[dir="rtl"] body {
  font-family: var(--font-ar);
  letter-spacing: normal;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] .section-title,
html[dir="rtl"] .hero h1,
html[dir="rtl"] .button,
html[dir="rtl"] .brand-copy b,
html[dir="rtl"] .eyebrow b {
  font-family: var(--font-ar);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button {
  font: inherit;
  cursor: pointer;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  inset-inline-start: 10px;
  transform: translateY(-160%);
  padding: 10px 18px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(230, 51, 42, 0.25);
}

.button-primary:hover {
  background: var(--red-hover);
  box-shadow: 0 8px 22px rgba(230, 51, 42, 0.35);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: var(--white);
  color: var(--deep-blue);
  border-color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--deep-blue);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.button-light:hover {
  background: var(--light-gray);
  color: var(--red);
}

.button-sm {
  min-height: 40px;
  padding: 8px 18px;
  font-size: 13px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #ff6e66;
}

.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin: 0;
  font-weight: 900;
  color: var(--deep-blue);
  text-wrap: balance;
}

html[lang="ar"] .section-title,
html[lang="ku"] .section-title {
  letter-spacing: 0;
  line-height: 1.35;
}

.section-lead {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--muted-text);
  margin: 16px 0 0;
  max-width: 680px;
}

/* ==========================================================================
   Header & Navigation — Transparent Sticky Navbar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  background: rgba(4, 15, 26, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(3, 12, 20, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
}

.nav-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Official Rabar Steel Logo */
.brand-logo-img {
  width: auto;
  height: 44px;
  max-height: 44px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.brand-logo-footer {
  height: 52px;
  max-height: 52px;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transform: rotate(45deg);
  border-radius: 4px;
  color: var(--white);
  transition: transform 0.3s ease, background 0.2s ease, border-color 0.2s ease;
}

.brand:hover .brand-mark {
  background: var(--red);
  border-color: var(--red);
}

.brand-mark strong {
  font: 800 13.5px/1 "Manrope", sans-serif;
  transform: rotate(-45deg);
}

.brand-mark i {
  width: 1.5px;
  height: 14px;
  background: var(--red);
  transform: rotate(-45deg);
  transition: background 0.2s ease;
}

.brand:hover .brand-mark i {
  background: var(--white);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy b {
  font: 900 16px/1.2 "Manrope", sans-serif;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 600;
  margin-top: 2px;
  max-width: 320px;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-inline-start: auto;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-block: 8px;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.active {
  color: #ffffff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.language-switcher .lang-btn,
.language-switcher button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 5px 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11.5px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  line-height: 1;
}

.language-switcher .lang-btn:hover,
.language-switcher button:hover {
  color: #ffffff;
}

.language-switcher .lang-btn.active,
.language-switcher .lang-btn[aria-pressed="true"],
.language-switcher button[aria-pressed="true"] {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(230, 51, 42, 0.4);
}

/* Mobile Drawer Language Row */
.mobile-lang-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-lang-btn {
  flex: 1;
  text-align: center;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-lang-btn.active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(230, 51, 42, 0.4);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  background: rgba(7, 26, 43, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  padding: 18px 0 28px;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu a:not(.button) {
  padding: 12px 6px;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a:not(.button):hover {
  color: var(--red);
}

/* ==========================================================================
   Hero Section — Modern & High Visual Impact
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: var(--deep-blue);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.92) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    270deg,
    rgba(7, 26, 43, 0.92) 0%,
    rgba(7, 26, 43, 0.78) 45%,
    rgba(7, 26, 43, 0.35) 75%,
    rgba(7, 26, 43, 0.15) 100%
  );
}

html[dir="ltr"] .hero-shade {
  background: linear-gradient(
    90deg,
    rgba(7, 26, 43, 0.92) 0%,
    rgba(7, 26, 43, 0.78) 45%,
    rgba(7, 26, 43, 0.35) 75%,
    rgba(7, 26, 43, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(50px, 8vh, 100px);
  width: 100%;
}

.hero-copy {
  max-width: 960px;
  padding: clamp(32px, 5vw, 56px) clamp(28px, 4.5vw, 48px);
  background: rgba(7, 26, 43, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  margin-inline: 0 auto;
}

html[dir="rtl"] .hero-copy {
  margin-inline: 0 auto;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.hero h1 {
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 900;
  color: var(--white);
  text-wrap: balance;
}

html[lang="ar"] .hero h1,
html[lang="ku"] .hero h1 {
  letter-spacing: 0;
  line-height: 1.32;
}

.hero h1 em {
  font-style: normal;
  color: #ff6e66;
}

.hero-lead {
  max-width: 720px;
  color: #d2dbe0;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.8;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--industrial-blue) 100%);
  color: var(--white);
  padding-top: calc(var(--header-h) + clamp(40px, 6vw, 70px));
  padding-bottom: clamp(50px, 7vw, 80px);
  border-bottom: 3px solid var(--red);
}

.page-hero .eyebrow-light {
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--white);
  margin: 0;
  font-weight: 900;
}

.page-hero .section-lead {
  color: #c5d2db;
  margin-top: 14px;
}

/* ==========================================================================
   Trust / Value Proposition Section
   ========================================================================== */
.trust-section {
  padding-block: clamp(50px, 7vw, 84px);
  background: var(--light-gray);
  border-bottom: 1px solid var(--border-light);
}

.trust-header {
  margin-bottom: 36px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-border);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--red-subtle);
  color: var(--red);
  display: grid;
  place-items: center;
  flex: none;
}

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

.trust-card b {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--deep-blue);
  line-height: 1.4;
}

.trust-card p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted-text);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
  padding-block: clamp(80px, 10vw, 130px);
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media picture {
  aspect-ratio: 4/4.8;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--light-gray);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 0.5s ease;
}

.about-media:hover img {
  transform: scale(1.03);
}

.about-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 48%;
  height: 65%;
  inset-inline-start: -18px;
  bottom: -18px;
  background: var(--red);
  border-radius: var(--radius-md);
}

.media-badge {
  position: absolute;
  inset-inline-end: 20px;
  bottom: 24px;
  background: var(--deep-blue);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font: 800 13px/1 "Manrope", sans-serif;
  letter-spacing: 0.1em;
  box-shadow: 0 10px 25px rgba(7, 26, 43, 0.3);
}

.media-badge b {
  color: var(--red);
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--border-light);
}

.about-point {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  background: var(--light-gray);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: var(--deep-blue);
  transition: all 0.2s ease;
}

.about-point::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.about-point:hover {
  background: var(--deep-blue);
  color: var(--white);
  border-color: var(--deep-blue);
}

/* ==========================================================================
   Large Full-Width Visual Break Banner
   ========================================================================== */
.visual-break {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: var(--deep-blue);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  border-block: 4px solid var(--red);
}

.visual-break-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.visual-break-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.85) contrast(1.06);
}

.visual-break-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(7, 26, 43, 0.88) 0%,
    rgba(7, 26, 43, 0.65) 50%,
    rgba(7, 26, 43, 0.85) 100%
  );
}

.visual-break-content {
  position: relative;
  z-index: 2;
  padding-block: 70px;
  text-align: center;
  max-width: 860px;
}

.visual-break h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  font-weight: 900;
  margin: 12px 0 28px;
  color: var(--white);
  text-wrap: balance;
}

/* ==========================================================================
   Products Catalog & 3D Interactive Cards
   ========================================================================== */
.products-section {
  padding-block: clamp(80px, 10vw, 130px);
  background: var(--white);
  position: relative;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

/* Category Filter Tabs */
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  padding-bottom: 12px;
}

.filter-btn {
  border: 1px solid var(--border-light);
  background: var(--light-gray);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 800;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-btn:hover {
  background: var(--light-gray-2);
  border-color: var(--deep-blue);
}

.filter-btn.active {
  background: var(--deep-blue);
  color: var(--white);
  border-color: var(--deep-blue);
  box-shadow: 0 4px 16px rgba(7, 26, 43, 0.2);
}

.filter-btn.active span {
  background: var(--red);
  color: var(--white);
}

.filter-btn span {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(20, 33, 43, 0.08);
  font-family: "Manrope", sans-serif;
}

/* Catalog Search Bar (for catalog page) */
.catalog-search-wrap {
  margin-bottom: 28px;
  position: relative;
  max-width: 480px;
}

.catalog-search-wrap input {
  width: 100%;
  height: 48px;
  padding: 12px 18px 12px 46px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--light-gray);
  font: inherit;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.2s ease, background 0.2s ease;
}

html[dir="rtl"] .catalog-search-wrap input {
  padding: 12px 46px 12px 18px;
}

.catalog-search-wrap input:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(230, 51, 42, 0.12);
}

.catalog-search-wrap svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 16px;
  width: 18px;
  height: 18px;
  color: var(--muted-text);
  pointer-events: none;
}

/* 3D Product Grid & Interactive Cards */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  perspective: 1200px;
}

.product-3d-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.25s ease;
  position: relative;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.product-3d-card:focus {
  outline: 3px solid rgba(230, 51, 42, 0.45);
  outline-offset: 4px;
}

.product-3d-card:focus:not(:focus-visible) {
  outline: none;
}

.product-3d-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-border);
}

.card-visual-box {
  position: relative;
  height: 195px;
  background: #0d1e2d;
  overflow: hidden;
  border-bottom: 2px solid var(--red);
}

.card-photo-picture,
.card-photo-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-3d-card:hover .card-photo-picture img {
  transform: scale(1.07);
}

.card-category-badge {
  position: absolute;
  bottom: 12px;
  inset-inline-start: 12px;
  z-index: 3;
  background: rgba(7, 26, 43, 0.9);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font: 800 11px/1 "Manrope", sans-serif;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-index-tag {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  z-index: 3;
  background: rgba(230, 51, 42, 0.92);
  color: #ffffff;
  font: 900 11px/1 "Manrope", sans-serif;
  padding: 3px 8px;
  border-radius: 4px;
}

.card-body {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--deep-blue);
  margin: 0;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.product-3d-card:hover .card-title {
  color: var(--red);
}

.card-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted-text);
  margin: 10px 0 18px;
  flex-grow: 1;
}

.card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--deep-blue);
  font-size: 13.5px;
  font-weight: 800;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  transition: color 0.2s ease, gap 0.2s ease;
}

.product-3d-card:hover .card-action {
  color: var(--red);
  gap: 12px;
}

.card-action svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

html[dir="rtl"] .card-action svg {
  transform: rotate(180deg);
}

.product-3d-card:hover .card-action svg {
  transform: translateX(3px);
}

html[dir="rtl"] .product-3d-card:hover .card-action svg {
  transform: rotate(180deg) translateX(3px);
}

.catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted-text);
  background: var(--light-gray);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-light);
}

/* ==========================================================================
   Native <dialog> Product Detail Modal System
   ========================================================================== */
dialog#productModal {
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 25px 80px rgba(7, 26, 43, 0.35);
  max-width: min(880px, calc(100vw - 32px));
  width: 100%;
  color: var(--text-dark);
  margin: auto;
  overflow: hidden;
}

dialog#productModal::backdrop {
  background: rgba(7, 26, 43, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 480px;
}

.modal-media {
  background: radial-gradient(circle at center, #163650 0%, #071a2b 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  overflow: hidden;
}

.modal-media .card-isometric-icon {
  width: 170px;
  height: 170px;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.modal-media .card-photo-layer {
  opacity: 0.35;
}

.modal-content {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 85vh;
}

.modal-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.modal-close-btn {
  background: var(--light-gray);
  border: 1px solid var(--border-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-dark);
  transition: all 0.2s ease;
  flex: none;
}

.modal-close-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.modal-close-btn svg {
  width: 18px;
  height: 18px;
}

.modal-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--deep-blue);
  margin: 0;
  line-height: 1.25;
}

.modal-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted-text);
  margin: 12px 0 20px;
}

/* Specifications Table */
.spec-box {
  background: var(--light-gray);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
}

.spec-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--deep-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-title svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.spec-table tr {
  border-bottom: 1px solid rgba(20, 33, 43, 0.08);
}

.spec-table tr:last-child {
  border-bottom: 0;
}

.spec-table th {
  text-align: start;
  padding: 6px 0;
  color: var(--muted-text);
  font-weight: 600;
  width: 38%;
}

.spec-table td {
  padding: 6px 0;
  color: var(--deep-blue);
  font-weight: 800;
}

/* Applications Tags */
.apps-box {
  margin-bottom: 24px;
}

.apps-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.app-tag {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--deep-blue);
}

/* Dedicated product pages */
.product-detail-section {
  padding-block: clamp(46px, 7vw, 78px);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}

.product-detail-visual {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  min-height: 430px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at center, #1b384f 0%, #071a2b 100%);
  box-shadow: var(--shadow-lg);
}

.product-detail-photo {
  opacity: 0.35;
}

.product-detail-photo,
.product-detail-photo picture,
.product-detail-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-detail-photo img {
  display: block;
  object-fit: cover;
}

.product-detail-icon {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 180px;
}

.product-detail-content {
  min-width: 0;
}

.product-detail-content h2 {
  margin-top: 0;
}

.product-detail-description {
  margin-top: 8px;
}

.product-detail-specs {
  margin-top: 28px;
}

.product-detail-specs .spec-table th,
.product-detail-specs .spec-table td {
  overflow-wrap: anywhere;
}

.product-detail-apps {
  margin-top: 24px;
}

.product-detail-apps-title {
  color: var(--deep-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-detail-app-tags {
  margin-top: 8px;
}

.product-detail-cta {
  margin-top: 32px;
}

.product-detail-cta .button {
  min-width: 260px;
  justify-content: center;
}

.product-not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  padding-block: 80px;
}

.product-not-found-inner {
  max-width: 720px;
  text-align: center;
}

.product-not-found-inner .eyebrow {
  justify-content: center;
}

.product-not-found-inner p {
  margin-bottom: 28px;
}

.modal-actions {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  gap: 12px;
}

/* ==========================================================================
   Revamped Process Section ("A Clear Path")
   ========================================================================== */
.process {
  padding-block: clamp(80px, 10vw, 130px);
  background: var(--light-gray);
  border-top: 1px solid var(--border-light);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover {
  transform: translateY(-3px);
  border-color: var(--red-border);
  box-shadow: var(--shadow-md);
}

.step-num {
  font: 900 18px/1 "Manrope", sans-serif;
  color: var(--red);
  background: var(--red-subtle);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  height: 52px;
}

.process-step b {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--deep-blue);
  line-height: 1.35;
}

.process-step p {
  margin: 6px 0 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted-text);
}

.process-media {
  position: relative;
}

.process-media picture {
  aspect-ratio: 4/4.8;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--light-gray-2);
}

.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==========================================================================
   Dedicated "Our Team" Section
   ========================================================================== */
.team-section {
  padding-block: clamp(80px, 10vw, 130px);
  background: var(--white);
  border-top: 1px solid var(--border-light);
}

.team-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.team-header .eyebrow {
  justify-content: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card-compact {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px 20px;
  box-shadow: 0 4px 16px rgba(7, 26, 43, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 3px solid var(--deep-blue);
}

.team-card-compact:hover {
  transform: translateY(-4px);
  border-top-color: var(--red);
  border-color: rgba(230, 51, 42, 0.25);
  box-shadow: 0 12px 28px rgba(7, 26, 43, 0.1);
}

.team-card-compact .team-name {
  font-size: 17.5px;
  font-weight: 800;
  color: var(--deep-blue);
  margin: 0;
  line-height: 1.3;
}

.team-card-compact .team-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 6px 0 0;
  line-height: 1.4;
}

.team-card-compact .team-contacts {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-card-compact .team-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.team-card-compact .team-contact-link:hover {
  color: var(--red);
}

.team-card-compact .team-contact-link svg {
  width: 15px;
  height: 15px;
  stroke: var(--deep-blue);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .team-card-compact {
    padding: 18px 16px;
  }
}

/* ==========================================================================
   Enhanced Contact Us Section & Embedded Interactive Map
   ========================================================================== */
.contact {
  padding-block: clamp(80px, 10vw, 130px);
  background: var(--light-gray);
  border-top: 1px solid var(--border-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-left {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
}

.contact-phones-block {
  margin: 22px 0;
}

.contact-phones-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.phone-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--light-gray);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--deep-blue);
  transition: all 0.2s ease;
}

.phone-link span {
  font-size: 10.5px;
  color: var(--red);
}

.phone-link:hover {
  background: var(--deep-blue);
  color: var(--white);
  border-color: var(--deep-blue);
}

.phone-link-highlight {
  border-color: var(--red-border);
  background: var(--red-subtle);
}

/* Contact Details Info List */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 10px 0 22px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.6;
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex: none;
  margin-top: 3px;
}

/* Working Hours Box */
.working-hours-box {
  background: var(--light-gray);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--deep-blue);
  margin-top: auto;
}

.working-hours-box svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex: none;
}

/* Embedded Map Column */
.contact-right {
  display: flex;
  flex-direction: column;
}

.map-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    radial-gradient(circle at 90% 0%, rgba(230, 51, 42, 0.3), transparent 34%),
    linear-gradient(135deg, #071a2b 0%, #0b2940 58%, #102f48 100%);
  box-shadow: 0 24px 60px rgba(7, 26, 43, 0.2);
}

.map-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}

.map-showcase-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.map-showcase-kicker {
  display: block;
  margin-bottom: 5px;
  color: #ff8b84;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.map-showcase-heading h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
}

.map-showcase-count {
  display: grid;
  width: 52px;
  height: 52px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(230, 51, 42, 0.35);
}

.map-locations-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 18px;
}

@supports (display: grid) {
  .map-locations-grid {
    display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.map-wrapper {
  flex: 1 1 300px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 390px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.map-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.24);
}

.map-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fa 100%);
}

.map-location-number {
  display: grid;
  width: 36px;
  height: 36px;
  flex: none;
  place-items: center;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 7px 16px rgba(230, 51, 42, 0.25);
}

.map-card-header strong {
  display: block;
  color: var(--deep-blue);
  font-size: 14px;
  line-height: 1.25;
}

.map-card-header small {
  display: block;
  margin-top: 3px;
  color: var(--muted-text);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.map-iframe {
  display: block;
  width: 100%;
  height: 250px;
  min-height: 250px;
  border: 0;
  flex-grow: 1;
  background: #e8ecef;
}

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

  .product-detail-visual {
    position: relative;
    top: auto;
    min-height: 340px;
  }
}

.map-footer-bar {
  padding: 14px 16px;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.map-footer-bar .button {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-band {
  background: var(--red);
  color: var(--white);
  padding-block: clamp(48px, 6vw, 70px);
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.cta-inner small {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.cta-band h2 {
  font-size: clamp(24px, 3.2vw, 38px);
  margin: 6px 0 0;
  font-weight: 900;
  color: var(--white);
  text-wrap: balance;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  background: var(--deep-blue);
  color: #aeb9c0;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.95fr 1.1fr;
  gap: 36px;
  padding-bottom: 50px;
}

.brand-light .brand-mark {
  background: var(--white);
  color: var(--deep-blue);
  border-color: var(--white);
}

.brand-light .brand-copy b {
  color: var(--white);
}

.brand-light .brand-copy small {
  color: #8c9ba5;
}

.footer-brand p {
  max-width: 440px;
  font-size: 13.5px;
  line-height: 1.7;
  margin: 20px 0 0;
  color: #aeb9c0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13.5px;
}

.footer-col b {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
}

.footer-col a:hover {
  color: var(--white);
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

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

.footer-bottom a {
  color: var(--white);
  font-weight: 800;
}

/* ==========================================================================
   Floating Action Button (WhatsApp)
   ========================================================================== */
.floating-contact {
  position: fixed;
  z-index: 900;
  inset-inline-end: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(230, 51, 42, 0.4);
  transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.25s ease;
}

.floating-contact:hover {
  transform: scale(1.08) translateY(-2px);
  background: var(--red-hover);
  box-shadow: 0 12px 30px rgba(230, 51, 42, 0.5);
}

.floating-contact svg {
  width: 26px;
  height: 26px;
}

/* ==========================================================================
   Scroll Reveal Animation
   ========================================================================== */
/* ==========================================================================
   Scroll Reveal Animation (Safe & Progressive)
   ========================================================================== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

html.has-reveal .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(18px);
}

html.has-reveal .reveal.visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .button, .product-3d-card, .about-media img, .team-card {
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .desktop-cta {
    display: none;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .modal-layout {
    grid-template-columns: 1fr;
  }
  .modal-media {
    height: 200px;
    padding: 20px;
  }
  .modal-media .card-isometric-icon {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 780px) {
  :root {
    --header-h: 72px;
    --shell: min(1380px, calc(100% - 40px));
  }

  .nav-inner {
    height: var(--header-h);
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
  }

  .hero-content {
    padding-block: 40px;
  }

  .hero-shade,
  html[dir="ltr"] .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(7, 26, 43, 0.94) 0%,
      rgba(7, 26, 43, 0.8) 50%,
      rgba(7, 26, 43, 0.4) 100%
    );
  }

  .about-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-media {
    max-width: 520px;
  }

  .process-media {
    order: -1;
    max-width: 520px;
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .phone-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: min(1380px, calc(100% - 40px));
  }

  .trust-grid,
  .catalog-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .floating-contact {
    inset-inline-end: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .modal-content {
    padding: 24px 18px;
  }

  .modal-title {
    font-size: 22px;
  }
}

/* ==========================================================================
   3D / Interactive Technical Product Showcase Section
   ========================================================================== */
.showcase-section {
  padding-block: clamp(80px, 10vw, 130px);
  background: #071a2b;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-header {
  margin-bottom: 40px;
}

.showcase-header .section-title {
  color: #ffffff;
}

.showcase-header .section-lead {
  color: #a8b8c4;
}

.showcase-box {
  background: #0d2638;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.showcase-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 26, 43, 0.6);
}

.showcase-tab {
  background: transparent;
  border: 0;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  text-align: start;
  color: #8c9ba5;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.25s ease;
  position: relative;
}

.showcase-tab:last-child {
  border-inline-end: 0;
}

.showcase-tab:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
}

.showcase-tab.active {
  background: #0d2638;
  color: #ffffff;
}

.showcase-tab.active::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 3px;
  background: var(--red);
}

.showcase-tab-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ff6e66;
}

.showcase-tab b {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.showcase-display {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 400px;
}

.showcase-render-stage {
  position: relative;
  background: radial-gradient(circle at center, #1b3d5a 0%, #071a2b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-grid-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.8;
}

.stage-3d-model {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stage-badge {
  position: absolute;
  bottom: 20px;
  inset-inline-start: 20px;
  background: var(--red);
  color: var(--white);
  font: 800 11px/1 "Manrope", sans-serif;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.showcase-details-panel {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stage-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.stage-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #b5c4d0;
  margin: 12px 0 24px;
}

.stage-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.stage-spec-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.stage-spec-item small {
  display: block;
  font-size: 11.5px;
  color: #8c9ba5;
  margin-bottom: 3px;
}

.stage-spec-item b {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
}

.stage-actions {
  display: flex;
  gap: 14px;
}

@media (max-width: 1040px) {
  .showcase-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-display {
    grid-template-columns: 1fr;
  }
  .showcase-render-stage {
    height: 240px;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .showcase-details-panel {
    padding: 30px 24px;
  }
}

@media (max-width: 580px) {
  .showcase-nav {
    grid-template-columns: 1fr;
  }
  .stage-specs-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Mobile-First Intentional Layout & Overflow Protection
   ========================================================================== */
html, /* ==========================================================================
   Silky Smooth Page & Language Transition
   ========================================================================== */
body {
  opacity: 1;
  transition: opacity 0.18s cubic-bezier(0.16, 1, 0.3, 1), transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

body.page-lang-switching {
  opacity: 0.05;
  pointer-events: none;
}

@keyframes smoothContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  animation: smoothContentFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

/* RTL & Arabic/Kurdish Precision Typography */
html[lang="ar"],
html[lang="ku"],
html[dir="rtl"] {
  font-family: var(--font-ar);
}

html[lang="ar"] body,
html[lang="ku"] body,
html[dir="rtl"] body {
  font-family: var(--font-ar);
  letter-spacing: normal;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] .section-title,
html[dir="rtl"] .hero h1,
html[dir="rtl"] .button,
html[dir="rtl"] .brand-copy b,
html[dir="rtl"] .eyebrow b {
  font-family: "IBM Plex Sans Arabic", "Readex Pro", system-ui, sans-serif;
  letter-spacing: 0;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
}

@media (max-width: 780px) {
  :root {
    --header-h: 68px;
    --shell: min(1380px, calc(100% - 40px));
  }

  /* Header */
  .nav-inner {
    height: var(--header-h);
    gap: 8px;
  }

  /* Official Rabar Steel Logo */
.brand-logo-img {
  width: auto;
  height: 44px;
  max-height: 44px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.brand-logo-footer {
  height: 52px;
  max-height: 52px;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}

.brand {
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-mark strong {
    font-size: 11px;
  }

  .brand-copy b {
    font-size: 14px;
  }

  .brand-copy small {
    display: none !important;
  }

  .language-switcher button {
    padding: 4px 7px;
    font-size: 10px;
  }

  .desktop-cta {
    display: none !important;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 50px;
  }

  .hero-content {
    padding-block: 30px 20px;
  }

  .hero-copy {
    padding: 24px 18px;
    border-radius: var(--radius-md);
    margin-inline: auto;
  }

  .hero h1 {
    font-size: clamp(26px, 7.5vw, 36px);
    line-height: 1.3;
  }

  .hero-lead {
    font-size: 14.5px;
    line-height: 1.75;
    margin-top: 14px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  /* Sections Spacing */
  .trust-section,
  .about,
  .products-section,
  .showcase-section,
  .process,
  .team-section,
  .contact {
    padding-block: clamp(48px, 8vw, 70px);
  }

  .section-title {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .section-lead {
    font-size: 14.5px;
    line-height: 1.75;
    margin-top: 10px;
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-card {
    padding: 20px 18px;
    gap: 14px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-media {
    max-width: 100%;
  }

  .about-media::before {
    display: none;
  }

  .about-points {
    gap: 6px;
    margin-top: 20px;
    padding-top: 18px;
  }

  .about-point {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Visual Break */
  .visual-break {
    min-height: auto;
    padding-block: 50px;
  }

  .visual-break-content {
    padding-block: 30px;
  }

  .visual-break h2 {
    font-size: clamp(20px, 5.5vw, 28px);
    margin: 10px 0 20px;
  }

  .visual-break .button {
    width: 100%;
    justify-content: center;
  }

  /* Products & Filters */
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
  }

  .catalog-filters {
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .catalog-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 12.5px;
  }

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

  .product-3d-card {
    transform: none !important;
  }

  .product-3d-card:hover {
    transform: translateY(-4px) !important;
  }

  /* 3D Showcase */
  .showcase-nav {
    grid-template-columns: 1fr;
  }

  .showcase-tab {
    padding: 12px 16px;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .showcase-display {
    grid-template-columns: 1fr;
  }

  .showcase-render-stage {
    height: 200px;
    padding: 20px;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stage-3d-model {
    width: 130px;
    height: 130px;
  }

  .showcase-details-panel {
    padding: 24px 18px;
  }

  .stage-title {
    font-size: 20px;
  }

  .stage-desc {
    font-size: 13.5px;
    margin: 8px 0 16px;
  }

  .stage-specs-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 20px;
  }

  .stage-actions .button {
    width: 100%;
    justify-content: center;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-steps {
    margin: 20px 0 0;
    gap: 12px;
  }

  .process-step {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding: 16px 14px;
  }

  .step-num {
    height: 44px;
    font-size: 15px;
  }

  .process-media {
    order: 2;
  }

  /* Team */
  .team-header {
    margin-bottom: 30px;
  }

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

  /* Contact & Map */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-left {
    padding: 22px 16px;
  }

  .phone-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .map-locations-grid {
    grid-template-columns: 1fr;
  }

  .map-showcase {
    padding: 16px;
    border-radius: var(--radius-lg);
  }

  .map-showcase-heading {
    align-items: center;
    margin-bottom: 16px;
  }

  .map-showcase-count {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .map-card-header {
    padding: 13px 14px;
  }

  .map-wrapper {
    min-height: 300px;
  }

  .map-iframe {
    min-height: 300px;
  }

  .map-footer-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 16px;
  }

  .map-footer-bar .button {
    width: 100%;
    justify-content: center;
  }

  .product-detail-visual {
    min-height: 260px;
  }

  .product-detail-icon {
    width: 140px;
    height: 140px;
  }

  .product-detail-specs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-detail-cta .button {
    width: 100%;
    min-width: 0;
  }

  /* Red CTA Band */
  .cta-band {
    padding-block: 40px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .cta-actions .button {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .site-footer {
    padding-top: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding-block: 16px;
  }
}


/* ==========================================================================
   Floating Action Group: Official WhatsApp & Animated Back to Top
   ========================================================================== */
.floating-action-cluster {
  position: fixed;
  z-index: 9999;
  inset-inline-end: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Scroll to Top Button — Always sits above WhatsApp */
.scroll-to-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: #071a2b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.8);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s, background 0.2s ease, box-shadow 0.2s ease;
  pointer-events: none;
}

.scroll-to-top.visible,
.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(230, 51, 42, 0.45);
  transform: translateY(-3px) scale(1.08);
}

.scroll-to-top svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.2s ease;
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

/* Official WhatsApp Floating Action Button */
.floating-whatsapp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

/* ==========================================================================
   WhatsApp Contact Selection Modal
   ========================================================================== */
.wa-select-modal {
  border: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  background: transparent;
  max-width: 460px;
  width: calc(100% - 32px);
  margin: auto;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.wa-select-modal::backdrop {
  background: rgba(4, 15, 26, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.wa-modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.wa-modal-header {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  color: var(--white);
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.wa-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.wa-header-icon svg {
  width: 28px;
  height: 28px;
}

.wa-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.wa-modal-header p {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}

.wa-modal-close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  background: rgba(0, 0, 0, 0.15);
  border: 0;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wa-modal-close:hover {
  background: rgba(0, 0, 0, 0.3);
}

.wa-options-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8fafc;
}

.wa-option-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(7, 26, 43, 0.04);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}

.wa-option-card:hover {
  transform: translateY(-2px);
  border-color: #25D366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.18);
}

.wa-opt-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8f8ee;
  color: #25D366;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.wa-opt-badge svg {
  width: 26px;
  height: 26px;
}

.wa-opt-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.wa-opt-text b {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--deep-blue);
  letter-spacing: 0.02em;
  font-family: "Manrope", sans-serif;
}

.wa-opt-text span {
  font-size: 12.5px;
  font-weight: 600;
  color: #128C7E;
  margin-top: 2px;
}

.wa-opt-arrow {
  font-size: 18px;
  color: #94a3b8;
  font-weight: 800;
  transition: transform 0.2s ease, color 0.2s ease;
}

.wa-option-card:hover .wa-opt-arrow {
  color: #25D366;
  transform: translateX(4px);
}

html[dir="rtl"] .wa-option-card:hover .wa-opt-arrow {
  transform: translateX(-4px);
}

/* Review fixes: accessible mobile navigation and unobstructed product photos. */
.product-detail-visual.product-photo-clear { min-height:0; aspect-ratio:3/2; padding:0; }
.product-photo-clear .product-detail-photo { opacity:1; }
.product-photo-clear .product-detail-photo img { object-fit:contain; padding:18px; }
@media (max-width:780px) {
  .nav-inner > .brand { min-width:0; flex:1; }
  .nav-inner .brand-copy { min-width:0; }
  .nav-inner .brand-copy b { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  .nav-actions { flex:0 0 auto; }
  .nav-actions > .language-switcher { display:none; }
  .menu-toggle { flex:0 0 44px; width:44px; height:44px; }
}
