/*
Theme Name: Zayvon Trading Est.
Theme URI: https://thezayvon.com
Author: Built for Zayvon Trading Est.
Description: Bilingual (English / Arabic) theme for an MEP trading and building materials supplier. Products are a custom post type with category archives. Every section is editable from Appearance > Zayvon Options. Polylang ready.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: zayvon
Tags: business, custom-colors, rtl-language-support, translation-ready
*/
/* ==========================================================================
   ZAYVON TRADING EST. — Global stylesheet
   Design tokens are derived directly from the brand guideline board.
   Sections:  01 Tokens · 02 Base · 03 Utilities · 04 Buttons · 05 Header
              06 Hero · 07 Features · 08 Products · 09 Categories · 10 CTA
              11 About · 12 Testimonials · 13 Forms · 14 Footer · 15 Modal
              16 Responsive
   ========================================================================== */

/* ---------- 01 TOKENS ---------- */
:root {
  /* Brand palette (exact values from the guideline) */
  --ink: #0C1522;          /* Deep Navy   — main background */
  --navy: #0F1E31;         /* Navy Blue   — dark sections, overlays */
  --steel: #0E2540;        /* Steel Navy  — cards, secondary backgrounds */
  --blue: #034AAB;         /* Primary Blue— buttons, CTAs, active states */
  --blue-bright: #0874D9;  /* Bright Blue — hover states, highlights, icons */
  --white: #F7FAFC;        /* White       — headings, light background */
  --gray-light: #ACB5C0;   /* Light Gray  — secondary text */
  --gray-dark: #697483;    /* Dark Gray   — body text, descriptions */
  --line: #24374D;         /* Border Blue-Gray */

  /* Derived neutrals (tints of the brand white — no new hues introduced) */
  --paper: #FFFFFF;
  --paper-2: #F2F6FA;
  --line-light: #DCE3EC;

  /* Type */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;

  /* Layout */
  --container: 1280px;
  --gutter: 24px;
  --header-h: 104px;
  --header-h-sm: 76px;
  --radius: 4px;
  --section-y: clamp(72px, 9vw, 128px);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --t-fast: .18s var(--ease);
  --t: .32s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h-sm);
  -webkit-text-size-adjust: 100%;
  /* Sideways entrance animations must not be able to widen the page.
     'clip' does this without creating a scroll container; older browsers
     fall back to the 'hidden' on body below. */
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--gray-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

/* An author `display` rule outranks the browser default for [hidden], so a
   flex/grid element stays visible when hidden. This keeps hidden meaning
   hidden — the product filter relies on it. */
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--white);
  margin: 0 0 .5em;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); font-weight: 800; line-height: 1.08; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.85rem); line-height: 1.18; }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--blue); color: #fff; }

/* ---------- 03 UTILITIES ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--section-y); position: relative; }
.section--ink { background: var(--ink); }
.section--navy { background: var(--navy); }
.section--paper { background: var(--paper); }
.section--paper h2, .section--paper h3, .section--paper h4 { color: var(--ink); }
.section--paper p { color: var(--gray-dark); }

/* Blueprint grid — the same hairline system used in the imagery */
.grid-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(36,55,77,.5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(36,55,77,.5) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 100%);
  pointer-events: none;
}
.section > .container { position: relative; z-index: 1; }

/* Eyebrow + section heading block */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 10px;
  background: currentColor;
  clip-path: polygon(0 100%, 62% 100%, 100% 0, 38% 0);
}
.section--paper .eyebrow { color: var(--blue); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head p { font-size: 1.05rem; margin-bottom: 0; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.section-head--split {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 28px;
  max-width: none;
}
.section-head--split > div:first-child { max-width: 660px; }

/* Monospace spec strip — the recurring signature detail */
.spec {
  font-family: var(--font-mono);
  font-size: .69rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-dark);
  display: flex; flex-wrap: wrap; gap: 6px 10px;
}
.spec span { white-space: nowrap; }
.spec span + span::before { content: "·"; margin-right: 10px; color: var(--line); }
.section--paper .spec { color: var(--gray-dark); }

.index-tag {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  color: var(--blue-bright);
  text-transform: uppercase;
}

/* Scroll reveal — one animation everywhere: fade up.
   Stagger a group by putting data-stagger="<ms>" on its container, or set a
   one-off delay with data-delay="<ms>" on the element. */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 04 BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: .84rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; transition: transform var(--t-fast); flex: none; }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-bright); border-color: var(--blue-bright); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(247,250,252,.32); }
