/**
 * El Helw — luxury cinematic navbar (dark + gold)
 * Loaded after eh-public-shell.css / elhelw-public-home.css
 */

.eh-lux-nav {
  --eh-lux-gold: #c6a86b;
  --eh-lux-gold-mid: #d4b87a;
  --eh-lux-gold-deep: #8f7345;
  --eh-lux-black: #000000;
  --eh-lux-text: rgba(245, 245, 245, 0.92);
  --eh-lux-text-soft: rgba(245, 245, 245, 0.72);
  --eh-lux-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --eh-lux-ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --eh-lux-duration: 0.5s;
  --eh-lux-blur: 16px;
  top: 0;
  transition:
    background-color 0.55s var(--eh-lux-ease-soft),
    box-shadow 0.55s var(--eh-lux-ease-soft),
    border-color 0.45s ease,
    backdrop-filter 0.55s ease,
    -webkit-backdrop-filter 0.55s ease;
}

/* Transform + collapse bar so layout does not leave an empty sticky band */
.eh-lux-nav__bar {
  transition:
    transform var(--eh-lux-duration) var(--eh-lux-ease),
    max-height 0.55s var(--eh-lux-ease-soft),
    opacity 0.4s var(--eh-lux-ease);
  max-height: 7.5rem;
  overflow: hidden;
}

.eh-lux-nav.eh-shell__header--hidden .eh-lux-nav__bar {
  transform: translate3d(0, -100%, 0);
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.eh-lux-nav.eh-shell__header--hidden {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Transparent: true glass-off over hero */
.eh-lux-nav.eh-shell__header--transparent {
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none;
  border-bottom-color: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.eh-cinematic-home .eh-lux-nav.eh-shell__header--transparent {
  background: transparent !important;
}

/* Solid cinematic bar */
.eh-lux-nav.eh-shell__header--scrolled {
  background-color: rgba(0, 0, 0, 0.88) !important;
  border-bottom-color: rgba(198, 168, 107, 0.14) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(var(--eh-lux-blur)) saturate(1.15);
  -webkit-backdrop-filter: blur(var(--eh-lux-blur)) saturate(1.15);
}

.eh-lux-nav__inner {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  min-height: 4.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  position: relative;
}

@media (min-width: 768px) {
  .eh-lux-nav__inner {
    padding-left: 2rem;
    padding-right: 2rem;
    min-height: 5rem;
  }
}

@media (max-width: 1023px) {
  .eh-lux-nav__inner {
    grid-template-columns: 1fr auto;
  }
}

/* — Brand — */
.eh-lux-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  z-index: 2;
  min-width: 0;
  justify-self: start;
}

.eh-lux-nav__logo-img {
  height: 2.125rem;
  width: auto;
  max-width: 10.5rem;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0;
  animation: ehLuxNavLogoIn 1.1s var(--eh-lux-ease) 0.15s forwards;
}

@media (min-width: 768px) {
  .eh-lux-nav__logo-img {
    height: 2.375rem;
    max-width: 11.5rem;
  }
}

@media (max-width: 1023px) {
  .eh-lux-nav__logo-img {
    height: 2.35rem;
    max-width: 12rem;
  }
}

@keyframes ehLuxNavLogoIn {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translate3d(0, 6px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

.eh-lux-nav__brand-text {
  display: none;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.05;
}

@media (min-width: 1100px) {
  .eh-lux-nav__brand-text {
    display: flex;
  }
}

.eh-lux-nav__brand-name {
  font-family: "Playfair Display","Tajawal", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--eh-lux-text);
  transition: color 0.35s var(--eh-lux-ease);
}

.eh-lux-nav__brand-tag {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--eh-lux-gold);
  opacity: 0.9;
}

.eh-lux-nav__brand:hover .eh-lux-nav__brand-name {
  color: #fff;
}

/* — Desktop nav — */
.eh-lux-nav .eh-shell__nav-desktop {
  position: static;
  transform: none;
  left: auto;
  justify-self: center;
  gap: clamp(1.25rem, 2vw, 2.25rem);
  padding: 0 0.5rem;
}

[dir="ltr"] .eh-lux-nav__link {
  font-family: "Outfit", system-ui, sans-serif;
}

.eh-lux-nav__link {
  position: relative;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.45rem 0;
  color: var(--eh-lux-text-soft);
  transition:
    color 0.4s var(--eh-lux-ease),
    transform 0.5s var(--eh-lux-ease);
  will-change: transform;
}

.eh-shell__header--transparent .eh-lux-nav__link {
  color: rgba(255, 255, 255, 0.82);
}

.eh-lux-nav__link:hover {
  color: #fff;
}

.eh-lux-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--eh-lux-gold) 20%,
    var(--eh-lux-gold) 80%,
    transparent
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s var(--eh-lux-ease);
}

