::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background: transparent;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #fff;
}

html {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.92) transparent;
}

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

[hidden] {
  display: none !important;
}

#body {
  width: auto;
  min-width: 100%;
  min-height: calc(100 * var(--vh-unit));
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: transparent;
  font-family: var(--font-family);
}

/* ====== NAV THEME ====== */
:root {
  --vh-unit: 1vh;
  --nav-bg: #0b0c10; /* negru ușor “soft” */
  --nav-bg-2: #10121a; /* dropdown background */
  --nav-text: #ffffff;
  --nav-border: rgba(255, 255, 255, 0.18);
  --nav-border-strong: rgba(255, 255, 255, 0.28);
  --nav-focus: rgba(255, 255, 255, 0.65);
  --nav-height: 64px;
  --hero-top-gap: clamp(1rem, calc(5 * var(--vh-unit)), 3rem);
  --hero-logo-height: clamp(180px, calc(28 * var(--vh-unit)), 300px);
  --hero-logo-overlap: clamp(90px, calc(14 * var(--vh-unit)), 150px);
  --hero-bottom-gap: calc(var(--hero-top-gap) + var(--hero-logo-overlap));
  --services-title-offset: calc(
    var(--hero-logo-height) - var(--hero-logo-overlap) +
      clamp(1rem, calc(3 * var(--vh-unit)), 2rem)
  );
  --theme-a: 249, 115, 22;
  --theme-b: 245, 158, 11;
  --theme-c: 6, 182, 212;
  --theme-d: 249, 115, 22;
  --theme-switch-rgb: 245, 158, 11;
  --theme-highlight-rgb: 245, 158, 11;
  --content-highlight-rgb: 245, 158, 11;
  --font-family: Georgia, "Times New Roman", Times, serif;
  --mobile-drawer-bg-solid: #2dd4bf;
  --mobile-drawer-bg:
    radial-gradient(
      130% 130% at 10% 8%,
      rgba(249, 115, 22, 0.46),
      transparent 64%
    ),
    radial-gradient(
      130% 120% at 86% 14%,
      rgba(245, 158, 11, 0.34),
      transparent 66%
    ),
    radial-gradient(
      145% 150% at 78% 88%,
      rgba(6, 182, 212, 0.24),
      transparent 70%
    ),
    rgba(72, 33, 6, 0.78);
  --mobile-drawer-text: #fff7e8;
  --mobile-drawer-border: rgba(255, 216, 164, 0.42);
  --mobile-drawer-divider: rgba(255, 247, 232, 0.56);
  --mobile-drawer-divider-soft: rgba(255, 247, 232, 0.42);
  --mobile-drawer-hover: rgba(255, 214, 150, 0.22);
  --mobile-drawer-soft-bg: rgba(255, 214, 150, 0.16);
  --mobile-drawer-shadow: 0 20px 38px rgba(48, 22, 4, 0.46);
  --mobile-drawer-overlay: rgba(62, 28, 4, 0.28);
  --mobile-drawer-logo-filter: brightness(0) invert(1);
  --mobile-drawer-glass-rim: rgba(255, 228, 182, 0.44);
  --mobile-drawer-glass-sheen: rgba(255, 220, 154, 0.3);
  --mobile-drawer-glass-sheen-soft: rgba(255, 170, 86, 0.12);
  --mobile-toggle-open-bg: rgba(255, 214, 150, 0.2);
  --mobile-toggle-open-border: rgba(255, 214, 150, 0.52);
  --mobile-toggle-open-text: #fff7e8;
}

@supports (height: 1svh) {
  :root {
    --vh-unit: 1svh;
  }
}

:root[data-theme="classic"] {
  --theme-switch-rgb: 156, 92, 255;
  --theme-highlight-rgb: 156, 92, 255;
  --content-highlight-rgb: 156, 92, 255;
  --classic-accent-rgb: 156, 92, 255;
  --classic-accent-strong-rgb: 182, 132, 255;
  --classic-accent-soft: rgba(156, 92, 255, 0.14);
  --classic-accent-soft-hover: rgba(156, 92, 255, 0.24);
  --classic-accent-border: rgba(156, 92, 255, 0.46);
  --classic-panel-bg: rgba(11, 22, 39, 0.78);
  --classic-panel-border: rgba(138, 168, 205, 0.34);
  --classic-panel-shadow:
    inset 0 0 16px rgba(255, 255, 255, 0.08), 0 14px 30px rgba(0, 0, 0, 0.32);
  --classic-panel-hover-bg: rgba(11, 22, 39, 0.88);
  --classic-panel-hover-border: rgba(156, 92, 255, 0.42);
  --classic-button-text: #f4f7ff;
  --mobile-drawer-bg-solid: #000000;
  --mobile-drawer-bg:
    radial-gradient(
      130% 130% at 12% 8%,
      rgba(28, 28, 28, 0.54),
      transparent 64%
    ),
    radial-gradient(
      130% 120% at 88% 18%,
      rgba(20, 20, 20, 0.42),
      transparent 66%
    ),
    radial-gradient(
      145% 150% at 78% 88%,
      rgba(40, 40, 40, 0.3),
      transparent 70%
    ),
    rgba(8, 8, 8, 0.95);
  --mobile-drawer-text: #ffffff;
  --mobile-drawer-border: rgba(255, 255, 255, 0.2);
  --mobile-drawer-divider: rgba(255, 255, 255, 0.34);
  --mobile-drawer-divider-soft: rgba(255, 255, 255, 0.3);
  --mobile-drawer-hover: rgba(255, 255, 255, 0.16);
  --mobile-drawer-soft-bg: rgba(255, 255, 255, 0.1);
  --mobile-drawer-shadow: 0 20px 38px rgba(0, 0, 0, 0.52);
  --mobile-drawer-overlay: rgba(0, 0, 0, 0.42);
  --mobile-drawer-logo-filter: brightness(0) invert(1);
  --mobile-drawer-glass-rim: rgba(255, 255, 255, 0.26);
  --mobile-drawer-glass-sheen: rgba(255, 255, 255, 0.18);
  --mobile-drawer-glass-sheen-soft: rgba(255, 255, 255, 0.05);
  --mobile-toggle-open-bg: rgba(255, 255, 255, 0.08);
  --mobile-toggle-open-border: rgba(255, 255, 255, 0.54);
  --mobile-toggle-open-text: #ffffff;
}

:root[data-theme="theme-1"] {
  --theme-a: 45, 212, 191;
  --theme-b: 45, 212, 191;
  --theme-c: 16, 185, 129;
  --theme-d: 196, 120, 255;
  --theme-switch-rgb: 45, 212, 191;
  --theme-highlight-rgb: 0, 0, 0;
  --content-highlight-rgb: 0, 0, 0;
  --mobile-drawer-bg-solid: #2dd4bf;
  --mobile-drawer-bg:
    radial-gradient(
      130% 130% at 12% 8%,
      rgba(var(--theme-a), 0.46),
      transparent 64%
    ),
    radial-gradient(
      130% 120% at 86% 14%,
      rgba(var(--theme-c), 0.34),
      transparent 70%
    ),
    rgba(8, 28, 32, 0.78);
  --mobile-drawer-text: #d4fdf9;
  --mobile-drawer-border: rgba(var(--theme-a), 0.42);
  --mobile-drawer-divider: rgba(212, 253, 249, 0.54);
  --mobile-drawer-divider-soft: rgba(212, 253, 249, 0.4);
  --mobile-drawer-hover: rgba(var(--theme-a), 0.22);
  --mobile-drawer-soft-bg: rgba(var(--theme-a), 0.16);
  --mobile-drawer-shadow: 0 20px 38px rgba(0, 0, 0, 0.46);
  --mobile-drawer-overlay: rgba(8, 28, 32, 0.28);
  --mobile-drawer-logo-filter: brightness(0) invert(1);
  --mobile-drawer-glass-rim: rgba(var(--theme-a), 0.42);
  --mobile-drawer-glass-sheen: rgba(var(--theme-c), 0.3);
  --mobile-drawer-glass-sheen-soft: rgba(var(--theme-a), 0.12);
  --mobile-toggle-open-bg: rgba(var(--theme-a), 0.2);
  --mobile-toggle-open-border: rgba(var(--theme-a), 0.52);
  --mobile-toggle-open-text: #d4fdf9;
}