.btn--ghost:hover { border-color: var(--white); background: rgba(247,250,252,.08); }

.btn--outline { background: transparent; color: var(--blue); border-color: var(--line-light); }
.btn--outline:hover { border-color: var(--blue); background: var(--blue); color: #fff; }

.btn--sm { padding: 11px 20px; font-size: .76rem; }
.btn--block { width: 100%; justify-content: center; }

/* Text link with chevron */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-bright);
  transition: gap var(--t-fast);
}
.link-arrow:hover { gap: 14px; }

/* ---------- 05 HEADER ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(12,21,34,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(36,55,77,.7);
  transition: height var(--t), background var(--t);
}
.header.is-stuck { height: var(--header-h-sm); background: rgba(12,21,34,.97); }

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }

.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 76px; width: auto; transition: height var(--t); }
.header.is-stuck .brand img { height: 56px; }

.nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav a {
  position: relative;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--t-fast);
}
.nav a:hover { color: var(--white); }
.nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px;
  height: 2px; background: var(--blue-bright);
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--white); }

.header__cta { display: flex; align-items: center; gap: 10px; flex: none; }

/* Circular contact actions — always visible, no label needed */
.icon-btn {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.icon-btn--solid { background: var(--blue); border-color: var(--blue); }
.icon-btn--solid:hover { background: var(--blue-bright); border-color: var(--blue-bright); }
.icon-btn--solid svg { width: 21px; height: 21px; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: transparent; padding: 0;
  align-items: center; justify-content: center;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--white); position: relative; transition: background var(--t-fast); }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--white);
  transition: transform var(--t), top var(--t);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: rotate(45deg); }
.burger.is-open span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed; z-index: 890;
  top: var(--header-h-sm); left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--gutter) 28px;
  transform: translateY(-12px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  max-height: calc(100vh - var(--header-h-sm)); overflow-y: auto;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav a {
  display: block; padding: 16px 4px;
  border-bottom: 1px solid rgba(36,55,77,.8);
  font-family: var(--font-display); font-weight: 600;
  font-size: 1rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--white);
}
.mobile-nav a.is-active { color: var(--blue-bright); }
.mobile-nav .btn { margin-top: 22px; }

/* Push page content below the fixed header */
.page { padding-top: var(--header-h); }

/* ---------- 06 HERO (carousel) ---------- */
.hero { position: relative; min-height: min(82vh, 760px); display: flex; align-items: center; overflow: hidden; background: var(--ink); }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s;
}
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s linear;
}
.hero__slide.is-active img { transform: scale(1); }
/* The hero photographs already carry a navy fade on their left edge, so this
   scrim only needs to guarantee text contrast — a heavy one would flatten the
   picture. */
.hero__slide::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(12,21,34,.88) 0%, rgba(12,21,34,.72) 32%, rgba(12,21,34,.34) 58%, rgba(12,21,34,.06) 82%, rgba(3,74,171,.10) 100%);
}