[dir="ltr"] .eh-lux-nav__link::after {
  transform-origin: left center;
}

[dir="rtl"] .eh-lux-nav__link::after {
  transform-origin: right center;
}

.eh-lux-nav__link:hover::after,
.eh-lux-nav__link.is-active::after {
  transform: scaleX(1);
}

.eh-lux-nav__link.is-active {
  color: var(--eh-lux-gold);
}

/* — Actions — */
.eh-lux-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  z-index: 2;
  justify-self: end;
}

@media (min-width: 1024px) {
  .eh-lux-nav__actions {
    gap: 0.75rem;
  }
}

.eh-lux-nav__cta {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0a0a0a;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(
    135deg,
    var(--eh-lux-gold-mid) 0%,
    var(--eh-lux-gold) 42%,
    var(--eh-lux-gold-deep) 160%
  );
  box-shadow:
    0 0 0 1px rgba(198, 168, 107, 0.35),
    0 4px 24px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition:
    transform 0.45s var(--eh-lux-ease),
    box-shadow 0.5s var(--eh-lux-ease),
    filter 0.45s ease;
}

@media (min-width: 1024px) {
  .eh-lux-nav__cta {
    display: inline-flex;
  }
}

.eh-lux-nav__cta::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.35) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.eh-lux-nav__cta:hover,
.eh-lux-nav__cta:focus-visible {
  color: #0a0a0a;
  transform: scale(1.05);
  box-shadow:
    0 0 0 1px rgba(212, 184, 122, 0.55),
    0 0 32px rgba(198, 168, 107, 0.45),
    0 12px 40px rgba(0, 0, 0, 0.35);
  filter: brightness(1.04);
}

.eh-lux-nav__cta:hover::before,
.eh-lux-nav__cta:focus-visible::before {
  opacity: 0.4;
}

.eh-lux-nav__cta:active {
  color: #0a0a0a;
  transform: scale(1.02);
  transition-duration: 0.12s;
}

.eh-lux-nav__mobile-cta-btn:active {
  color: #0a0a0a;
}

/* Shell icon buttons: align with luxury chrome */
.eh-lux-nav .eh-shell__icon-btn {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  transition:
    background-color 0.35s var(--eh-lux-ease),
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.45s ease;
}

.eh-lux-nav .eh-shell__icon-btn:hover {
  background-color: rgba(198, 168, 107, 0.12);
  border-color: rgba(198, 168, 107, 0.35);
  box-shadow: 0 0 20px rgba(198, 168, 107, 0.15);
}

.eh-lux-nav .eh-shell__subtle-link {
  color: rgba(255, 255, 255, 0.78);
}

.eh-lux-nav .eh-shell__subtle-link:hover {
  color: var(--eh-lux-gold);
}

/* Hide legacy shell CTAs (replaced by eh-lux-nav__cta) */
.eh-lux-nav .eh-shell__cta {
  display: none !important;
}

/* — Hamburger — */
.eh-lux-nav__menu-toggle {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 0.5rem;
}

.eh-lux-nav__burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 1.25rem;
  pointer-events: none;
}

.eh-lux-nav__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.45s var(--eh-lux-ease),
    opacity 0.35s ease,
    translate 0.45s var(--eh-lux-ease);
  transform-origin: center;
}

.eh-lux-nav__menu-toggle[aria-expanded="true"] .eh-lux-nav__burger-line:nth-child(1) {
  translate: 0 7px;
  transform: rotate(45deg);
}

.eh-lux-nav__menu-toggle[aria-expanded="true"] .eh-lux-nav__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.eh-lux-nav__menu-toggle[aria-expanded="true"] .eh-lux-nav__burger-line:nth-child(3) {
  translate: 0 -7px;
  transform: rotate(-45deg);
}

@media (min-width: 1024px) {
  .eh-lux-nav__menu-toggle {
    display: none;
  }
}

/* — Fullscreen mobile menu — */
.eh-lux-nav__backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.5s var(--eh-lux-ease);
}