:root[data-theme="candy"] {
  --theme-a: 130, 24, 67;
  --theme-b: 244, 114, 182;
  --theme-c: 251, 146, 60;
  --theme-d: 217, 70, 239;
  --theme-switch-rgb: 244, 114, 182;
  --theme-highlight-rgb: 0, 0, 0;
  --content-highlight-rgb: 0, 0, 0;
  --mobile-drawer-bg-solid: #f472b6;
  --mobile-drawer-bg:
    radial-gradient(
      130% 130% at 12% 8%,
      rgba(var(--theme-b), 0.46),
      transparent 64%
    ),
    radial-gradient(
      130% 120% at 86% 14%,
      rgba(var(--theme-c), 0.34),
      transparent 66%
    ),
    rgba(33, 10, 22, 0.78);
  --mobile-drawer-text: #fde8f2;
  --mobile-drawer-border: rgba(var(--theme-b), 0.42);
  --mobile-drawer-divider: rgba(253, 232, 242, 0.58);
  --mobile-drawer-divider-soft: rgba(253, 232, 242, 0.44);
  --mobile-drawer-hover: rgba(var(--theme-b), 0.22);
  --mobile-drawer-soft-bg: rgba(var(--theme-b), 0.16);
  --mobile-drawer-shadow: 0 20px 38px rgba(0, 0, 0, 0.46);
  --mobile-drawer-overlay: rgba(33, 10, 22, 0.28);
  --mobile-drawer-logo-filter: brightness(0) invert(1);
  --mobile-drawer-glass-rim: rgba(var(--theme-b), 0.42);
  --mobile-drawer-glass-sheen: rgba(var(--theme-c), 0.3);
  --mobile-drawer-glass-sheen-soft: rgba(var(--theme-b), 0.12);
  --mobile-toggle-open-bg: rgba(var(--theme-b), 0.2);
  --mobile-toggle-open-border: rgba(var(--theme-b), 0.52);
  --mobile-toggle-open-text: #fde8f2;
}

:root[data-theme="light"] {
  --nav-bg: #f7f8fb;
  --nav-bg-2: #ffffff;
  --nav-text: #111827;
  --nav-border: rgba(17, 24, 39, 0.18);
  --nav-border-strong: rgba(17, 24, 39, 0.3);
  --nav-focus: rgba(17, 24, 39, 0.48);
  --theme-a: 252, 252, 252;
  --theme-b: 240, 242, 245;
  --theme-c: 255, 255, 255;
  --theme-d: 226, 229, 234;
  --theme-switch-rgb: 37, 170, 190;
  --theme-highlight-rgb: 37, 170, 190;
  --content-highlight-rgb: 37, 170, 190;
  --mobile-drawer-bg-solid: #fcfcfc;
  --mobile-drawer-bg:
    radial-gradient(
      135% 125% at 12% 10%,
      rgba(252, 252, 252, 0.54),
      transparent 64%
    ),
    radial-gradient(
      130% 120% at 88% 18%,
      rgba(240, 242, 245, 0.42),
      transparent 66%
    ),
    radial-gradient(
      145% 150% at 78% 88%,
      rgba(255, 255, 255, 0.3),
      transparent 70%
    ),
    rgba(247, 248, 251, 0.95);
  --mobile-drawer-text: #111827;
  --mobile-drawer-border: rgba(17, 24, 39, 0.2);
  --mobile-drawer-divider: rgba(17, 24, 39, 0.26);
  --mobile-drawer-divider-soft: rgba(17, 24, 39, 0.22);
  --mobile-drawer-hover: rgba(17, 24, 39, 0.08);
  --mobile-drawer-soft-bg: rgba(17, 24, 39, 0.06);
  --mobile-drawer-shadow: 18px 0 34px rgba(15, 23, 42, 0.2);
  --mobile-drawer-overlay: rgba(248, 250, 252, 0.32);
  --mobile-drawer-logo-filter: brightness(0) saturate(100%);
  --mobile-drawer-glass-rim: rgba(255, 255, 255, 0.68);
  --mobile-drawer-glass-sheen: rgba(240, 242, 245, 0.56);
  --mobile-drawer-glass-sheen-soft: rgba(252, 252, 252, 0.16);
  --mobile-toggle-open-bg: rgba(255, 255, 255, 0.92);
  --mobile-toggle-open-border: rgba(17, 24, 39, 0.26);
  --mobile-toggle-open-text: #111827;
}

:root[data-theme="theme-3"] {
  --theme-a: 249, 115, 22;
  --theme-b: 245, 158, 11;
  --theme-c: 6, 182, 212;
  --theme-d: 249, 115, 22;
  --theme-switch-rgb: 245, 158, 11;
  --theme-highlight-rgb: 245, 158, 11;
  --content-highlight-rgb: 245, 158, 11;
  --mobile-drawer-bg-solid: #f97316;
  --mobile-drawer-bg:
    radial-gradient(
      130% 130% at 10% 8%,
      rgba(249, 115, 22, 0.54),
      transparent 64%
    ),
    radial-gradient(
      130% 120% at 86% 14%,
      rgba(245, 158, 11, 0.42),
      transparent 66%
    ),
    radial-gradient(
      145% 150% at 78% 88%,
      rgba(6, 182, 212, 0.3),
      transparent 70%
    ),
    rgba(72, 33, 6, 0.95);
  --mobile-drawer-text: #fff7e8;
  --mobile-drawer-border: rgba(249, 115, 22, 0.42);
  --mobile-drawer-divider: rgba(255, 247, 232, 0.58);
  --mobile-drawer-divider-soft: rgba(255, 247, 232, 0.44);
  --mobile-drawer-hover: rgba(245, 158, 11, 0.22);
  --mobile-drawer-soft-bg: rgba(245, 158, 11, 0.16);
  --mobile-drawer-shadow: 0 20px 38px rgba(48, 22, 4, 0.46);
  --mobile-drawer-overlay: rgba(72, 33, 6, 0.42);
  --mobile-drawer-logo-filter: brightness(0) invert(1);
  --mobile-drawer-glass-rim: rgba(249, 115, 22, 0.44);
  --mobile-drawer-glass-sheen: rgba(245, 158, 11, 0.3);
  --mobile-drawer-glass-sheen-soft: rgba(249, 115, 22, 0.12);
  --mobile-toggle-open-bg: rgba(245, 158, 11, 0.2);
  --mobile-toggle-open-border: rgba(245, 158, 11, 0.52);
  --mobile-toggle-open-text: #fff7e8;
}