.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(80px, 10vw, 130px); }
.hero__content { max-width: 760px; }
.hero__content h1 { margin-bottom: 22px; text-wrap: balance; }
.hero__lede { font-size: clamp(1rem, 1.35vw, 1.16rem); color: var(--gray-light); max-width: 600px; margin-bottom: 0; }
.hero__slide-body.is-active { margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__slide-body { display: none; }
.hero__slide-body.is-active { display: block; animation: heroIn .85s var(--ease) .15s both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero__content { min-height: 268px; }

.hero__controls {
  position: absolute; z-index: 3; bottom: 42px; left: 0; right: 0;
}
.hero__controls .container { display: flex; align-items: center; gap: 20px; }
.hero__dots { display: flex; gap: 10px; }
.hero__dots button {
  width: 34px; height: 3px; padding: 0; border: 0;
  background: rgba(247,250,252,.26); position: relative; overflow: hidden;
  transition: background var(--t-fast);
}
.hero__dots button::after {
  content: ""; position: absolute; inset: 0; background: var(--blue-bright);
  transform: scaleX(0); transform-origin: left;
}
.hero__dots button.is-active::after { animation: dotFill 6.5s linear forwards; }
@keyframes dotFill { to { transform: scaleX(1); } }

.hero__arrows { display: flex; gap: 8px; margin-left: auto; }
.hero__arrows button {
  width: 46px; height: 46px; border: 1px solid rgba(247,250,252,.24);
  background: rgba(12,21,34,.4); color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.hero__arrows button:hover { border-color: var(--blue-bright); background: var(--blue); }
.hero__arrows svg { width: 16px; height: 16px; }

.hero__count { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .16em; color: var(--gray-light); }
.hero__count b { color: var(--white); font-weight: 500; }

/* Strip of brand promises under the hero */
.promise { background: var(--steel); border-block: 1px solid var(--line); }
.promise__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.promise__item { padding: 36px 30px; border-left: 1px solid var(--line); }
.promise__item:first-child { border-left: 0; padding-left: 0; }
.promise__item h3 { font-size: .95rem; margin-bottom: 6px; letter-spacing: 0; }
.promise__item p { font-size: .86rem; color: var(--gray-light); margin: 0; line-height: 1.6; }

/* ---------- 07 FEATURES ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature {
  background: var(--ink);
  padding: 40px 34px;
  transition: background var(--t);
  position: relative;
}
.feature:hover { background: var(--steel); }
.feature__icon {
  width: 46px; height: 46px; color: var(--blue-bright);
  margin-bottom: 24px;
}
.feature__icon svg { width: 100%; height: 100%; }
.feature h3 { font-size: 1.08rem; margin-bottom: 10px; }
.feature p { font-size: .92rem; color: var(--gray-light); margin: 0; }
.feature__num {
  position: absolute; top: 26px; right: 30px;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; color: var(--line);
  transition: color var(--t);
}
.feature:hover .feature__num { color: var(--blue-bright); }

/* Light variant used on the About page */
.section--paper .features { background: var(--line-light); border-color: var(--line-light); }
.section--paper .feature { background: #fff; }
.section--paper .feature:hover { background: var(--paper-2); }
.section--paper .feature p { color: var(--gray-dark); }
.section--paper .feature__icon { color: var(--blue); }
.section--paper .feature__num { color: var(--line-light); }
.section--paper .feature:hover .feature__num { color: var(--blue); }

/* ---------- 08 PRODUCTS ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  display: flex; flex-direction: column;
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.card:hover { border-color: var(--blue-bright); transform: translateY(-4px); box-shadow: 0 18px 44px rgba(3,10,20,.55); }

.section--paper .card { background: #fff; border-color: var(--line-light); }
.section--paper .card__body { background: #fff; }
.section--paper .card:hover { box-shadow: 0 18px 44px rgba(12,21,34,.12); }
.section--paper .card__title { color: var(--ink); }
.section--paper .card__desc { color: var(--gray-dark); }

.card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #06101F; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(12,21,34,.82);
  border: 1px solid rgba(36,55,77,.9);
  color: var(--blue-bright);
  font-family: var(--font-mono); font-size: .64rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 2px;
}
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.card__title { font-size: 1.06rem; font-family: var(--font-display); font-weight: 700; color: var(--white); margin: 0; line-height: 1.25; }
.card__desc { font-size: .9rem; color: var(--gray-light); margin: 0; flex: 1; }
.card .spec { flex: 1; align-content: flex-start; }
.card__foot { display: flex; align-items: center; gap: 12px; padding-top: 6px; }

.card__btn {
  background: transparent; border: 1px solid var(--line);
  color: var(--white); border-radius: var(--radius);
  padding: 10px 18px;
  font-family: var(--font-display); font-size: .74rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.card__btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.section--paper .card__btn { border-color: var(--line-light); color: var(--blue); }
.section--paper .card__btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Products page toolbar */
.toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; justify-content: space-between; margin-bottom: 34px; }
#catalogue { padding-top: clamp(48px, 5vw, 72px); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filters button, .filters a {
  background: transparent; border: 1px solid var(--line-light);
  color: var(--gray-dark); border-radius: var(--radius);
  padding: 11px 20px;
  font-family: var(--font-display); font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  transition: all var(--t-fast);
}
.filters button:hover, .filters a:hover { border-color: var(--blue); color: var(--blue); }
.filters button.is-active, .filters a.is-active { background: var(--blue); border-color: var(--blue); color: #fff; }

.result-count { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-dark); }

.card--in { animation: cardIn .45s var(--ease) both; }
@keyframes cardIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.empty-state { padding: 60px 0; text-align: center; color: var(--gray-dark); font-family: var(--font-mono); letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; }

/* ---------- 09 CATEGORIES ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.cat {
  position: relative; display: block; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius);
  min-height: 400px;
  transition: border-color var(--t);
}
.cat:hover { border-color: var(--blue-bright); }
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.cat:hover img { transform: scale(1.06); }
.cat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,21,34,.15) 0%, rgba(12,21,34,.82) 62%, rgba(12,21,34,.96) 100%);
  transition: background var(--t);
}
.cat:hover::after { background: linear-gradient(180deg, rgba(12,21,34,.25) 0%, rgba(3,74,171,.5) 100%); }
.cat__body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 26px 22px; }
.cat__body .index-tag { display: block; margin-bottom: 10px; }
.cat__body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.cat__body p { font-size: .85rem; color: var(--gray-light); margin: 0 0 16px; }
.cat__body .link-arrow { font-size: .7rem; }

/* ---------- 10 CTA BAND ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--navy); }
.cta-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(12,21,34,.97) 0%, rgba(14,37,64,.9) 55%, rgba(3,74,171,.55) 100%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 34px; }
.cta-band__text { max-width: 640px; }
.cta-band__text h2 { margin-bottom: 20px; line-height: 1.16; text-wrap: balance; }
.cta-band__text p { margin: 0; font-size: 1.02rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- 11 ABOUT / SPLIT ---------- */
.split { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(36px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }

.split__media { position: relative; }
.split__media img { width: 100%; max-height: 620px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.section--paper .split__media img { border-color: var(--line-light); }
.split__badge {
  position: absolute; right: -14px; bottom: -14px;
  background: var(--blue); color: #fff;
  padding: 20px 24px; border-radius: var(--radius);
  max-width: 230px;
}
.split__badge strong { display: block; font-family: var(--font-display); font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.split__badge span { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; opacity: .82; }

.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 26px; margin: 28px 0 34px; padding: 0; list-style: none; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: .93rem; color: var(--gray-light); }
.section--paper .checklist li { color: var(--gray-dark); }
.checklist svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--blue-bright); }
.section--paper .checklist svg { color: var(--blue); }

/* Mission / vision */
.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.mv {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--steel); padding: 44px 38px;
  position: relative; overflow: hidden;
}
.mv::before {
  content: ""; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--blue-bright), transparent);
}
.mv__icon { width: 44px; height: 44px; color: var(--blue-bright); margin-bottom: 22px; }
.mv h3 { font-size: 1.5rem; margin-bottom: 14px; }
.mv p { margin: 0; color: var(--gray-light); }