#publicMenu.eh-lux-nav__mobile-panel {
  inset: 0;
  width: 100%;
  max-width: none;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #14120f 0%, #050505 45%, #000 100%);
  border-left: none;
  transform: translate3d(0, 100%, 0);
  transition:
    opacity 0.5s var(--eh-lux-ease),
    transform 0.65s var(--eh-lux-ease-soft);
}

[dir="rtl"] #publicMenu.eh-lux-nav__mobile-panel {
  transform: translate3d(0, 100%, 0);
}

#publicMenu.eh-lux-nav__mobile-panel.eh-shell__drawer--open {
  transform: translate3d(0, 0, 0);
}

.eh-lux-nav__mobile-panel-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  min-height: 0;
  padding-top: calc(4.25rem + env(safe-area-inset-top, 0px));
  padding-inline: clamp(1rem, 4vw, 1.75rem);
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.eh-lux-nav__mobile-center {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 0;
  width: 100%;
}

.eh-lux-nav__mobile-bottom {
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
  padding-top: clamp(0.5rem, 2vh, 1.25rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.eh-lux-nav__mobile-kicker {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--eh-lux-gold);
  margin-bottom: clamp(1rem, 4vh, 2rem);
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 0.55s var(--eh-lux-ease),
    transform 0.65s var(--eh-lux-ease-soft);
}

[dir="rtl"] .eh-lux-nav__mobile-kicker {
  font-family: "Tajawal", "IBM Plex Sans Arabic", system-ui, sans-serif;
  letter-spacing: 0.2em;
}

#publicMenu.eh-shell__drawer--open .eh-lux-nav__mobile-kicker {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.08s;
}

.eh-lux-nav__drawer-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.05rem;
  width: 100%;
  text-align: center;
}

.eh-lux-nav__drawer-link {
  display: block;
  padding: clamp(0.55rem, 1.8vh, 0.95rem) 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.2rem, 4.5vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.94);
  border-radius: 0.5rem;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.5s var(--eh-lux-ease),
    transform 0.6s var(--eh-lux-ease-soft),
    color 0.35s ease,
    background-color 0.35s ease;
}

[dir="rtl"] .eh-lux-nav__drawer-link {
  font-family: "Tajawal", "IBM Plex Sans Arabic", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

#publicMenu:not(.eh-shell__drawer--open) .eh-lux-nav__drawer-link,
#publicMenu:not(.eh-shell__drawer--open) .eh-lux-nav__mobile-kicker,
#publicMenu:not(.eh-shell__drawer--open) .eh-lux-nav__mobile-cta,
#publicMenu:not(.eh-shell__drawer--open) .eh-lux-nav__mobile-meta > * {
  transition-duration: 0s !important;
  transition-delay: 0s !important;
}

#publicMenu.eh-shell__drawer--open .eh-lux-nav__drawer-link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#publicMenu.eh-shell__drawer--open .eh-lux-nav__drawer-link:nth-child(1) {
  transition-delay: 0.12s;
}
#publicMenu.eh-shell__drawer--open .eh-lux-nav__drawer-link:nth-child(2) {
  transition-delay: 0.17s;
}
#publicMenu.eh-shell__drawer--open .eh-lux-nav__drawer-link:nth-child(3) {
  transition-delay: 0.22s;
}
#publicMenu.eh-shell__drawer--open .eh-lux-nav__drawer-link:nth-child(4) {
  transition-delay: 0.27s;
}
#publicMenu.eh-shell__drawer--open .eh-lux-nav__drawer-link:nth-child(5) {
  transition-delay: 0.32s;
}
#publicMenu.eh-shell__drawer--open .eh-lux-nav__drawer-link:nth-child(6) {
  transition-delay: 0.37s;
}

.eh-lux-nav__drawer-link:hover {
  color: var(--eh-lux-gold);
  background-color: rgba(198, 168, 107, 0.06);
}

.eh-lux-nav__mobile-cta {
  margin-top: 0;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.5s var(--eh-lux-ease),
    transform 0.6s var(--eh-lux-ease-soft);
}

#publicMenu.eh-shell__drawer--open .eh-lux-nav__mobile-cta {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.44s;
}