:root[data-theme="dark"] {
  --theme-a: 0, 0, 0;
  --theme-b: 0, 0, 0;
  --theme-c: 0, 0, 0;
  --theme-d: 0, 0, 0;
  --theme-switch-rgb: 28, 28, 28;
  --theme-highlight-rgb: 37, 170, 190;
  --content-highlight-rgb: 37, 170, 190;
  --mobile-drawer-bg-solid: #000000;
  --mobile-drawer-bg:
    radial-gradient(
      130% 130% at 12% 8%,
      rgba(28, 28, 28, 0.54),
      transparent 64%
    ),
    radial-gradient(
      130% 120% at 88% 18%,
      rgba(20, 20, 20, 0.42),
      transparent 66%
    ),
    radial-gradient(
      145% 150% at 78% 88%,
      rgba(40, 40, 40, 0.3),
      transparent 70%
    ),
    rgba(8, 8, 8, 0.95);
  --mobile-drawer-text: #ffffff;
  --mobile-drawer-border: rgba(255, 255, 255, 0.2);
  --mobile-drawer-divider: rgba(255, 255, 255, 0.34);
  --mobile-drawer-divider-soft: rgba(255, 255, 255, 0.3);
  --mobile-drawer-hover: rgba(255, 255, 255, 0.16);
  --mobile-drawer-soft-bg: rgba(255, 255, 255, 0.1);
  --mobile-drawer-shadow: 0 20px 38px rgba(0, 0, 0, 0.52);
  --mobile-drawer-overlay: rgba(0, 0, 0, 0.42);
  --mobile-drawer-logo-filter: brightness(0) invert(1);
  --mobile-drawer-glass-rim: rgba(255, 255, 255, 0.26);
  --mobile-drawer-glass-sheen: rgba(255, 255, 255, 0.18);
  --mobile-drawer-glass-sheen-soft: rgba(255, 255, 255, 0.05);
  --mobile-toggle-open-bg: rgba(255, 255, 255, 0.08);
  --mobile-toggle-open-border: rgba(255, 255, 255, 0.54);
  --mobile-toggle-open-text: #ffffff;
}

:root[data-theme="ocean-marin"] {
  --ocean-accent: #ffd37f;
  --ocean-accent-strong: #ffe2a5;
  --ocean-accent-soft: rgba(255, 211, 127, 0.14);
  --ocean-accent-border: rgba(255, 211, 127, 0.4);
  --ocean-accent-soft-hover: rgba(255, 211, 127, 0.22);
  --ocean-text: #f4f7ff;
  --ocean-button-text: #2b220f;
  --nav-bg: #0f2345;
  --nav-bg-2: #1a3158;
  --nav-border: rgba(138, 168, 205, 0.3);
  --nav-border-strong: rgba(138, 168, 205, 0.42);
  --nav-focus: rgba(113, 177, 255, 0.72);
  --theme-a: 12, 36, 68;
  --theme-b: 25, 58, 106;
  --theme-c: 66, 186, 221;
  --theme-d: 156, 118, 244;
  --theme-switch-rgb: 113, 177, 255;
  --theme-highlight-rgb: 255, 211, 127;
  --content-highlight-rgb: 255, 211, 127;
  --mobile-drawer-bg-solid: #0c2444;
  --mobile-drawer-bg:
    radial-gradient(
      130% 130% at 12% 8%,
      rgba(12, 36, 68, 0.54),
      transparent 62%
    ),
    radial-gradient(
      130% 120% at 88% 18%,
      rgba(25, 58, 106, 0.42),
      transparent 64%
    ),
    radial-gradient(
      145% 150% at 78% 88%,
      rgba(66, 186, 221, 0.3),
      transparent 70%
    ),
    rgba(12, 20, 35, 0.95);
  --mobile-drawer-text: #f4f7ff;
  --mobile-drawer-border: rgba(66, 186, 221, 0.34);
  --mobile-drawer-divider: rgba(244, 247, 255, 0.52);
  --mobile-drawer-divider-soft: rgba(244, 247, 255, 0.4);
  --mobile-drawer-hover: rgba(66, 186, 221, 0.14);
  --mobile-drawer-soft-bg: rgba(66, 186, 221, 0.1);
  --mobile-drawer-shadow: 0 20px 38px rgba(0, 0, 0, 0.5);
  --mobile-drawer-overlay: rgba(12, 20, 35, 0.42);
  --mobile-drawer-logo-filter: brightness(0) invert(1);
  --mobile-drawer-glass-rim: rgba(66, 186, 221, 0.42);
  --mobile-drawer-glass-sheen: rgba(25, 58, 106, 0.3);
  --mobile-drawer-glass-sheen-soft: rgba(66, 186, 221, 0.1);
  --mobile-toggle-open-bg: rgba(66, 186, 221, 0.16);
  --mobile-toggle-open-border: rgba(66, 186, 221, 0.52);
  --mobile-toggle-open-text: #f4f7ff;
}

:root[data-font="serif"] {
  --font-family: Georgia, "Times New Roman", Times, serif;
}

:root[data-font="sans"] {
  --font-family: "Helvetica Neue", Arial, sans-serif;
}

:root[data-font="modern"] {
  --font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
}