/* Mission / vision cards on a white section */
.section--paper .mv { background: #fff; border: 1px solid var(--line-light); }
.section--paper .mv__icon { color: var(--blue); }
.section--paper .mv p { color: var(--gray-dark); }

/* Page banner */
.page-banner { position: relative; overflow: hidden; padding-block: clamp(66px, 8vw, 108px); background: var(--navy); }
.page-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.page-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(92deg, rgba(12,21,34,.96) 10%, rgba(14,37,64,.82) 60%, rgba(3,74,171,.38) 100%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); line-height: 1.14; margin-bottom: 22px; }
.page-banner p { max-width: 620px; font-size: 1.03rem; margin: 0; line-height: 1.65; }
.page-banner .crumbs { margin-bottom: 20px; }
.crumbs { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 18px; }
.crumbs a:hover { color: var(--blue-bright); }
.crumbs span { color: var(--line); margin: 0 8px; }

/* ---------- 12 TESTIMONIALS ---------- */
.quotes { position: relative; }
.quotes__viewport { overflow: hidden; }
.quotes__track { display: flex; transition: transform .55s var(--ease); }
.quote { flex: 0 0 100%; padding-right: 0; }
.quote__mark { font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--blue); margin-bottom: 8px; }
.quote blockquote { margin: 0 0 28px; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 2.1vw, 1.6rem); line-height: 1.5; color: var(--white); max-width: 900px; letter-spacing: -.01em; }
.section--paper .quote blockquote { color: var(--ink); }
.quote__by { display: flex; align-items: center; gap: 16px; }
.quote__avatar {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  background: var(--steel); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--blue-bright); font-size: .95rem;
}
.section--paper .quote__avatar { background: var(--paper-2); border-color: var(--line-light); color: var(--blue); }
.quote__by strong { display: block; font-family: var(--font-display); color: var(--white); font-size: .98rem; }
.section--paper .quote__by strong { color: var(--ink); }
.quote__by span { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-dark); }
.quotes__nav { display: flex; gap: 10px; margin-top: 34px; }
.quotes__nav button {
  width: 46px; height: 46px; border: 1px solid var(--line-light); background: transparent;
  color: var(--blue); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
}
.quotes__nav button:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.quotes__nav svg { width: 16px; height: 16px; }
.placeholder-note {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gray-dark);
  border: 1px dashed var(--line-light); border-radius: var(--radius);
  padding: 10px 14px; display: inline-block; margin-top: 30px;
}

