/*
  PortiQ Mega Menu — mega-menu.css
  ──────────────────────────────────────────────────────────
  Add to theme via:
    functions.php → wp_enqueue_style('pq-mega-menu', ...)
  or paste into Appearance → Customize → Additional CSS

  This file assumes your theme already has:
    --primary, --secondary, --border, --primary-50, --primary-75,
    --text, --grey, --white, --border-radius
  as CSS variables. If not, the Quick-Start variables are at the bottom.
  ──────────────────────────────────────────────────────────
*/

/* ═══════════════════════════════════════════════════════════
   RESET / SCOPED BASE
══════════════════════════════════════════════════════════ */

.pq-mega-nav *,
.pq-mega-nav *::before,
.pq-mega-nav *::after {
  box-sizing: border-box;
}

.pq-mega-nav ul,
.pq-mega-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pq-mega-nav a {
  text-decoration: none;
  color: inherit;
}

.pq-mega-nav button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}


/* ═══════════════════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════════════════ */

.pq-top-bar {
  width: 100%;
  background: var(--white, #fff);
}

.pq-top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.pq-top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.pq-top-bar-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.pq-top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

/* Partner logos — smaller */
.pq-top-logo--sc,
.pq-top-logo--dt {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.pq-top-logo--sc:hover,
.pq-top-logo--dt:hover {
  opacity: 1;
}

/* PortiQ logo — bigger, center */
.pq-top-logo--portiq {
  height: 32px;
  width: auto;
  display: block;
}

.pq-top-presents {
  font-size: 11px;
  font-weight: 500;
  color: var(--grey, #4f607a);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* Separator line between top bar and main nav */
.pq-top-sep {
  height: 1px;
  background: var(--border, #D4DAE3);
  opacity: 0.6;
  width: 100%;
}

@media (max-width: 580px) {
    .pq-top-bar-left,
    .pq-top-bar-right{
        display: none;
    }
}




/* ═══════════════════════════════════════════════════════════
   NAV OUTER WRAPPER
══════════════════════════════════════════════════════════ */

.pq-mega-nav {
  position: relative;   /* mini panel (Jetzt Starten) positions relative to this */
  width: 100%;
  background: var(--white, #fff);
  border-bottom: 1px solid var(--border, #D4DAE3);
  font-family: Montserrat, Arial, sans-serif;
  z-index: 1000;

  position: fixed;
    top: 0;
    z-index: 1000;
    display: block;
    left: 0;
    width: 100%;
    max-width: 100%;
}

/* Sticky header support — add .pq-sticky to <nav> if needed */
.pq-mega-nav.pq-sticky {
  position: sticky;
  top: 0;
}


/* ═══════════════════════════════════════════════════════════
   NAV INNER (flex row)
══════════════════════════════════════════════════════════ */

.pq-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 68px;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}


/* ═══════════════════════════════════════════════════════════
   LOGO
══════════════════════════════════════════════════════════ */

.pq-nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 40px;
}

.pq-nav-logo img {
  display: block;
  height: 34px;
  width: auto;
}


/* ═══════════════════════════════════════════════════════════
   NAV LIST
══════════════════════════════════════════════════════════ */

.pq-nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.pq-nav-link,
.pq-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px !important;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary, #10093D);
  border-radius: var(--border-radius, 8px);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  line-height: 1;
}

.pq-nav-link:hover,
.pq-nav-trigger:hover {
  background: var(--primary-50, #EFF7FF);
  color: var(--primary, #2A70E9);
}

.pq-nav-trigger[aria-expanded="true"] {
  background: var(--primary-50, #EFF7FF);
  color: var(--primary, #2A70E9);
}

.pq-nav-trigger[aria-expanded="true"] .pq-chevron {
  transform: rotate(180deg);
}

.pq-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  width: 14px !important;
}


/* ═══════════════════════════════════════════════════════════
   RIGHT ACTIONS
══════════════════════════════════════════════════════════ */

.pq-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  flex-shrink: 0;
}


/* Language Switcher */
.pq-lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
}

.pq-lang-link {
  color: var(--grey, #4f607a);
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.15s;
}

.pq-lang-link:hover,
.pq-lang-active {
  color: var(--primary, #2A70E9);
}

.pq-lang-sep {
  color: var(--border, #D4DAE3);
  user-select: none;
}


/* Jetzt Starten CTA Button */
.pq-cta-wrap {
  position: relative;   /* mini panel anchors here */
}

.pq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: 36px;
 background: var(--primary, #2A70E9) !important;
  color: var(--white, #fff) !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--border-radius, 8px);
  border: none;
  transition: background 0.15s ease;
  white-space: nowrap;
  line-height: 1;
}

.pq-cta-btn:hover {
  background: #1F59D6 !important;
}

.pq-cta-btn[aria-expanded="true"] {
  background: #1F59D6;
}

.pq-cta-btn[aria-expanded="true"] .pq-chevron {
  transform: rotate(180deg);
}


/* ═══════════════════════════════════════════════════════════
   MEGA PANEL — SHARED
══════════════════════════════════════════════════════════ */

.pq-mega-panel {
  position: fixed;
  left: 50%;
  width: 100%;
  max-width: 1000px;
  z-index: 999;
  background: var(--white, #fff);
  border: 1px solid var(--border, #D4DAE3);
  border-top: 2px solid var(--primary, #2A70E9);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 40px rgba(10, 28, 60, 0.12);

  /* Animation */
  opacity: 0;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

/* Fix 6: Invisible hover bridge fills the gap between
   nav bottom and panel top — keeps mouseenter continuous */
.pq-mega-panel::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

/* Visible state */
.pq-mega-panel.pq-is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Panels start as display:none via [hidden].
   JS removes [hidden] first, then adds .pq-is-open in a RAF
   to trigger the CSS transition cleanly. */


/* ═══════════════════════════════════════════════════════════
   LARGE MEGA PANEL INNER LAYOUT
══════════════════════════════════════════════════════════ */

.pq-mega-inner {
  display: grid;
  grid-template-columns: 260px 1fr 240px;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 32px;
}

/* Dividers between columns */
.pq-mega-inner > * + * {
  border-left: 1px solid var(--border, #D4DAE3);
  padding-left: 32px;
  margin-left: 0;
}

.pq-mega-inner > *:not(:last-child) {
  padding-right: 32px;
}


/* ═══════════════════════════════════════════════════════════
   MEGA HERO (Col 1)
══════════════════════════════════════════════════════════ */

.pq-mega-hero {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pq-mega-hero-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-50, #EFF7FF);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.pq-mega-hero-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.pq-mega-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary, #2A70E9);
  margin: 0;
}

.pq-mega-product-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text, #030044);
  margin: 0;
  line-height: 1.2;
}

.pq-mega-tagline {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--grey, #4f607a);
  margin: 0;
}

.pq-mega-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.pq-mega-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 34px;
  background: var(--primary, #2A70E9);
  color: var(--white, #fff) !important;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--border-radius, 8px);
  transition: background 0.15s;
  align-self: flex-start;
  white-space: nowrap;
}

.pq-mega-cta-primary:hover {
  background: #1F59D6;
}

.pq-mega-cta-outline {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  height: 34px;
  border: 1.5px solid var(--border, #D4DAE3);
  color: var(--secondary, #10093D) !important;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--border-radius, 8px);
  transition: border-color 0.15s, background 0.15s;
  align-self: flex-start;
  white-space: nowrap;
}

.pq-mega-cta-outline:hover {
  border-color: var(--primary, #2A70E9);
  background: var(--primary-50, #EFF7FF);
  color: var(--primary, #2A70E9) !important;
}

/* Intelligence Suite hero accent */
.pq-mega-hero--is .pq-mega-hero-icon {
  background: #0a1e3d;
}

.pq-mega-cta-primary--is {
  background: var(--secondary, #10093D);
}

.pq-mega-cta-primary--is:hover {
  background: #1a1054;
}


/* ═══════════════════════════════════════════════════════════
   MEGA LINKS COLUMN (Col 2)
══════════════════════════════════════════════════════════ */

.pq-mega-links-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pq-mega-section-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey, #4f607a);
  margin: 0 0 12px 0;
}

.pq-mega-link-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.pq-mega-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px !important;
  border-radius: var(--border-radius, 8px);
  transition: background 0.15s ease;
  color: var(--secondary, #10093D);
  width: 100%;
  box-sizing: content-box;
}

.pq-mega-link-item:hover {
  background: var(--primary-50, #EFF7FF);
}

.pq-mega-link-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;   /* prevents shrinking */
  background: var(--primary-75, #DBECFE);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pq-mega-link-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.pq-mega-link-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.pq-mega-link-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text, #030044);
  line-height: 1.3;
}

.pq-mega-link-text span {
  font-size: 11.5px;
  color: var(--grey, #4f607a);
  line-height: 1.4;
}

.pq-mega-link-item:hover .pq-mega-link-text strong {
  color: var(--primary, #2A70E9);
}


/* ═══════════════════════════════════════════════════════════
   VARIANTS COLUMN (Col 3)
══════════════════════════════════════════════════════════ */

.pq-mega-variants-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pq-variant-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px !important;
  border: 1.5px solid var(--border, #D4DAE3);
  border-radius: var(--border-radius, 8px);
  color: var(--secondary, #10093D);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  position: relative;
  text-decoration: none;
  overflow: visible;
  box-sizing: content-box;
}

.pq-variant-card:hover {
  border-color: var(--primary, #2A70E9);
  background: var(--primary-50, #EFF7FF);
  box-shadow: 0 2px 8px rgba(42, 112, 233, 0.10);
}

/* Featured card — extra top margin to make room for badge */
.pq-variant-featured {
  border-color: var(--primary, #2A70E9);
  background: var(--primary-50, #EFF7FF);
  margin-top: 8px;
}

.pq-variant-featured:hover {
  background: var(--primary-75, #DBECFE);
}

.pq-variant-badge-pill {
  position: absolute;
  top: -10px;
  right: -15px;
  background: var(--primary, #2A70E9);
  color: var(--white, #fff);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.pq-variant-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--primary-75, #DBECFE);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pq-variant-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.pq-variant-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pq-variant-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text, #030044);
  line-height: 1.2;
  white-space: nowrap;
}

.pq-variant-desc {
  font-size: 11px;
  color: var(--grey, #4f607a);
  line-height: 1.3;
}

.pq-variant-arrow {
  color: var(--grey, #4f607a);
  flex-shrink: 0;
  transition: transform 0.15s, color 0.15s;
}

.pq-variant-card:hover .pq-variant-arrow {
  transform: translateX(2px);
  color: var(--primary, #2A70E9);
}

.pq-mega-link-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary, #2A70E9);
  padding: 4px 2px;
  transition: gap 0.15s;
}

.pq-mega-link-all:hover {
  gap: 8px;
}


/* ═══════════════════════════════════════════════════════════
   MINI PANEL: Jetzt Starten
══════════════════════════════════════════════════════════ */

.pq-mini-panel {
  position: fixed;      /* overrides parent fixed; JS positions it */
  width: 320px;
  left: auto !important;   /* JS will set right-edge alignment */
  border-top: 2px solid var(--primary, #2A70E9);
  border-radius: 0 0 12px 12px;
}

.pq-mini-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pq-mini-headline {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey, #4f607a);
  margin: 0 0 4px 0;
}

/* Mini card */
.pq-mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px !important;
  border: 1.5px solid var(--border, #D4DAE3);
  border-radius: var(--border-radius, 8px);
  color: var(--secondary, #10093D);
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none;
  height: auto;
}

.pq-mini-card:hover {
  border-color: var(--primary, #2A70E9);
  background: var(--primary-50, #EFF7FF);
}

/* CTA / Primary mini card */
.pq-mini-card--cta {
  background: var(--primary, #2A70E9);
  border-color: var(--primary, #2A70E9);
  color: var(--white, #fff) !important;
}

.pq-mini-card--cta:hover {
  background: #1F59D6;
  border-color: #1F59D6;
}

.pq-mini-card--cta .pq-mini-card-body strong,
.pq-mini-card--cta .pq-mini-card-body span,
.pq-mini-card--cta .pq-mini-card-arrow {
  color: var(--white, #fff) !important;
}

.pq-mini-card--cta img {
  filter: brightness(0) invert(1);
}

.pq-mini-card-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-75, #DBECFE);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pq-mini-card--cta .pq-mini-card-icon {
  background: rgba(255,255,255,0.2);
}

.pq-mini-card-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.pq-mini-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pq-mini-card-body strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text, #030044);
  line-height: 1.2;
}

.pq-mini-card-body span {
  font-size: 11px;
  color: var(--grey, #4f607a);
  line-height: 1.4;
}

.pq-mini-card-arrow {
  color: var(--grey, #4f607a);
  flex-shrink: 0;
  transition: transform 0.15s;
}

.pq-mini-card:hover .pq-mini-card-arrow {
  transform: translateX(2px);
}

/* Trust badge */
.pq-mini-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--primary-50, #EFF7FF);
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--grey, #4f607a);
}

.pq-mini-trust svg {
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   OVERLAY
══════════════════════════════════════════════════════════ */

.pq-mega-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 0, 68, 0.18);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.pq-mega-overlay.pq-is-active {
  opacity: 1;
  pointer-events: auto;
}


/* ═══════════════════════════════════════════════════════════
   HAMBURGER
══════════════════════════════════════════════════════════ */

.pq-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
}

.pq-hamburger:hover {
  background: var(--primary-50, #EFF7FF);
}

.pq-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--secondary, #10093D);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.pq-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.pq-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.pq-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ═══════════════════════════════════════════════════════════
   MOBILE MENU DRAWER
══════════════════════════════════════════════════════════ */

.pq-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 100vw;
  height: 100dvh;
  background: var(--white, #fff);
  z-index: 1001;
  overflow-y: auto;
  box-shadow: -4px 0 30px rgba(3, 0, 68, 0.15);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.pq-mobile-menu.pq-is-open {
  transform: translateX(0);
}

/* hidden attr override */
.pq-mobile-menu[hidden] {
  display: block !important;
}

.pq-mobile-menu-inner {
  padding: 80px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
}

.pq-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.pq-mobile-link {
  display: block;
  padding: 12px 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary, #10093D);
  border-radius: 8px;
  transition: background 0.15s;
}

.pq-mobile-link:hover {
  background: var(--primary-50, #EFF7FF);
  color: var(--primary, #2A70E9);
}

.pq-mobile-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary, #10093D);
  border-radius: 8px;
  transition: background 0.15s;
  text-align: left;
}

.pq-mobile-trigger:hover {
  background: var(--primary-50, #EFF7FF);
}

.pq-mobile-trigger[aria-expanded="true"] {
  color: var(--primary, #2A70E9);
  background: var(--primary-50, #EFF7FF);
}

.pq-mobile-trigger[aria-expanded="true"] .pq-chevron {
  transform: rotate(180deg);
}

.pq-mobile-sub {
  padding: 4px 0 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.pq-mobile-sub[hidden] {
  display: none !important;
}

.pq-mobile-sub-link {
  display: block;
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey, #4f607a);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.pq-mobile-sub-link:hover {
  background: var(--primary-50, #EFF7FF);
  color: var(--primary, #2A70E9);
}

.pq-mobile-sub-divider {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey, #4f607a);
  padding: 12px 10px 4px;
}

.pq-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border, #D4DAE3);
}

.pq-mobile-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  background: var(--primary, #2A70E9);
  color: var(--white, #fff) !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--border-radius, 8px);
  transition: background 0.15s;
}

.pq-mobile-cta-primary:hover {
  background: #1F59D6;
}

.pq-mobile-cta-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border: 1.5px solid var(--border, #D4DAE3);
  color: var(--secondary, #10093D) !important;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--border-radius, 8px);
  transition: border-color 0.15s, background 0.15s;
}

.pq-mobile-cta-outline:hover {
  border-color: var(--primary, #2A70E9);
  background: var(--primary-50, #EFF7FF);
}

.pq-mobile-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

/* Tablet: hide some nav items, show hamburger */
@media (max-width: 1024px) {
  .pq-nav-list {
    display: none;
  }

  .pq-nav-actions {
    display: none;
  }

  .pq-hamburger {
    display: flex;
  }

  .pq-nav-inner {
    padding: 0 20px;
  }

  /* Hide desktop mega panels on mobile */
  .pq-mega-panel:not(.pq-mobile-menu) {
    display: none !important;
  }
}

/* Wide screens: slightly wider inner */
@media (min-width: 1400px) {
  .pq-nav-inner {
    padding: 0 48px;
  }
}


/* ═══════════════════════════════════════════════════════════
   FALLBACK CSS VARIABLES
   (only needed if your theme doesn't define these)
══════════════════════════════════════════════════════════ */
/*
:root {
  --border-radius: 8px;
  --primary:    #2A70E9;
  --border:     #D4DAE3;
  --secondary:  #10093D;
  --grey:       #4f607a;
  --white:      #fff;
  --primary-50: #EFF7FF;
  --primary-75: #DBECFE;
  --text:       #030044;
}
*/