:root[data-font="elegant"] {
  --font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

:root[data-font="display"] {
  --font-family:
    "Copperplate", "Copperplate Gothic Light", "Didot", "Bodoni 72", serif;
}

:root[data-font="mono"] {
  --font-family: "Courier New", Courier, monospace;
}

:root[data-font="inter"] {
  --font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

:root[data-font="roboto"] {
  --font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

:root[data-font="open-sans"] {
  --font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
}

:root[data-font="montserrat"] {
  --font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

:root[data-font="poppins"] {
  --font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

:root[data-font="lato"] {
  --font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
}

:root[data-font="nunito"] {
  --font-family: "Nunito", "Helvetica Neue", Arial, sans-serif;
}

:root[data-font="playfair"] {
  --font-family: "Playfair Display", Georgia, serif;
}

:root[data-font="merriweather"] {
  --font-family: "Merriweather", Georgia, serif;
}

:root[data-font="big-caslon"] {
  --font-family:
    "Big Caslon", "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
}

/* Full width bar */
.site-nav {
  width: 100%;
  background: transparent;
  transition:
    background 350ms ease,
    border-color 350ms ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      120% 140% at 10% 0%,
      rgba(255, 255, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      140% 120% at 90% 20%,
      rgba(255, 255, 255, 0.12),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.06);
  border-bottom: none;
  backdrop-filter: blur(4px) saturate(130%);
  -webkit-backdrop-filter: blur(4px) saturate(130%);
  transition:
    background 350ms ease,
    border-color 350ms ease;
}

:root[data-theme="light"] .site-nav::before {
  background:
    radial-gradient(
      120% 140% at 10% 0%,
      rgba(255, 255, 255, 0.85),
      transparent 58%
    ),
    radial-gradient(
      140% 120% at 90% 20%,
      rgba(148, 163, 184, 0.14),
      transparent 62%
    ),
    rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(17, 24, 39, 0.14);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}

:root[data-theme="light"] .nav-login-link.is-authenticated {
  background: rgba(17, 24, 39, 0.12);
}

:root[data-theme="dark"] .site-nav::before {
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

:root[data-theme="ocean-marin"] .site-nav::before {
  background:
    radial-gradient(
      130% 140% at 12% 8%,
      rgba(66, 186, 221, 0.24),
      transparent 62%
    ),
    radial-gradient(
      130% 120% at 88% 18%,
      rgba(156, 118, 244, 0.2),
      transparent 64%
    ),
    rgba(12, 28, 50, 0.82);
  border-bottom: 1px solid rgba(138, 168, 205, 0.28);
  backdrop-filter: blur(10px) saturate(125%);
  -webkit-backdrop-filter: blur(10px) saturate(125%);
}

:root[data-theme="dark"] .nav-inner > .brand,
:root[data-theme="dark"] .nav-inner .nav-sublist > .nav-item > .nav-link,
:root[data-theme="dark"] .nav-inner .dropdown-toggle,
:root[data-theme="dark"] .nav-inner .nav-cta,
:root[data-theme="dark"] .nav-inner .brand-sub,
:root[data-theme="dark"] .nav-toggle,
:root[data-theme="dark"] .nav-quick-home,
:root[data-theme="dark"] .nav-quick-contact,
:root[data-theme="dark"] .nav-quick-settings,
:root[data-theme="dark"] .dropdown-link {
  color: #fff !important;
}

:root[data-theme="dark"] #body {
  color: #fff;
}

:root[data-theme="ocean-marin"] .nav-inner > .brand,
:root[data-theme="ocean-marin"] .nav-inner .nav-sublist > .nav-item > .nav-link,
:root[data-theme="ocean-marin"] .nav-inner .dropdown-toggle,
:root[data-theme="ocean-marin"] .nav-inner .nav-cta,
:root[data-theme="ocean-marin"] .nav-inner .brand-sub,
:root[data-theme="ocean-marin"] .nav-toggle,
:root[data-theme="ocean-marin"] .nav-quick-home,
:root[data-theme="ocean-marin"] .nav-quick-contact,
:root[data-theme="ocean-marin"] .nav-quick-settings,
:root[data-theme="ocean-marin"] .dropdown-link {
  color: #f4f7ff !important;
}

:root[data-theme="ocean-marin"] #body {
  color: #f4f7ff;
}

.nav-inner > .brand,
.nav-inner .nav-sublist > .nav-item > .nav-link,
.nav-inner .dropdown-toggle {
  color: #000;
}

@media (min-width: 901px) {
  .nav-inner .nav-cta {
    color: #000 !important;
  }

  .site-nav.nav-compact .nav-inner {
    gap: 0.4rem;
    padding-inline: 0.2rem;
  }

  .site-nav.nav-compact .brand-logo {
    width: clamp(182px, 16vw, 235px);
  }

  .site-nav.nav-compact .nav-link {
    padding: 0.5rem 0.62rem;
    font-size: 0.94rem;
  }

  .site-nav.nav-compact .nav-sublist {
    gap: 0.08rem;
  }

  .site-nav.nav-compact-tight .brand-logo {
    width: clamp(156px, 14vw, 205px);
  }

  .site-nav.nav-compact-tight .nav-link {
    padding: 0.44rem 0.52rem;
    font-size: 0.9rem;
  }

  .site-nav.nav-compact-tight .nav-sublist {
    gap: 0.04rem;
  }

  .site-nav.nav-compact-tight .nav-faq-link {
    gap: 0.2rem;
  }

  .site-nav.nav-compact-tight .theme-toggle-button {
    padding: 0.44rem 0.46rem;
  }

  .site-nav.nav-compact-tight .settings-label {
    display: none;
  }

  .site-nav.nav-compact-tight .nav-faq-text {
    max-width: 9.6ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav.nav-compact-tight .nav-faq-icon {
    width: 14px;
    height: 14px;
  }

  .site-nav.nav-compact-max .nav-inner {
    gap: 0.22rem;
    padding-inline: 0.12rem;
  }

  .site-nav.nav-compact-max .brand-logo {
    width: clamp(136px, 11.5vw, 178px);
  }

  .site-nav.nav-compact-max .nav-sublist {
    gap: 0;
  }

  .site-nav.nav-compact-max .nav-link {
    padding: 0.36rem 0.42rem;
    font-size: 0.82rem;
    border-radius: 0.62rem;
  }

  .site-nav.nav-compact-max .theme-toggle-button {
    padding: 0.36rem 0.4rem;
  }

  .site-nav.nav-compact-max .settings-label,
  .site-nav.nav-compact-max .nav-faq-text {
    display: none;
  }

  .site-nav.nav-compact-max .nav-faq-link {
    gap: 0;
    padding-inline: 0.46rem;
  }

  .site-nav.nav-compact-max .nav-faq-icon {
    width: 13px;
    height: 13px;
  }
}

#body.nav-on-dark .nav-inner > .brand,
#body.nav-on-dark .nav-inner .nav-sublist > .nav-item > .nav-link,
#body.nav-on-dark .nav-inner .dropdown-toggle,
#body.nav-on-dark .nav-inner .nav-cta,
#body.nav-on-dark .nav-inner .brand-sub,
#body.nav-on-dark .nav-toggle,
#body.nav-on-dark .nav-quick-home,
#body.nav-on-dark .nav-quick-contact,
#body.nav-on-dark .nav-quick-settings {
  color: #fff !important;
}

#body.nav-on-dark .brand-logo {
  filter: brightness(0) invert(1);
}

:root[data-theme="light"] #body.nav-on-dark .nav-inner > .brand,
:root[data-theme="light"]
  #body.nav-on-dark
  .nav-inner
  .nav-sublist
  > .nav-item
  > .nav-link,
:root[data-theme="light"] #body.nav-on-dark .nav-inner .dropdown-toggle,
:root[data-theme="light"] #body.nav-on-dark .nav-inner .nav-cta,
:root[data-theme="light"] #body.nav-on-dark .nav-inner .brand-sub,
:root[data-theme="light"] #body.nav-on-dark .nav-toggle,
:root[data-theme="light"] #body.nav-on-dark .nav-quick-home,
:root[data-theme="light"] #body.nav-on-dark .nav-quick-contact,
:root[data-theme="light"] #body.nav-on-dark .nav-quick-settings {
  color: #111827 !important;
}

:root[data-theme="light"] #body.nav-on-dark .brand-logo {
  filter: brightness(0) saturate(100%);
}

/* Inner max-width container (poți scoate dacă vrei 100% “edge-to-edge” conținut) */
.nav-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 0.75rem, 92rem);
  margin-inline: auto;
  box-sizing: border-box;
  padding-inline: clamp(0.2rem, 0.55vw, 0.65rem);

  height: var(--nav-height); /* înălțime “standard” navbar */
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 0.9vw, 1rem);
}