/* ---------- 13 FORMS ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gray-light);
}
.section--paper .field label { color: var(--gray-dark); }
.field label .req { color: var(--blue-bright); }
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(12,21,34,.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body); font-size: .95rem;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #55606f; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-bright); background: rgba(12,21,34,.8); outline: none; }
.field select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ACB5C0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 42px; }

.field--light input, .field--light select, .field--light textarea { background: #fff; border-color: var(--line-light); color: var(--ink); }
.field--light input:focus, .field--light select:focus, .field--light textarea:focus { background: #fff; border-color: var(--blue); }

.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #E0555B; }
.field__error { font-size: .78rem; color: #E0555B; display: none; }
.field.has-error .field__error { display: block; }

.form-note { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-dark); margin-top: 16px; }

.form-success {
  display: none; align-items: flex-start; gap: 14px;
  border: 1px solid var(--blue); background: rgba(3,74,171,.14);
  border-radius: var(--radius); padding: 20px 22px; margin-bottom: 24px;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 22px; height: 22px; color: var(--blue-bright); flex: none; margin-top: 2px; }
.form-success strong { display: block; font-family: var(--font-display); color: var(--white); margin-bottom: 4px; }
.form-success p { margin: 0; font-size: .9rem; color: var(--gray-light); }
.section--paper .form-success strong { color: var(--ink); }

/* Honeypot — off-screen for people, irresistible to bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-success--error { border-color: #E0555B; background: rgba(224, 85, 91, .12); }
.form-success--error svg { color: #E0555B; }

/* Contact info cards */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.info {
  border: 1px solid var(--line-light); border-radius: var(--radius);
  background: #fff; padding: 32px 26px;
  transition: border-color var(--t), transform var(--t);
}
.info:hover { border-color: var(--blue); transform: translateY(-3px); }
.info__icon { width: 40px; height: 40px; color: var(--blue); margin-bottom: 20px; }
.info h3 { font-size: 1rem; margin-bottom: 8px; color: var(--ink); }
.info p { margin: 0; font-size: .92rem; color: var(--gray-dark); }
.info a:hover { color: var(--blue); }