.eh-lux-nav__mobile-cta-btn {
  width: 100%;
  max-width: 22rem;
  padding: 1rem 1.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: #0a0a0a;
  border-radius: 9999px;
  background: linear-gradient(
    135deg,
    var(--eh-lux-gold-mid) 0%,
    var(--eh-lux-gold) 45%,
    var(--eh-lux-gold-deep) 140%
  );
  box-shadow:
    0 0 0 1px rgba(198, 168, 107, 0.4),
    0 8px 32px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.45s var(--eh-lux-ease),
    box-shadow 0.5s var(--eh-lux-ease);
}

.eh-lux-nav__mobile-cta-btn:hover,
.eh-lux-nav__mobile-cta-btn:focus-visible {
  color: #0a0a0a;
  transform: scale(1.03);
  box-shadow:
    0 0 28px rgba(198, 168, 107, 0.4),
    0 12px 36px rgba(0, 0, 0, 0.4);
}

.eh-lux-nav__mobile-meta {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 22rem;
  margin-inline: auto;
}

.eh-lux-nav__mobile-meta > * {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.45s var(--eh-lux-ease),
    transform 0.55s var(--eh-lux-ease-soft);
}

#publicMenu.eh-shell__drawer--open .eh-lux-nav__mobile-meta > *:nth-child(1) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.5s;
}
#publicMenu.eh-shell__drawer--open .eh-lux-nav__mobile-meta > *:nth-child(2) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.55s;
}
#publicMenu.eh-shell__drawer--open .eh-lux-nav__mobile-meta > *:nth-child(3) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.6s;
}

.eh-lux-nav__mobile-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: max(0.625rem, env(safe-area-inset-top, 0px)) clamp(1rem, 4vw, 1.5rem) 0.875rem;
  border-bottom: 1px solid rgba(198, 168, 107, 0.12);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.eh-lux-nav__mobile-top-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.eh-lux-nav__mobile-top-logo {
  display: block;
  height: clamp(1.75rem, 5vw, 2.35rem);
  width: auto;
  max-width: min(13.5rem, 58vw);
  object-fit: contain;
  object-position: center;
}

[dir="rtl"] .eh-lux-nav__mobile-top-logo {
  object-position: right center;
}

[dir="ltr"] .eh-lux-nav__mobile-top-logo {
  object-position: left center;
}

.eh-lux-nav__mobile-close {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  border-color: rgba(198, 168, 107, 0.28);
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.04);
}

.eh-lux-nav__mobile-close-icon {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.eh-lux-nav__drawer-panel {
  padding: 0.9rem 1rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(198, 168, 107, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.eh-lux-nav__drawer-panel button {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.eh-lux-nav__mobile-lang {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(198, 168, 107, 0.2);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.eh-lux-nav__mobile-lang:hover {
  background-color: rgba(198, 168, 107, 0.08);
  border-color: rgba(198, 168, 107, 0.35);
}

.eh-lux-nav__mobile-login {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 0.35rem;
  transition: color 0.3s ease;
}

.eh-lux-nav__mobile-login:hover {
  color: var(--eh-lux-gold);
}

@media (max-height: 640px) {
  .eh-lux-nav__mobile-kicker {
    margin-bottom: 0.65rem;
  }

  .eh-lux-nav__drawer-link {
    padding: 0.45rem 0.65rem;
    font-size: clamp(1.05rem, 4vw, 1.45rem);
  }

  .eh-lux-nav__mobile-bottom {
    padding-top: 0.35rem;
  }

  .eh-lux-nav__mobile-meta {
    margin-top: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eh-lux-nav,
  .eh-lux-nav__cta,
  .eh-lux-nav__link,
  .eh-lux-nav__drawer-link,
  .eh-lux-nav__mobile-kicker,
  .eh-lux-nav__mobile-cta,
  .eh-lux-nav__burger-line,
  #publicMenu.eh-lux-nav__mobile-panel,
  .eh-lux-nav__backdrop {
    transition-duration: 0.01ms !important;
    animation: none !important;
  }

  .eh-lux-nav__logo-img {
    opacity: 1;
    animation: none;
    filter: none;
    transform: none;
  }

  #publicMenu.eh-lux-nav__mobile-panel {
    transform: none !important;
  }

  .eh-lux-nav.eh-shell__header--hidden .eh-lux-nav__bar {
    transform: none;
    max-height: none;
    opacity: 1;
    pointer-events: auto;
  }

  .eh-lux-nav.eh-shell__header--hidden {
    background: inherit;
  }
}