/* Brand */
.brand {
  color: var(--nav-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 0;
}

.brand-logo {
  width: clamp(206px, 21vw, 300px);
  height: auto;
  max-height: 60px;
  display: block;
  flex-shrink: 0;
}

.brand-logo {
  filter: brightness(0) saturate(100%);
  transition: filter 220ms ease;
}

:root[data-theme="dark"] .brand-logo {
  filter: brightness(0) invert(1);
}

:root[data-theme="ocean-marin"] .brand-logo {
  filter: brightness(0) invert(1);
}

.brand-name {
  display: inline-block;
  line-height: 1;
}

.brand-sub {
  display: inline-block;
  font-size: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  line-height: 1;
}

.nav-inner .brand-sub {
  color: #000;
  align-self: baseline;
  margin-left: -0.08rem;
  transform: translateY(0.04rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Toggle (mobil) */
.nav-toggle {
  margin-left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: transparent;
  color: #000;
  border: 1px solid var(--nav-border);
  border-radius: 0.75rem;
  cursor: pointer;
  position: relative;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition:
    top 220ms ease,
    transform 220ms ease,
    opacity 180ms ease;
}

.nav-toggle-icon {
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
}

.nav-toggle-icon::before {
  top: -5px;
}

.nav-toggle-icon::after {
  top: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

.nav-quick-contact {
  display: none;
  margin-left: 0.5rem;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #000;
  border: none;
  border-radius: 0.75rem;
  padding: 0;
  text-decoration: none;
}

.nav-quick-home {
  display: none;
  margin-left: 0.35rem;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #000;
  border: 1px solid var(--nav-border);
  border-radius: 0.75rem;
  padding: 0;
  text-decoration: none;
}



.nav-quick-settings {
  display: none;
  margin-left: 0.35rem;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #000;
  border: 1px solid var(--nav-border);
  border-radius: 0.75rem;
  padding: 0;
  text-decoration: none;
}

.nav-quick-lang {
  display: none;
  margin-left: auto;
}

.nav-quick-account {
  display: none;
  margin-left: 0.35rem;
  position: relative;
}

.nav-quick-account .nav-account-trigger {
  min-width: 2.25rem;
  min-height: 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: 0.75rem;
  border: 0;
  background: transparent;
}

.nav-quick-account .nav-account-trigger:hover,
.nav-quick-account .nav-account-shell.is-open .nav-account-trigger {
  background: transparent;
}

.nav-quick-account .nav-account-caret {
  display: none;
}

.nav-quick-account .nav-account-avatar {
  width: 1.55rem;
  height: 1.55rem;
}

.nav-quick-account .nav-account-avatar-initials {
  display: none;
}

.nav-quick-account .nav-account-menu {
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 120;
}

.nav-quick-settings .theme-gear {
  width: 18px;
  height: 18px;
}

.nav-contact-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.nav-home-quick-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

/* Menu list */
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.1rem, 0.35vw, 0.25rem);
  padding: 0;
  margin-block: 0;
  flex: 1;
  min-width: 0;
}

.nav-group {
  list-style: none;
  min-width: 0;
}

.nav-list::before {
  display: none;
}

.nav-group-main {
  margin-inline: auto;
  display: flex;
  align-items: center;
  min-width: 0;
}

.nav-group-cta {
  display: flex;
  align-items: center;
  min-width: 0;
}

.nav-sublist {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.08rem, 0.28vw, 0.25rem);
  padding: 0;
  margin: 0;
  min-width: 0;
}

/* Links */
.nav-link {
  color: var(--nav-text);
  text-decoration: none;
  padding: clamp(0.5rem, 0.66vw, 0.6rem) clamp(0.55rem, 0.75vw, 0.85rem);
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition:
    color 250ms ease,
    background 250ms ease,
    border-color 250ms ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-link[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px var(--nav-border-strong);
}

/* CTA style */
.nav-cta {
  border: none;
}

.nav-login-link {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.nav-login-link.is-authenticated {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px var(--nav-border-strong);
}

.nav-item-account-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-account-shell {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-account-trigger {
  border: 0;
  background: transparent;
  color: var(--nav-text);
  min-height: 2.35rem;
  min-width: 2.65rem;
  padding: 0.22rem 0.46rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  transition:
    background 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.nav-account-trigger:hover {
  background: transparent;
}

.nav-account-shell.is-open .nav-account-trigger {
  background: transparent;
  box-shadow: none;
}

.nav-account-avatar {
  position: relative;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.32),
      transparent 55%
    ),
    linear-gradient(
      140deg,
      rgba(var(--theme-c), 0.48),
      rgba(var(--theme-a), 0.58)
    );
  overflow: hidden;
}

.nav-account-avatar-icon {
  position: absolute;
  inset: 0.2rem;
  width: calc(100% - 0.4rem);
  height: calc(100% - 0.4rem);
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1.25;
  pointer-events: none;
}

.nav-account-avatar-initials,
.nav-account-avatar-menu-initials {
  display: none;
}

.nav-account-avatar-menu {
  width: 2.65rem;
  height: 2.65rem;
}

.nav-account-avatar-menu .nav-account-avatar-icon {
  inset: 0.28rem;
  width: calc(100% - 0.56rem);
  height: calc(100% - 0.56rem);
}

.nav-account-avatar-menu-initials {
  display: none;
}

.nav-account-caret {
  display: none;
}

.nav-account-shell.is-open .nav-account-caret {
  transform: none;
  opacity: 0;
}

.nav-account-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: min(21.5rem, calc(100vw - 2rem));
  max-width: min(24rem, calc(100vw - 2rem));
  border-radius: 1rem;
  border: 1px solid var(--nav-border-strong);
  background:
    radial-gradient(
      140% 140% at 10% 0%,
      rgba(255, 255, 255, 0.16),
      transparent 56%
    ),
    var(--nav-bg-2);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  padding: 0.84rem;
  z-index: 90;
}

.nav-account-menu::before {
  content: "";
  position: absolute;
  top: -0.55rem;
  right: 0;
  left: 0;
  height: 0.55rem;
}

.nav-account-menu-email {
  margin: 0 0 0.7rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--nav-text);
  line-height: 1.4;
  word-break: break-word;
}

.nav-account-menu-profile {
  margin: 0;
  padding: 0.62rem;
  border-radius: 0.9rem;
  border: 1px solid var(--nav-border);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-account-menu-profile-copy {
  min-width: 0;
}

.nav-account-menu-name {
  margin: 0;
  color: var(--nav-text);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.32;
  word-break: break-word;
}

.nav-account-menu-role {
  margin: 0.1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-account-menu-divider {
  margin: 0.76rem 0 0.52rem;
  border: 0;
  border-top: 1px solid var(--nav-border);
}

.nav-account-menu-link {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  width: 100%;
  color: var(--nav-text);
  text-decoration: none;
  border-radius: 0.7rem;
  padding: 0.54rem 0.58rem;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-account-menu-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-account-menu-link:active {
  transform: translateY(1px);
}

.nav-account-menu-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-account-menu-link span {
  font-weight: 600;
}

.nav-item-lang {
  display: inline-flex;
  align-items: center;
}

.nav-item-mobile-account-action {
  display: none;
}

.nav-item-mobile-utility-link {
  display: none;
}

.nav-item-mobile-utility-support-row,
.nav-item-mobile-utility-legal-row {
  display: none;
}

.nav-mobile-menu-header {
  display: none;
}

.nav-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  padding: 0.14rem;
  border-radius: 999px;
  border: 1px solid var(--nav-border-strong);
  background: rgba(255, 255, 255, 0.06);
}

.nav-lang-btn {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  min-width: 2.05rem;
  padding: 0.28rem 0.46rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.nav-lang-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.nav-lang-btn:focus-visible {
  outline: 2px solid var(--nav-focus);
  outline-offset: 2px;
}

.nav-lang-btn.is-active {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px var(--nav-border-strong);
}

:root[data-theme="light"] .nav-lang-switch {
  background: rgba(17, 24, 39, 0.06);
}

:root[data-theme="light"] .nav-lang-btn:hover {
  background: rgba(17, 24, 39, 0.12);
}

:root[data-theme="light"] .nav-lang-btn.is-active {
  background: rgba(17, 24, 39, 0.15);
}

:root[data-theme="light"] .nav-account-trigger {
  background: transparent;
}

:root[data-theme="light"] .nav-account-trigger:hover,
:root[data-theme="light"] .nav-account-shell.is-open .nav-account-trigger {
  background: transparent;
}

:root[data-theme="light"] .nav-quick-account .nav-account-trigger {
  background: transparent;
}

:root[data-theme="light"] .nav-quick-account .nav-account-trigger:hover,
:root[data-theme="light"]
  .nav-quick-account
  .nav-account-shell.is-open
  .nav-account-trigger {
  background: transparent;
}

:root[data-theme="light"] .nav-account-avatar {
  border-color: #111827;
}

:root[data-theme="light"] .nav-account-avatar-icon {
  stroke: #111827;
}

:root[data-theme="light"] .nav-account-menu {
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

:root[data-theme="light"] .nav-account-menu-profile,
:root[data-theme="light"] .nav-account-menu-link:hover {
  background: rgba(17, 24, 39, 0.07);
}

:root[data-theme="light"] .nav-account-menu-role {
  color: rgba(17, 24, 39, 0.62);
}

:root[data-theme="ocean-marin"] .nav-account-avatar {
  border-color: rgba(255, 226, 165, 0.7);
}

:root[data-theme="ocean-marin"] .nav-account-menu-profile {
  border-color: rgba(255, 226, 165, 0.36);
  background: rgba(255, 226, 165, 0.12);
}

:root[data-theme="ocean-marin"] .nav-account-menu-role {
  color: rgba(255, 232, 188, 0.92);
}

/* Dropdown wrapper */
.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* Small caret button */
.dropdown-toggle {
  background: transparent;
  color: var(--nav-text);
  border: 1px solid var(--nav-border);
  border-radius: 0.65rem;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
}

.theme-toggle-button {
  border: none;
  padding: 0.6rem 0.85rem;
  border-radius: 0.75rem;
}

.theme-gear {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.settings-label {
  display: inline;
  font-size: 0.95rem;
}

.nav-home-icon {
  display: none;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.nav-faq-icon {
  width: 16px;
  height: 16px;
  margin-left: 0;
  display: inline-block;
  flex: 0 0 auto;
  vertical-align: -0.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.nav-faq-link {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.35rem;
  line-height: 1.35;
}

.nav-faq-text {
  display: inline-block;
  min-width: 0;
}

@media (min-width: 901px) {
  .nav-faq-link,
  .nav-faq-text {
    white-space: nowrap;
  }
}

.theme-toggle-button:hover {
  background: rgba(255, 255, 255, 0.06);
}


.settings-dropdown {
  min-width: 220px;
}

.nav-theme > .settings-dropdown {
  top: calc(100% - 2px);
  left: auto;
  right: 0;
}

.nav-theme > .settings-dropdown::before {
  top: -14px;
  height: 14px;
  left: auto;
  right: 0;
}

.nav-theme .dropdown-submenu {
  left: calc(100% + 0.5rem);
  right: auto;
}

.nav-theme .dropdown-submenu::before {
  left: -0.5rem;
  right: auto;
}

.submenu-item {
  position: relative;
  list-style: none;
}

.submenu-toggle {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--nav-text);
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  font: inherit;
}

.submenu-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

.submenu-caret {
  transition: transform 200ms ease;
}

.submenu-item:hover .submenu-caret,
.submenu-item:focus-within .submenu-caret,
.submenu-item.is-open .submenu-caret {
  transform: rotate(90deg);
}

/* Dropdown panel */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 260px;

  background:
    radial-gradient(
      140% 125% at 4% 0%,
      rgba(255, 255, 255, 0.24),
      transparent 56%
    ),
    radial-gradient(
      120% 115% at 98% 2%,
      rgba(255, 255, 255, 0.12),
      transparent 58%
    ),
    linear-gradient(
      152deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03) 44%,
      rgba(0, 0, 0, 0.2)
    ),
    rgba(12, 14, 20, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 1rem;
  padding: 0.5rem;
  list-style: none;
  margin: 0;

  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -16px 26px rgba(8, 10, 14, 0.22);
  -webkit-backdrop-filter: blur(22px) saturate(160%) contrast(106%);
  backdrop-filter: blur(22px) saturate(160%) contrast(106%);
  background-clip: padding-box;
  overflow: hidden;
  z-index: 50;
}

/* Bridge the hover gap so the dropdown doesn't collapse */
.dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}

.dropdown::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(1rem - 1px);
  background:
    radial-gradient(
      128% 110% at 12% -6%,
      rgba(255, 255, 255, 0.22),
      transparent 52%
    ),
    radial-gradient(
      120% 112% at 102% 100%,
      rgba(255, 255, 255, 0.09),
      transparent 60%
    ),
    linear-gradient(
      122deg,
      rgba(255, 255, 255, 0) 28%,
      rgba(255, 255, 255, 0.16) 50%,
      rgba(255, 255, 255, 0) 72%
    );
  opacity: 0.36;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  animation: nav-liquid-glass-shift 11s ease-in-out infinite alternate;
}

.dropdown > * {
  position: relative;
  z-index: 1;
}

/* Dropdown links */
.dropdown-link {
  display: block;
  color: var(--nav-text);
  text-decoration: none;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
}

.dropdown-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-item-personalization {
  position: relative;
}

.nav-personalization-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.nav-personalization-caret {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
  pointer-events: none;
}

.nav-item-personalization
  .dropdown-toggle[aria-expanded="true"]
  .nav-personalization-caret {
  transform: rotate(180deg);
}

.nav-theme-dropdown {
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  min-width: clamp(19rem, 34vw, 28rem);
  max-width: min(92vw, 30rem);
  padding: 0.8rem 0.85rem 0.9rem;
  background:
    radial-gradient(
      120% 140% at 10% 0%,
      rgba(255, 255, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      140% 120% at 90% 20%,
      rgba(255, 255, 255, 0.12),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.06);
  border-color: var(--nav-border-strong);
  background-clip: padding-box;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(28px) saturate(170%) contrast(108%) !important;
  backdrop-filter: blur(28px) saturate(170%) contrast(108%) !important;
}

.nav-theme-dropdown::after {
  opacity: 0;
}

@keyframes nav-liquid-glass-shift {
  0% {
    transform: translate3d(-1.5%, -2%, 0) scale(1);
  }
  100% {
    transform: translate3d(1.5%, 2%, 0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dropdown::after {
    animation: none;
  }
}

.nav-theme-dropdown-title {
  margin: 0 0 0.7rem;
  padding-inline: 0.1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.nav-theme-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.nav-theme-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.32rem;
  margin: 0;
  padding: 0.35rem 0.3rem 0.4rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 8px 16px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(6px) saturate(130%);
  backdrop-filter: blur(6px) saturate(130%);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
  cursor: pointer;
  user-select: none;
}

.nav-theme-card:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 12px 18px rgba(0, 0, 0, 0.26);
}

.nav-theme-radio {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.nav-theme-swatch {
  width: 3rem;
  height: 3rem;
  border-radius: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 18px rgba(0, 0, 0, 0.32);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.nav-theme-name {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.nav-theme-card:hover .nav-theme-swatch {
  transform: translateY(-2px);
}

.nav-theme-radio:focus-visible + .nav-theme-swatch {
  outline: 2px solid var(--nav-focus);
  outline-offset: 2px;
}

.nav-theme-radio:checked + .nav-theme-swatch {
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.28),
    0 10px 20px rgba(0, 0, 0, 0.38);
}

.nav-theme-radio:checked + .nav-theme-swatch + .nav-theme-name {
  color: #fff;
}

.nav-theme-swatch[data-theme-preview="classic"] {
  background: linear-gradient(
    135deg,
    rgb(37, 99, 235),
    rgb(236, 72, 153),
    rgb(245, 158, 11)
  );
}

.nav-theme-swatch[data-theme-preview="theme-1"] {
  background: linear-gradient(
    135deg,
    rgb(45, 212, 191),
    rgb(16, 185, 129),
    rgb(196, 120, 255)
  );
}

.nav-theme-swatch[data-theme-preview="candy"] {
  background: linear-gradient(
    135deg,
    rgb(130, 24, 67),
    rgb(244, 114, 182),
    rgb(251, 146, 60)
  );
}

.nav-theme-swatch[data-theme-preview="light"] {
  background: linear-gradient(
    135deg,
    rgb(252, 252, 252),
    rgb(240, 242, 245),
    rgb(226, 229, 234)
  );
  border-color: rgba(15, 23, 42, 0.16);
}

.nav-theme-swatch[data-theme-preview="theme-3"] {
  background: linear-gradient(
    135deg,
    rgb(249, 115, 22),
    rgb(245, 158, 11),
    rgb(6, 182, 212)
  );
}

.nav-theme-swatch[data-theme-preview="dark"] {
  background: linear-gradient(
    145deg,
    rgb(18, 18, 18),
    rgb(0, 0, 0),
    rgb(41, 41, 41)
  );
}

.nav-theme-swatch[data-theme-preview="ocean-marin"] {
  background: linear-gradient(
    135deg,
    rgb(12, 36, 68),
    rgb(25, 58, 106),
    rgb(66, 186, 221)
  );
}

:root[data-theme="light"] .nav-theme-card:hover {
  background: linear-gradient(
    162deg,
    rgba(255, 255, 255, 0.96),
    rgba(241, 245, 249, 0.76)
  );
  border-color: rgba(17, 24, 39, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 12px 18px rgba(15, 23, 42, 0.15);
}

:root[data-theme="light"] .nav-theme-card {
  background: linear-gradient(
    162deg,
    rgba(255, 255, 255, 0.84),
    rgba(241, 245, 249, 0.62)
  );
  border-color: rgba(17, 24, 39, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 16px rgba(15, 23, 42, 0.12);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  backdrop-filter: blur(8px) saturate(120%);
}

:root[data-theme="light"] .nav-theme-name {
  color: rgba(17, 24, 39, 0.86);
}

:root[data-theme="light"]
  .nav-theme-radio:checked
  + .nav-theme-swatch
  + .nav-theme-name {
  color: #111827;
}

:root[data-theme="dark"] .nav-theme-radio:checked + .nav-theme-swatch {
  border-color: rgba(255, 255, 255, 0.94);
}

@media (hover: hover) and (pointer: fine) {
  .nav-item-personalization:hover .nav-personalization-caret,
  .nav-item-personalization:focus-within .nav-personalization-caret {
    transform: rotate(180deg);
  }
}

.theme-dropdown {
  min-width: 280px;
}

.dropdown-submenu {
  position: absolute;
  top: 0;
  left: calc(100% + 0.5rem);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    visibility 0ms linear 200ms;
}

.dropdown-submenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.5rem;
  width: 0.5rem;
  height: 100%;
}

.submenu-item:hover > .dropdown-submenu,
.submenu-item:focus-within > .dropdown-submenu,
.submenu-item.is-open > .dropdown-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0ms;
}

.theme-item {
  list-style: none;
}

.theme-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--nav-text);
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  cursor: pointer;
}

.theme-option:hover {
  background: rgba(255, 255, 255, 0.06);
}

.theme-label {
  font-size: 0.95rem;
}

.theme-switch {
  position: relative;
  width: 34px;
  height: 18px;
  flex: 0 0 auto;
}

.theme-toggle {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.theme-slider {
  --switch-color-rgb: var(--theme-switch-rgb);
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.35);
  transition:
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.theme-slider::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(var(--switch-color-rgb), 0.92);
  box-sizing: border-box;
  transition:
    transform 200ms ease,
    border-color 200ms ease;
}

.theme-toggle:checked + .theme-slider {
  background: rgb(var(--switch-color-rgb));
  border-color: rgba(var(--switch-color-rgb), 0.95);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.theme-toggle:checked + .theme-slider::after {
  transform: translateX(16px);
  background: #fff;
  border-color: #fff;
  border-width: 1px;
}

:root[data-theme="dark"] .theme-toggle:checked + .theme-slider {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.theme-toggle[data-theme="classic"] + .theme-slider {
  --switch-color-rgb: 156, 92, 255;
}

.theme-toggle[data-theme="theme-1"] + .theme-slider {
  --switch-color-rgb: 45, 212, 191;
}

.theme-toggle[data-theme="candy"] + .theme-slider {
  --switch-color-rgb: 244, 114, 182;
}

.theme-toggle[data-theme="light"] + .theme-slider {
  --switch-color-rgb: 37, 170, 190;
}

.theme-toggle[data-theme="theme-3"] + .theme-slider {
  --switch-color-rgb: 245, 158, 11;
}

.theme-toggle[data-theme="dark"] + .theme-slider {
  --switch-color-rgb: 28, 28, 28;
}

.theme-toggle[data-theme="ocean-marin"] + .theme-slider {
  --switch-color-rgb: 113, 177, 255;
}

.theme-toggle:focus-visible + .theme-slider {
  outline: 2px solid var(--nav-focus);
  outline-offset: 2px;
}

/* Focus (tastatură) */
.nav-link:focus-visible,
.dropdown-toggle:focus-visible,
.nav-toggle:focus-visible,
.nav-quick-home:focus-visible,
.nav-quick-contact:focus-visible,
.nav-quick-settings:focus-visible,
.dropdown-link:focus-visible,
.nav-account-trigger:focus-visible,
.nav-account-menu-link:focus-visible {
  outline: 2px solid var(--nav-focus);
  outline-offset: 2px;
}

/* Desktop hover behavior (doar dacă device-ul suportă hover) */
@media (hover: hover) and (pointer: fine) {
  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown {
    display: block;
  }

  /* când e controlat de JS cu hidden, menține compatibilitatea */
  .has-dropdown > .dropdown[hidden] {
    display: none;
  }
}

/* ====== MOBILE ====== */
@media (max-width: 900px) {
  :root {
    --nav-height: 88px;
    --mobile-drawer-width: min(84vw, 23.5rem);
  }

  #body.nav-menu-open {
    overflow: hidden;
  }

  .site-nav::after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: var(--mobile-overlay-opacity, 0);
    pointer-events: none;
    background: var(--mobile-drawer-overlay);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    transition: opacity 260ms ease;
    z-index: 1;
  }

  #body.nav-menu-open .site-nav::after {
    pointer-events: auto;
  }

  #body.nav-menu-open .site-nav {
    --mobile-overlay-opacity: 1;
  }

  .nav-inner {
    width: 100%;
    box-sizing: border-box;
    padding-inline: max(0.5rem, env(safe-area-inset-left))
      max(0.5rem, env(safe-area-inset-right));
    gap: 0.4rem;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 10.8rem);
    font-size: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-logo {
    width: clamp(72px, 14vw, 96px);
    max-height: none;
    transform: translateY(3px);
  }

  .nav-inner .brand-sub {
    display: inline-block;
  }

  .nav-toggle,
  .nav-quick-home,
  .nav-quick-lang,
  .nav-quick-account,
  .nav-quick-contact,
  .nav-quick-settings {
    flex-shrink: 0;
    margin-left: 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-right: 0;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    position: relative;
    z-index: 130;
    order: 1;
  }

  #body.nav-menu-open .nav-toggle {
    color: var(--mobile-toggle-open-text) !important;
    border-color: var(--mobile-toggle-open-border);
    background: var(--mobile-toggle-open-bg);
  }

  .nav-quick-contact {
    display: inline-flex;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    margin-left: 0.35rem;
    order: 4;
  }

  .nav-quick-home {
    display: inline-flex;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    margin-left: 0.35rem;
    margin-right: auto;
    order: 2;
  }



  .nav-quick-account {
    display: inline-flex;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    margin-left: 0.35rem;
    order: 5;
  }

  .nav-quick-settings {
    display: inline-flex;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
  }

  .nav-quick-lang {
    display: none;
    margin-left: auto;
    order: 6;
  }

  .nav-list .nav-item-home,
  .nav-list .nav-item-settings,
  .nav-list .nav-item-lang,
  .nav-list .nav-item-account-menu {
    display: none;
  }

  .nav-list > .nav-item-mobile-account-action {
    display: block;
    width: 100%;
  }

  .nav-list .nav-item-mobile-utility-link {
    display: block;
  }

  .nav-list > .nav-item-mobile-utility-support-row,
  .nav-list > .nav-item-mobile-utility-legal-row {
    display: block;
    width: 100%;
  }

  .nav-list .nav-mobile-menu-header {
    display: block;
    width: 100%;
  }

  .nav-list .nav-item-cta-faq {
    display: none;
  }

  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: var(--mobile-drawer-width);
    max-width: calc(100vw - 2.75rem);

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;

    background: var(--mobile-drawer-bg, var(--mobile-drawer-bg-solid));
    border-right: 0;
    color: var(--mobile-drawer-text);
    padding: calc(var(--nav-height) + env(safe-area-inset-top, 0px) + 1rem) 1rem
      max(1rem, env(safe-area-inset-bottom, 0px));
    height: calc(100 * var(--vh-unit));
    overflow-y: auto;
    touch-action: pan-y;
    overscroll-behavior: contain;
    opacity: 0;
    transform: translateX(-100%);
    pointer-events: none;
    border-radius: 0;
    z-index: 120;
    isolation: isolate;
    box-shadow:
      var(--mobile-drawer-shadow),
      inset 0 1px 0 var(--mobile-drawer-glass-rim);
    -webkit-backdrop-filter: blur(24px) saturate(150%) contrast(108%);
    backdrop-filter: blur(24px) saturate(150%) contrast(108%);
    transition:
      opacity 250ms ease,
      transform 320ms ease;
  }

  .nav-list::before,
  .nav-list::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .nav-list::before {
    display: none;
    z-index: 0;
    background:
      radial-gradient(
        130% 70% at 8% 0%,
        var(--mobile-drawer-glass-sheen),
        transparent 60%
      ),
      linear-gradient(
        155deg,
        var(--mobile-drawer-glass-sheen-soft) 0%,
        transparent 58%
      );
    opacity: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-list::after {
    z-index: 0;
    border-right: 0;
    box-shadow:
      inset 0 1px 0 var(--mobile-drawer-glass-rim),
      inset -18px 0 24px rgba(255, 255, 255, 0.03);
  }

  .nav-list > .nav-item,
  .nav-list > .nav-group {
    position: relative;
    z-index: 1;
  }

  .nav-mobile-menu-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0.48rem 0.2rem 0.82rem;
    border-bottom: 1px solid var(--mobile-drawer-divider);
  }

  .nav-mobile-menu-brand-logo {
    width: clamp(62px, 21vw, 88px);
    height: auto;
    display: block;
    filter: var(--mobile-drawer-logo-filter);
  }

  .nav-list .nav-link,
  .nav-list .dropdown-toggle,
  .nav-list .dropdown-link {
    color: var(--mobile-drawer-text) !important;
  }

  .nav-sublist {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.22rem;
  }

  .nav-group-main,
  .nav-group-cta {
    margin-inline: 0;
    width: 100%;
    min-width: 0;
  }

  .nav-group-main {
    margin-top: clamp(0.9rem, 5.2vh, 2rem);
  }

  .nav-group-cta {
    margin-left: 0;
    margin-top: 0.2rem;
    margin-bottom: clamp(0.8rem, 4.5vh, 1.6rem);
  }

  .nav-group-main > .nav-sublist,
  .nav-group-cta > .nav-sublist {
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
  }

  .nav-list .nav-item {
    width: 100%;
  }

  .nav-group-main > .nav-sublist,
  .nav-group-cta > .nav-sublist {
    align-items: flex-start;
  }

  .nav-group-main > .nav-sublist > .nav-item,
  .nav-group-cta > .nav-sublist > .nav-item {
    width: 100%;
  }

  .nav-group-main > .nav-sublist > .nav-item > .nav-link,
  .nav-group-cta > .nav-sublist > .nav-item > .nav-link {
    justify-content: flex-start;
    text-align: left;
  }

  .nav-list > .nav-item-mobile-account-settings {
    margin-top: 0.18rem;
    padding-top: 0;
    border-top: 0;
  }

  .nav-list > .nav-item-mobile-account-admin {
    margin-top: 0.06rem;
  }

  .nav-list > .nav-item-mobile-account-logout {
    margin-top: 0.2rem;
  }

  .nav-list > .nav-item-mobile-account-action .nav-link {
    border: 0;
    background: transparent;
    font-weight: 400;
    border-radius: 0.75rem;
    justify-content: flex-start;
    text-align: left;
  }

  .nav-list > .nav-item-mobile-account-settings .nav-link,
  .nav-list > .nav-item-mobile-account-settings .nav-mobile-account-link,
  .nav-list > .nav-item-mobile-account-admin .nav-link,
  .nav-list > .nav-item-mobile-account-admin .nav-mobile-account-link {
    font-weight: 400 !important;
  }

  .nav-list > .nav-item-mobile-account-action .nav-link:hover {
    background: var(--mobile-drawer-hover);
  }

  .nav-list .nav-item-mobile-utility-link .nav-link {
    font-size: 0.9rem;
    opacity: 0.9;
    padding-top: 0.42rem;
    padding-bottom: 0.42rem;
  }

  .nav-list > .nav-item-mobile-utility-support-row {
    margin-top: auto;
    padding-top: 0.55rem;
    border-top: 1px dashed var(--mobile-drawer-divider-soft);
  }

  .nav-list > .nav-item-mobile-utility-legal-row {
    margin-top: 0.3rem;
  }

  .nav-mobile-legal-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .nav-mobile-utility-link-legal {
    justify-content: center !important;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.2;
    padding: 0.42rem 0.5rem !important;
    border-radius: 0.72rem;
    border: 0;
    background: transparent !important;
  }

  .nav-mobile-utility-link-legal:hover {
    background: transparent !important;
  }

  :root[data-theme="dark"] .nav-list {
    background: var(--mobile-drawer-bg);
    color: #fff;
  }

  :root[data-theme="dark"] .nav-list .nav-link,
  :root[data-theme="dark"] .nav-list .dropdown-toggle,
  :root[data-theme="dark"] .nav-list .dropdown-link {
    color: #fff !important;
  }

  :root[data-theme="dark"] .nav-list > .nav-item-mobile-utility-support-row {
    border-top-color: var(--mobile-drawer-divider-soft);
  }

  .nav-list .nav-account-shell {
    width: 100%;
    display: block;
  }

  .nav-list .nav-account-trigger {
    width: 100%;
    justify-content: space-between;
    border-radius: 0.82rem;
    padding: 0.42rem 0.62rem;
    background: var(--mobile-drawer-soft-bg);
  }

  .nav-list .nav-account-menu {
    position: static;
    min-width: 0;
    max-width: none;
    width: 100%;
    margin-top: 0.45rem;
    box-shadow:
      0 14px 28px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(17, 24, 39, 0.08);
  }

  .nav-list .nav-account-menu::before {
    display: none;
  }

  .nav-list .nav-account-menu-link {
    color: var(--mobile-drawer-text);
  }

  .nav-list.is-open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-list.is-dragging {
    transition: none !important;
  }

  #body .site-nav ~ * {
    transition: filter 220ms ease;
  }

  #body.nav-menu-open .site-nav ~ * {
    filter: blur(6px) saturate(112%);
  }

  .nav-inner {
    position: relative;
    z-index: 2;
  }

  .has-dropdown {
    flex-wrap: wrap;
  }

  .dropdown {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav-list .nav-item-personalization {
    width: 100%;
  }

  .nav-list .nav-personalization-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-list .nav-theme-dropdown {
    left: auto;
    top: auto;
    transform: none;
    max-width: none;
    width: 100%;
  }

  .nav-list .nav-theme-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .nav-list .nav-theme-swatch {
    width: 2.7rem;
    height: 2.7rem;
  }

  .nav-list .nav-theme-name {
    font-size: 0.69rem;
  }

  .settings-label {
    display: inline;
  }

  .nav-home-icon {
    display: inline-block;
  }

  .settings-dropdown .dropdown-submenu {
    position: static;
    left: auto;
    top: auto;
    margin-left: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .settings-dropdown .submenu-item.is-open > .dropdown-submenu,
  .settings-dropdown .submenu-item:focus-within > .dropdown-submenu {
    display: block;
  }
}