/* Enquiry panel (dark two-column) */
.enquiry { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(36px, 5vw, 68px); align-items: start; }
.enquiry__aside .spec { margin-top: 26px; }
.contact-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list svg { width: 20px; height: 20px; color: var(--blue-bright); flex: none; margin-top: 4px; }
.contact-list strong { display: block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gray-dark); margin-bottom: 2px; }
.contact-list span { color: var(--white); font-size: .96rem; }
.contact-list a:hover { color: var(--blue-bright); }

/* ---------- 14 FOOTER ---------- */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding-top: clamp(56px, 6vw, 84px); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr 1.4fr; gap: 44px; padding-bottom: 54px; }
.footer__brand img { height: 84px; width: auto; margin-bottom: 22px; }
.footer__brand p { font-size: .9rem; color: var(--gray-light); max-width: 320px; }
.footer h4 {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--blue-bright); margin-bottom: 22px; font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a, .footer ul li { font-size: .9rem; color: var(--gray-light); transition: color var(--t-fast); }
.footer ul a:hover { color: var(--blue-bright); }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; color: var(--blue-bright); flex: none; margin-top: 5px; }

.socials { display: flex; gap: 10px; margin-top: 26px; }
.socials a {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: var(--gray-light);
  transition: all var(--t-fast);
}
.socials a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.socials svg { width: 17px; height: 17px; }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-block: 24px;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; color: var(--gray-dark);
}
.footer__bottom .tagline { color: var(--blue-bright); text-transform: uppercase; }

/* Back to top */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 800;
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--blue); border: 0; color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--t), transform var(--t), visibility var(--t), background var(--t-fast);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--blue-bright); }
.to-top svg { width: 18px; height: 18px; }

/* ---------- 15 MODAL ---------- */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(6,11,18,.82); backdrop-filter: blur(4px); }
.modal__dialog {
  position: relative; z-index: 2;
  width: min(680px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--navy); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  transform: translateY(18px) scale(.985);
  transition: transform var(--t);
}
.modal.is-open .modal__dialog { transform: none; }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border: 1px solid var(--line); background: transparent;
  color: var(--gray-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
}
.modal__close:hover { border-color: var(--blue-bright); color: var(--white); }
.modal__close svg { width: 16px; height: 16px; }
.modal__product {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(12,21,34,.5); padding: 12px 14px; margin-bottom: 26px;
}
.modal__product img { width: 62px; height: 48px; object-fit: cover; border-radius: 2px; flex: none; }
.modal__product strong { display: block; color: var(--white); font-family: var(--font-display); font-size: .98rem; }
.modal__product span { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-bright); }
body.no-scroll { overflow: hidden; }

