/* ============================================================
   VADALO VENTURES — HEADER CSS
   header.css
   ============================================================ */

.site-header { position:fixed; top:0; left:0; right:0; z-index:9000; font-family:'Poppins','Inter',sans-serif; }

/* BAR 1 - TOP */
.hdr-top { background:#0f2318; padding:.28rem 0; border-bottom:1px solid rgba(255,255,255,.07); }
.hdr-top__inner { display:flex; align-items:center; gap:1.25rem; max-width:1400px; margin:0 auto; padding:0 1.5rem; flex-wrap:wrap; }
.hdr-top__item { display:flex; align-items:center; gap:.4rem; font-size:.63rem; font-weight:600; color:rgba(255,255,255,.6); white-space:nowrap; }
.hdr-top__item i { color:#c9a84c; font-size:.68rem; }
.hdr-top__item strong { color:#c9a84c; }
.hdr-top__badge { background:#c9a84c; color:#0f2318; font-size:.52rem; font-weight:900; padding:.1rem .38rem; border-radius:3px; letter-spacing:.06em; }
.hdr-top__dot { width:6px; height:6px; border-radius:50%; background:#2ecc71; display:inline-block; flex-shrink:0; animation:pdot 2s infinite; }
@keyframes pdot { 0%,100%{opacity:1}50%{opacity:.3} }
.hdr-top__sep { width:1px; height:13px; background:rgba(255,255,255,.1); flex-shrink:0; }
.hdr-top__enq { margin-left:auto; font-size:.6rem; font-weight:800; letter-spacing:.1em; color:#2ecc71; text-transform:uppercase; }

/* BAR 2 - MAIN NAV */
.hdr-main { background:#1a3a2a; }
.hdr-main__inner { display:flex; align-items:center; max-width:1400px; margin:0 auto; padding:0 1.5rem; height:62px; }

/* Logo */
.hdr-logo { display:flex; align-items:center; gap:.65rem; text-decoration:none; flex-shrink:0; margin-right:1.75rem; }
.hdr-logo__img { width:40px; height:40px; border-radius:8px; object-fit:contain; background:white; padding:3px; }
.hdr-logo__name { font-family:'Playfair Display',Georgia,serif; font-size:1.25rem; font-weight:700; color:white; }

/* Nav */
.hdr-nav { display:flex; align-items:center; flex:1; }
.hdr-nav__item { position:relative; }
.hdr-nav__link { display:flex; align-items:center; gap:.28rem; padding:.45rem .82rem; font-size:.72rem; font-weight:700; color:rgba(255,255,255,.85); text-decoration:none; white-space:nowrap; height:62px; border-bottom:2px solid transparent; transition:color .2s, border-color .2s; }
.hdr-nav__link:hover, .hdr-nav__item:hover > .hdr-nav__link { color:#c9a84c; border-bottom-color:#c9a84c; }
.hdr-nav__link i { font-size:.52rem; opacity:.6; transition:transform .2s; }
.hdr-nav__item:hover .hdr-nav__link i { transform:rotate(180deg); }

/* Regular Dropdown (About Us etc.) */
.hdr-dropdown { position:absolute; top:100%; left:0; background:white; border-radius:8px; box-shadow:0 12px 40px rgba(0,0,0,.18); min-width:200px; padding:.5rem 0; opacity:0; visibility:hidden; transform:translateY(8px); transition:all .22s ease; z-index:200; border-top:3px solid #c9a84c; }
.hdr-nav__item:hover .hdr-dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.hdr-dropdown a { display:flex; align-items:center; gap:.6rem; padding:.52rem 1.1rem; font-size:.73rem; font-weight:600; color:#2a2a2a; text-decoration:none; transition:background .15s,color .15s; }
.hdr-dropdown a:hover { background:#f3ede0; color:#1a3a2a; }
.hdr-dropdown a i { color:#c9a84c; font-size:.72rem; width:14px; }
.hdr-dropdown__sep { height:1px; background:#eee; margin:.35rem 0; }

/* ── PRODUCTS MEGA MENU ── */
.hdr-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  border-top: 3px solid #c9a84c;
  padding: 1.5rem 1.25rem 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 300;
  min-width: 680px;
  pointer-events: none;
}

/* Arrow pointer */
.hdr-mega::before {
  content: '';
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #c9a84c;
}

.hdr-nav__item:hover .hdr-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.hdr-mega__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}

.hdr-mega__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid #ede8d8;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  background: #fdf9f2;
  cursor: pointer;
}

.hdr-mega__item:hover {
  border-color: #c9a84c;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,168,76,.2);
}

.hdr-mega__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0ebe0;
}

.hdr-mega__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  display: block;
}

.hdr-mega__item:hover .hdr-mega__img img {
  transform: scale(1.07);
}

.hdr-mega__item span {
  display: block;
  padding: .5rem .4rem;
  font-size: .72rem;
  font-weight: 700;
  color: #1a3a2a;
  text-align: center;
  line-height: 1.3;
  font-family: 'Poppins','Inter',sans-serif;
}

.hdr-mega__item:hover span {
  color: #c9a84c;
}

/* View All — special style */
.hdr-mega__viewall {
  border-color: #1a3a2a;
  background: #1a3a2a;
}

.hdr-mega__viewall span {
  color: #c9a84c;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .65rem;
}

.hdr-mega__viewall:hover {
  background: #224d38;
  border-color: #c9a84c;
}

.hdr-mega__viewall:hover span { color: #e8c870; }

.hdr-mega__viewall .hdr-mega__img { filter: brightness(.75); }
.hdr-mega__viewall:hover .hdr-mega__img { filter: brightness(.85); }

@media (max-width:1100px) {
  .hdr-mega { min-width: 560px; }
  .hdr-mega__inner { grid-template-columns: repeat(4, 1fr); gap: .65rem; }
}
@media (max-width:900px) { .hdr-mega { display: none !important; } }

/* Actions */
.hdr-actions { display:flex; align-items:center; gap:.55rem; margin-left:.75rem; flex-shrink:0; }
.hdr-btn { display:flex; align-items:center; gap:.38rem; padding:.42rem .85rem; border-radius:6px; font-family:'Poppins','Inter',sans-serif; font-size:.7rem; font-weight:700; cursor:pointer; text-decoration:none; transition:all .2s; white-space:nowrap; border:none; }
.hdr-btn--lang { background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); color:white; }
.hdr-btn--lang:hover { background:rgba(255,255,255,.2); }
.hdr-btn--wa { background:transparent; border:1.5px solid rgba(255,255,255,.35); color:white; }
.hdr-btn--wa:hover { border-color:#25d366; color:#25d366; }
.hdr-btn--wa i { color:#25d366; }
.hdr-btn--quote { background:#c9a84c; color:#0f2318; }
.hdr-btn--quote:hover { background:#dbb95e; }
.hdr-btn--quote::before { content:''; width:7px; height:7px; border-radius:50%; background:#2ecc71; flex-shrink:0; animation:pdot 2s infinite; }

/* Clock */
.hdr-clock-box { background:rgba(0,0,0,.3); border:1.5px solid rgba(255,255,255,.8); border-radius:7px; padding:.08rem .7rem; text-align:center; flex-shrink:0; min-width:137px; }
.hdr-clock-time { font-size:1rem; font-weight:800; color:white; line-height:1; font-variant-numeric:tabular-nums; display:flex; align-items:baseline; gap:.12rem; justify-content:center; }
.hdr-clock-sec { font-size:.58rem; color:rgba(255,255,255,.45); font-weight:600; }
.hdr-clock-ampm { font-size:.58rem; color:#c9a84c; font-weight:700; background:rgba(201,168,76,.15); padding:.08rem .28rem; border-radius:3px; }
.hdr-clock-date { font-size:.52rem; color:rgba(255,255,255,.45); font-weight:600; margin-top:.12rem; white-space:nowrap; }
.hdr-clock-zone { display:flex; align-items:center; justify-content:center; gap:.28rem; margin-top:.08rem; }
.hdr-clock-tz { font-size:.5rem; font-weight:700; color:rgba(255,255,255,.4); letter-spacing:.05em; }
.hdr-clock-live { display:flex; align-items:center; gap:.22rem; font-size:.48rem; color:#2ecc71; font-weight:700; }

/* BAR 3 - SUB */
.hdr-sub { background:#0a1c10; padding:.28rem 0; }
.hdr-sub__inner { display:flex; align-items:center; max-width:1400px; margin:0 auto; padding:0 1.5rem; }
.hdr-sub__left { display:flex; align-items:center; gap:1.1rem; flex:1; }
.hdr-sub__item { display:flex; align-items:center; gap:.38rem; font-size:.6rem; font-weight:600; color:rgba(255,255,255,.45); white-space:nowrap; }
.hdr-sub__item i { color:#c9a84c; font-size:.62rem; }
.hdr-sub__sep { width:1px; height:11px; background:rgba(255,255,255,.1); }
.hdr-sub__right { display:flex; align-items:center; gap:1.1rem; }
.hdr-sub__contact { display:flex; align-items:center; gap:.38rem; font-size:.6rem; font-weight:600; color:rgba(255,255,255,.5); text-decoration:none; white-space:nowrap; transition:color .2s; }
.hdr-sub__contact:hover { color:#c9a84c; }
.hdr-sub__contact i { color:#c9a84c; font-size:.62rem; }
.hdr-sub__contact span { color:rgba(255,255,255,.3); font-size:.58rem; }

/* MOBILE */
.hdr-mobile-toggle { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:.5rem; margin-left:auto; background:none; border:none; }
.hdr-mobile-toggle span { display:block; width:24px; height:3px; background:#ffffff; border-radius:2px; transition:all .3s; }
.hdr-mobile-menu { display:none; background:#1a3a2a; padding:1rem 1.5rem; border-top:1px solid rgba(255,255,255,.08); }
.hdr-mobile-menu.open { display:block; }
.hdr-mobile-menu a { display:flex; align-items:center; gap:.6rem; padding:.65rem 0; font-size:.82rem; font-weight:600; color:rgba(255,255,255,.8); text-decoration:none; border-bottom:1px solid rgba(255,255,255,.06); }
.hdr-mobile-menu a:hover { color:#c9a84c; }
.hdr-mobile-menu a i { color:#c9a84c; width:16px; }
.hdr-mobile-actions { display:flex; gap:.75rem; padding-top:1rem; flex-wrap:wrap; }

/* OFFSET */
:root { --header-h: 116px; }
main, #main-content { padding-top: var(--header-h); }
@media (max-width:900px) { main, #main-content { padding-top: 62px !important; } }
.hero-slider { margin-top: calc(var(--header-h) * -1); }

/* RESPONSIVE */
@media (max-width:1100px) { .hdr-nav__link{padding:.45rem .55rem;font-size:.68rem;} }
@media (max-width:900px) { .hdr-nav{display:none;} .hdr-mobile-toggle{display:flex !important;} .hdr-sub{display:none;} .hdr-top__enq{display:none;} .hdr-btn--lang{display:none;} .hdr-btn--quote{display:none;} .hdr-btn--cat{display:none;} .hdr-btn--wa{display:none;} .hdr-lang{display:none;} }
@media (max-width:900px) { .hdr-top{display:none;} }

/* 3 ACTION BUTTONS */
.hdr-btn--enquiry { background:#c9a84c; color:#0f2318; }
.hdr-btn--enquiry:hover { background:#dbb95e; }
.hdr-btn--cat { background:transparent; border:1.5px solid rgba(255,255,255,.35); color:white; }
.hdr-btn--cat:hover { background:rgba(255,255,255,.1); border-color:white; }

@media (max-width:900px) { .hdr-main__inner{overflow:visible;} .hdr-logo{flex:1;} .hdr-clock-box{min-width:90px;padding:.05rem .4rem;} .hdr-clock-time{font-size:.78rem;} .hdr-clock-date{display:block;font-size:.44rem;white-space:normal;} .hdr-clock-ampm{font-size:.5rem;} .hdr-clock-tz,.hdr-clock-live{font-size:.42rem;} .hdr-mobile-toggle{flex-shrink:0;margin-left:.5rem !important;display:flex !important;} }

/* MOBILE ACTIONS - centered & compact */
.hdr-mobile-actions {
  display: flex !important;
  justify-content: center !important;
  gap: .5rem !important;
  padding-top: .85rem !important;
  flex-wrap: wrap;
}
.hdr-mobile-actions .hdr-btn {
  font-size: .68rem !important;
  padding: .38rem .75rem !important;
  flex: 1;
  justify-content: center;
  max-width: 140px;
}

/* MOBILE DROPDOWN GROUPS */
.mob-group { border-bottom:1px solid rgba(255,255,255,.06); }
.mob-group-title {
  display:flex; align-items:center; gap:.6rem;
  padding:.65rem 0; font-size:.82rem; font-weight:700;
  color:rgba(255,255,255,.8); cursor:pointer; user-select:none;
}
.mob-group-title i { color:#c9a84c; width:16px; }
.mob-chev { margin-left:auto; font-size:.55rem !important; transition:transform .25s; color:rgba(255,255,255,.4) !important; width:auto !important; }
.mob-group.open .mob-chev { transform:rotate(180deg); }
.mob-group-links { display:none; padding:0 0 .5rem .75rem; }
.mob-group.open .mob-group-links { display:block; }
.mob-group-links a {
  display:flex; align-items:center; gap:.5rem;
  padding:.45rem 0; font-size:.75rem; font-weight:600;
  color:rgba(255,255,255,.6); text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.04);
  transition:color .2s;
}
.mob-group-links a:hover { color:#c9a84c; }
.mob-group-links a i { color:#c9a84c; font-size:.68rem; width:14px; }

/* ── LANGUAGE DROPDOWN ── */
.hdr-lang { position:relative; flex-shrink:0; }
.hdr-lang__btn {
  display:flex; align-items:center; gap:.35rem;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2);
  border-radius:6px; padding:.42rem .75rem;
  font-family:'Poppins','Inter',sans-serif; font-size:.7rem; font-weight:700;
  color:white; cursor:pointer; white-space:nowrap; transition:all .2s;
}
.hdr-lang__btn:hover { background:rgba(255,255,255,.2); }
.hdr-lang__dd {
  position:absolute; top:calc(100% + 6px); right:0;
  background:white; border-radius:8px;
  box-shadow:0 12px 40px rgba(0,0,0,.2);
  min-width:150px; padding:.4rem 0;
  border-top:3px solid #c9a84c;
  display:none; z-index:500;
}
.hdr-lang__dd.open { display:block; }

.hdr-lang__dd div:hover { background:#f3ede0; color:#1a3a2a; }
.hdr-lang__dd div span { font-size:.9rem; }

/* MOBILE - only clock + language visible in actions */
@media (max-width: 900px) {
  .hdr-actions .hdr-btn--wa,
  .hdr-actions .hdr-btn--quote,
  .hdr-actions .hdr-btn--cat { display: none !important; }
  .hdr-actions { gap: .4rem; }
}


/* ── LANG DROPDOWN LINKS ── */
.hdr-lang__dd a {
  display:flex; align-items:center; gap:.65rem;
  padding:.55rem 1.1rem; font-size:.75rem; font-weight:600;
  color:#2a2a2a; text-decoration:none; transition:background .15s;
  white-space:nowrap;
}
.hdr-lang__dd a:hover { background:#f3ede0; color:#1a3a2a; }
.hdr-lang__dd a span { font-size:.92rem; }

/* ── MOBILE HEADER HEIGHT FIX ── */
@media (max-width: 900px) {
  :root { --header-h: 62px; }
}

/* ══ BUTTON ATTENTION EFFECTS ══ */

/* GET FREE QUOTE — Pulsing gold glow */
.hdr-btn--quote {
  background: linear-gradient(135deg, #c9a84c, #e8c870) !important;
  color: #0f2318 !important;
  box-shadow: 0 0 0 0 rgba(201,168,76,0.7);
  animation: quote-pulse 2.5s infinite !important;
  position: relative;
  overflow: hidden;
}
.hdr-btn--quote::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-20deg);
  animation: btn-shine 3s infinite;
}
@keyframes quote-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.7); transform: scale(1); }
  50%  { box-shadow: 0 0 0 8px rgba(201,168,76,0); transform: scale(1.03); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); transform: scale(1); }
}
@keyframes btn-shine {
  0%   { left: -60%; }
  100% { left: 130%; }
}

/* WHATSAPP — Green glow bounce */
.hdr-btn--wa {
  background: transparent !important;
  border: 1.5px solid #25d366 !important;
  color: #25d366 !important;
  animation: wa-glow 3s infinite !important;
}
.hdr-btn--wa:hover {
  background: #25d366 !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37,211,102,0.4) !important;
}
@keyframes wa-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
  50%       { box-shadow: 0 0 8px 2px rgba(37,211,102,0.35); }
}

/* DOWNLOAD CATALOGUE — Shake attention */
.hdr-btn--cat {
  animation: cat-shake 5s infinite !important;
}
.hdr-btn--cat:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: white !important;
  transform: translateY(-2px);
}
@keyframes cat-shake {
  0%, 85%, 100% { transform: translateX(0); }
  87%  { transform: translateX(-3px) rotate(-1deg); }
  89%  { transform: translateX(3px) rotate(1deg); }
  91%  { transform: translateX(-2px); }
  93%  { transform: translateX(2px); }
  95%  { transform: translateX(0); }
}

/* TOOLTIP on buttons — tells client what to do */
.hdr-btn--quote::before {
  content: '' !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #2ecc71 !important;
  flex-shrink: 0 !important;
  animation: pdot 2s infinite !important;
}

/* LIVE badge on Quote button */
.hdr-btn--quote .live-badge {
  background: #e74c3c;
  color: #fff;
  font-size: .5rem;
  font-weight: 800;
  padding: .1rem .3rem;
  border-radius: 3px;
  letter-spacing: .06em;
  text-transform: uppercase;
  animation: badge-blink 1.5s infinite;
}
@keyframes badge-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ══ DOWNLOAD ICON BOUNCE ══ */
.hdr-btn--cat .fa-download {
  animation: dl-bounce 1.5s ease infinite;
  display: inline-block;
}
@keyframes dl-bounce {
  0%, 100% { transform: translateY(0); }
  30%       { transform: translateY(-4px); }
  60%       { transform: translateY(2px); }
  80%       { transform: translateY(-2px); }
}
.hdr-btn--cat:hover .fa-download {
  animation: dl-bounce-fast 0.5s ease infinite;
}
@keyframes dl-bounce-fast {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

/* ─────────────────────────────────────────────
   LANGUAGE DONE BADGE — vv-lang-done-badge
   ───────────────────────────────────────────── */
#vv-lang-done-badge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #2ecc71;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(46, 204, 113, 0.4);
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
  letter-spacing: 0.04em;
  font-family: inherit;
}

/* RTL: badge on left side */
[dir="rtl"] #vv-lang-done-badge {
  right: auto;
  left: 24px;
}

/* ═══════════════════════════════════════════════
   MOBILE BOTTOM BAR — FINAL FIX
   ═══════════════════════════════════════════════ */
#mob-lang-bar,
#mob-lang-dd { display: none; }

@media (max-width: 900px) {

  /* Safe area for iPhone notch / Android nav */
  :root {
    --mob-bar-h: 56px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
  }

  /* ── Bar ── */
  #mob-lang-bar {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2147483647; /* max z-index */
    background: #1a3a2a;
    border-top: 2px solid #c9a84c;
    height: calc(var(--mob-bar-h) + var(--safe-bottom));
    padding-bottom: var(--safe-bottom);
    box-shadow: 0 -4px 20px rgba(0,0,0,.4);
    -webkit-transform: translateZ(0); /* force GPU layer */
    transform: translateZ(0);
  }

  /* Each item takes equal space */
  .mob-bar-item {
    flex: 1 1 0 !important;
    min-width: 0;
    height: var(--mob-bar-h);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0 4px;
    -webkit-tap-highlight-color: rgba(201,168,76,.18);
    touch-action: manipulation;
  }
  .mob-bar-item i  { font-size: 1.1rem; line-height: 1; }
  .mob-bar-item span { font-size: .62rem; font-weight: 700;
    letter-spacing: .02em; white-space: nowrap; line-height: 1; }
  .mob-bar-item:active { background: rgba(255,255,255,.08); }

  /* Dividers */
  .mob-bar-vdiv {
    width: 1px; height: 32px;
    background: rgba(255,255,255,.18);
    flex-shrink: 0;
  }

  /* Colors */
  .mob-wa    { color: #25d366; }
  .mob-wa i  { font-size: 1.25rem; }
  .mob-quote { color: #c9a84c; }
  .mob-lang  { color: #fff; flex-direction: row !important;
    gap: 5px !important; }

  /* CSS Flag box */
  .mob-flag-box {
    width: 22px; height: 15px;
    border-radius: 2px; display: inline-block;
    flex-shrink: 0; border: 1px solid rgba(255,255,255,.25);
  }
  .mob-flag-en { background: linear-gradient(#012169 0 35%,#fff 35% 65%,#c8102e 65% 100%); }
  .mob-flag-de { background: linear-gradient(#000 0 33%,#cc0000 33% 66%,#FFCE00 66% 100%); }
  .mob-flag-fr { background: linear-gradient(90deg,#002395 0 33%,#fff 33% 66%,#ED2939 66% 100%); }
  .mob-flag-ar { background: linear-gradient(#00732F 0 33%,#fff 33% 66%,#000 66% 100%); }

  /* ── Dropdown (opens upward) ── */
  #mob-lang-dd {
    display: none;
    position: fixed;
    bottom: calc(var(--mob-bar-h) + var(--safe-bottom) + 2px);
    left: 0; right: 0;
    background: #1a3a2a;
    border-top: 2px solid #c9a84c;
    border-radius: 16px 16px 0 0;
    z-index: 2147483646;
    box-shadow: 0 -8px 30px rgba(0,0,0,.4);
    overflow: hidden;
  }
  #mob-lang-dd.open { display: block; }

  .mob-dd__header {
    padding: .55rem 1.4rem;
    font-size: .6rem; font-weight: 800;
    color: #c9a84c; letter-spacing: .12em;
    text-transform: uppercase;
    background: rgba(0,0,0,.2);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  #mob-lang-dd a {
    display: flex; align-items: center; gap: .75rem;
    padding: .85rem 1.4rem;
    font-size: .9rem; font-weight: 600;
    color: rgba(255,255,255,.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
    min-height: 52px;
    -webkit-tap-highlight-color: rgba(201,168,76,.18);
  }
  #mob-lang-dd a:last-child { border-bottom: none; }
  #mob-lang-dd a:active { background: rgba(201,168,76,.18); color: #c9a84c; }

  .mob-dd-flag {
    width: 26px; height: 18px;
    border-radius: 3px; display: inline-block;
    flex-shrink: 0; border: 1px solid rgba(255,255,255,.2);
  }
  .mob-dd-en { background: linear-gradient(#012169 0 35%,#fff 35% 65%,#c8102e 65% 100%); }
  .mob-dd-de { background: linear-gradient(#000 0 33%,#cc0000 33% 66%,#FFCE00 66% 100%); }
  .mob-dd-fr { background: linear-gradient(90deg,#002395 0 33%,#fff 33% 66%,#ED2939 66% 100%); }
  .mob-dd-ar { background: linear-gradient(#00732F 0 33%,#fff 33% 66%,#000 66% 100%); }

  /* Body padding so content not hidden behind bar */
  body { padding-bottom: calc(var(--mob-bar-h) + var(--safe-bottom)) !important; }

  /* Done badge */
  #vv-lang-done-badge {
    bottom: calc(var(--mob-bar-h) + var(--safe-bottom) + 12px) !important;
  }
}