/* ---------- 16 RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  :root { --header-h: 84px; --header-h-sm: 72px; }
  .nav { display: none; }
  .burger { display: flex; }
  .brand img { height: 60px; }
  .header.is-stuck .brand img { height: 50px; }
  .mobile-nav { top: var(--header-h); }
  .header.is-stuck + .mobile-nav { top: var(--header-h-sm); }

  .product-grid, .product-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .promise__grid { grid-template-columns: repeat(2, 1fr); }
  .promise__item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .promise__item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .enquiry { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .cat { min-height: 320px; }
}

@media (max-width: 760px) {
  :root { --gutter: 20px; }
  body { font-size: 15.5px; }
  .hero { min-height: 0; }
  .hero__slide::after {
    background:
      linear-gradient(180deg, rgba(12,21,34,.92) 0%, rgba(12,21,34,.80) 45%, rgba(12,21,34,.88) 100%);
  }
  .hero__inner { padding-block: 92px 128px; }
  .hero__lede { font-size: 1rem; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
  .hero__controls { bottom: 26px; }
  .hero__count { display: none; }

  .product-grid, .product-grid--4 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .feature { padding: 32px 26px; }
  .promise__grid { grid-template-columns: 1fr; }
  .promise__item { border-left: 0; padding-left: 0; }
  .promise__item + .promise__item { border-top: 1px solid var(--line); }
  .mv-grid { grid-template-columns: 1fr; }
  .mv { padding: 34px 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 38px; }
  .split__badge { position: static; margin-top: 18px; max-width: none; }
  .toolbar { flex-direction: column; align-items: flex-start; }
  .filters { width: 100%; }
  .filters button, .filters a { flex: 1 1 auto; }
  .cta-band__actions { width: 100%; }
  .cta-band__actions .btn { flex: 1 1 100%; justify-content: center; }
  .to-top { right: 16px; bottom: 16px; }
}

@media (max-width: 460px) {
  .icon-btn { width: 42px; height: 42px; }
  .icon-btn svg { width: 17px; height: 17px; }
  .icon-btn--solid svg { width: 19px; height: 19px; }
  .burger { width: 42px; height: 42px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat { min-height: 260px; }
  .btn { padding: 14px 22px; font-size: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal, .reveal[data-anim] { opacity: 1 !important; transform: none !important; }
}


/* ==========================================================================
   17 LANGUAGE SWITCH + RIGHT-TO-LEFT (Arabic)
   ========================================================================== */

.lang-switch {
  display: flex; align-items: center; flex: none;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 3px; gap: 2px;
}
.lang-switch button, .lang-switch a {
  border: 0; background: transparent; color: var(--gray-light);
  font-family: var(--font-display); font-size: .74rem; font-weight: 600;
  letter-spacing: .06em;
  padding: 7px 13px; border-radius: 999px; line-height: 1;
  transition: background var(--t-fast), color var(--t-fast);
}
.lang-switch button:hover, .lang-switch a:hover { color: var(--white); }
.lang-switch button.is-active, .lang-switch a.is-active { background: var(--blue); color: #fff; }
.lang-switch [lang="ar"] { font-family: "IBM Plex Sans Arabic", var(--font-display); }

/* --------------------------------- ARABIC TYPE --------------------------- */
[dir="rtl"] body,
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5,
[dir="rtl"] .btn, [dir="rtl"] .card__title, [dir="rtl"] .card__btn,
[dir="rtl"] .nav a, [dir="rtl"] .mobile-nav a, [dir="rtl"] .filters button,
[dir="rtl"] .quote blockquote, [dir="rtl"] .quote__by strong,
[dir="rtl"] .split__badge strong, [dir="rtl"] .promise__item h3 {
  font-family: "IBM Plex Sans Arabic", "Noto Sans Arabic", var(--font-body);
}
/* Latin-styled mono labels read badly in Arabic — normalise them */
[dir="rtl"] .eyebrow, [dir="rtl"] .spec, [dir="rtl"] .index-tag,
[dir="rtl"] .card__cat, [dir="rtl"] .result-count, [dir="rtl"] .crumbs,
[dir="rtl"] .field label, [dir="rtl"] .footer h4, [dir="rtl"] .footer__bottom,
[dir="rtl"] .contact-list strong, [dir="rtl"] .quote__by span,
[dir="rtl"] .link-arrow, [dir="rtl"] .form-note, [dir="rtl"] .placeholder-note,
[dir="rtl"] .modal__product span, [dir="rtl"] .empty-state {
  font-family: "IBM Plex Sans Arabic", var(--font-body);
  letter-spacing: 0;
}
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { letter-spacing: 0; }
[dir="rtl"] .hero__count { direction: ltr; }

/* --------------------------------- MIRRORING ----------------------------- */
[dir="rtl"] .eyebrow::before { transform: scaleX(-1); }
[dir="rtl"] .spec span + span::before { margin-right: 0; margin-left: 10px; }
[dir="rtl"] .btn svg, [dir="rtl"] .link-arrow svg,
[dir="rtl"] .card__btn svg { transform: scaleX(-1); }
[dir="rtl"] .btn:hover svg { transform: scaleX(-1) translateX(4px); }

[dir="rtl"] .nav { margin-left: 0; margin-right: auto; }
[dir="rtl"] .card__cat { left: auto; right: 14px; }
[dir="rtl"] .feature__num { right: auto; left: 30px; }
[dir="rtl"] .mv::before { left: auto; right: 0; }
[dir="rtl"] .modal__close { right: auto; left: 16px; }
[dir="rtl"] .to-top { right: auto; left: 22px; }
[dir="rtl"] .split__badge { right: auto; left: -14px; }
[dir="rtl"] .hero__arrows { margin-left: 0; margin-right: auto; }
[dir="rtl"] .promise__item { border-left: 0; border-right: 1px solid var(--line); }
[dir="rtl"] .promise__item:first-child { border-right: 0; padding-right: 0; padding-left: 28px; }
[dir="rtl"] .burger span::before, [dir="rtl"] .burger span::after { left: auto; right: 0; }

/* Directional gradients need flipping so the dark side stays under the text */
[dir="rtl"] .hero__slide::after {
  background:
    linear-gradient(260deg, rgba(12,21,34,.88) 0%, rgba(12,21,34,.72) 32%, rgba(12,21,34,.34) 58%, rgba(12,21,34,.06) 82%, rgba(3,74,171,.10) 100%);
}
[dir="rtl"] .hero__slide img,
[dir="rtl"] .page-banner > img,
[dir="rtl"] .cta-band > img { transform: scaleX(-1); }
[dir="rtl"] .hero__slide.is-active img { transform: scaleX(-1) scale(1); }
[dir="rtl"] .page-banner::after {
  background: linear-gradient(268deg, rgba(12,21,34,.96) 10%, rgba(14,37,64,.82) 60%, rgba(3,74,171,.38) 100%);
}
[dir="rtl"] .cta-band::after {
  background: linear-gradient(265deg, rgba(12,21,34,.97) 0%, rgba(14,37,64,.9) 55%, rgba(3,74,171,.55) 100%);
}
[dir="rtl"] .field select {
  background-position: left 14px center;
  padding-right: 16px; padding-left: 42px;
}
[dir="rtl"] .crumbs span { margin: 0 8px; }

@media (max-width: 760px) {
  [dir="rtl"] .promise__item:first-child { padding-left: 0; }
  [dir="rtl"] .promise__item { border-right: 0; }
  [dir="rtl"] .to-top { left: 16px; }
}
@media (max-width: 460px) {
  .lang-switch button, .lang-switch a { padding: 6px 10px; font-size: .7rem; }
}


/* ---------- WordPress additions ---------- */
.filters a { text-decoration: none; display: inline-block; }
.lang-switch a { text-decoration: none; display: inline-block; }
.zv-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 44px; }
.zv-pagination .page-numbers {
  min-width: 42px; height: 42px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-light); border-radius: var(--radius);
  color: var(--gray-dark); font-family: var(--font-display); font-size: .84rem; font-weight: 600;
  transition: all var(--t-fast);
}
.zv-pagination .page-numbers:hover { border-color: var(--blue); color: var(--blue); }
.zv-pagination .page-numbers.current { background: var(--blue); border-color: var(--blue); color: #fff; }
.admin-bar .header { top: 32px; }
@media (max-width: 782px) { .admin-bar .header { top: 46px; } }
.zv-rtl .filters a, .zv-rtl .lang-switch a { text-decoration: none; }
