/**
 * Whaticket Custom Header & Megamenu CSS Stylesheet
 */

:root {
  --wk-header-bg: #F6F5F1;
  --wk-blue: #3057FF;
  --wk-text: #0F2A51;
  --wk-mega-hover: #F0F0F0;
  --wk-white: #ffffff;
  --wk-border: rgba(15, 42, 81, 0.12);
  --wk-shadow: 0 22px 60px rgba(15, 42, 81, 0.12);
  --wk-radius: 22px;

  --wk-nav-max-width: 1490px;
  --wk-mega-box-width: 1430px;
}

/* Reset buttons and links scoped inside the custom header */
.wk-header * {
  box-sizing: border-box;
}

.wk-header a {
  color: inherit;
  text-decoration: none;
}

.wk-header button,
.wk-header select {
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
}

.wk-header {
  width: 100%;
  background: var(--wk-header-bg) !important;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
}

/* Always Fixed Header on Frontend */
body:not(.elementor-editor-active) .wk-header {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 9999 !important;
}

/* Offset for WordPress Admin Bar */
body:not(.elementor-editor-active).admin-bar .wk-header {
  top: 32px !important;
}

@media (max-width: 782px) {
  body:not(.elementor-editor-active).admin-bar .wk-header {
    top: 46px !important;
  }
}

/* Offset page content for fixed header on Frontend */
body:not(.elementor-editor-active) {
  padding-top: 84px !important;
}

@media (max-width: 880px) {
  body:not(.elementor-editor-active) {
    padding-top: 72px !important;
  }
}

.wk-nav {
  max-width: var(--wk-nav-max-width);
  margin: 0 auto;
  min-height: 84px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}

.wk-brand-area {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.wk-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--wk-blue);
  line-height: 1;
}

/* SEO Friendly Custom Language Switcher */
.wk-lang-selector {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.wk-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 6px 8px !important;
  color: var(--wk-text);
  border: 1px solid rgba(15, 42, 81, 0.10) !important;
  border-radius: 2px;
  cursor: pointer;
}

.wk-lang-current {
  color: var(--wk-text);
  font-size: 13px;
  font-weight: 700;
  outline: none;
}

.wk-lang-chevron {
  display: none;
  width: 10px;
  height: 10px;
  stroke: var(--wk-text);
  stroke-width: 2.5;
  transition: transform 0.2s ease;
}

.wk-lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--wk-white);
  border: 1px solid var(--wk-border);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(15, 42, 81, 0.08);
  padding: 4px 0;
  margin: 6px 0 0;
  list-style: none;
  min-width: 76px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 100;
}

.wk-nav.wk-nav-interactive .wk-lang-selector:hover .wk-lang-dropdown,
.wk-nav.wk-nav-interactive .wk-lang-selector:focus-within .wk-lang-dropdown,
.wk-nav.wk-nav-interactive .wk-lang-selector.is-lang-open .wk-lang-dropdown {
  opacity: 1;
  visibility: visible;
}

.wk-nav.wk-nav-interactive .wk-lang-selector:hover .wk-lang-chevron,
.wk-nav.wk-nav-interactive .wk-lang-selector.is-lang-open .wk-lang-chevron {
  transform: rotate(180deg);
}

.wk-lang-item a {
  display: block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--wk-text);
  transition: background 0.15s ease, color 0.15s ease;
}

.wk-lang-item a:hover {
  background: var(--wk-mega-hover);
  color: var(--wk-blue);
}

/* Primary Navigation Menu */
.wk-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

@media (min-width: 881px) {
  .wk-menu {
    justify-content: flex-end;
  }
}

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

.wk-header .wk-nav-link {
  color: #3956FF !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 31px 0;
  transition: color 0.2s ease;
}

.wk-header .wk-nav-link:hover,
.wk-header .wk-nav-link:focus-visible,
.wk-header .wk-nav-item:hover > .wk-nav-link,
.wk-header .wk-nav-item.is-desktop-open > .wk-nav-link {
  color: #0F2A51 !important;
}

.wk-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease, color 0.2s ease;
  stroke: currentColor;
}

.wk-nav-item.is-open > .wk-nav-link .wk-chevron,
.wk-nav-item.is-desktop-open > .wk-nav-link .wk-chevron {
  transform: rotate(180deg);
}

/* Actions Area */
.wk-actions-container {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.wk-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.wk-btn {
  min-height: 40px;
  min-width: 135px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400 !important;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.wk-btn:hover {
  transform: translateY(-1px);
}

.wk-header .wk-btn-outline {
  color: var(--wk-blue) !important;
  border: 2px solid var(--wk-blue) !important;
  background: transparent !important;
}

.wk-header .wk-btn-outline:hover {
  background: var(--wk-blue) !important;
  color: #fff !important;
}

.wk-header .wk-btn-solid {
  color: #fff !important;
  border: 2px solid var(--wk-blue) !important;
  background: var(--wk-blue) !important;
}

.wk-header .wk-btn-solid:hover {
  background: var(--wk-blue) !important;
  color: #fff !important;
  filter: brightness(0.96);
  transform: none !important;
}

/* Mobile Toggle Hamburger button */
.wk-mobile-toggle {
  display: none;
  position: relative;
  margin-left: auto;
  color: var(--wk-text);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.wk-mobile-toggle svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}
.wk-mobile-toggle svg {
  transition: opacity 0.16s ease;
}

.wk-mobile-toggle::before,
.wk-mobile-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform-origin: center;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.wk-mobile-toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.wk-mobile-toggle::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.wk-nav.is-mobile-open .wk-mobile-toggle svg {
  opacity: 0;
}

.wk-nav.is-mobile-open .wk-mobile-toggle::before,
.wk-nav.is-mobile-open .wk-mobile-toggle::after {
  opacity: 1;
}

.wk-nav:not(.wk-nav-interactive) .wk-mega,
.wk-nav:not(.wk-nav-interactive) .wk-lang-dropdown {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Megamenu Standard Wrapper Styles */
.wk-mega {
  position: absolute;
  left: 50%;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 60;
}

.wk-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -28px;
  height: 28px;
  background: transparent;
}

.wk-nav.wk-nav-interactive .wk-nav-item.is-open > .wk-mega,
.wk-nav.wk-nav-interactive .wk-nav-item.is-desktop-open > .wk-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.wk-mega--boxed {
  width: min(var(--wk-mega-box-width), calc(100vw - 48px));
}

.wk-mega--boxed .wk-mega-inner {
  width: 100%;
}

.wk-mega--full {
  width: 100vw;
  max-width: 100vw;
  background: #fff;
  box-shadow: var(--wk-shadow);
  border-radius: 0;
  overflow: hidden;
}

.wk-mega--full .wk-mega-inner {
  width: min(var(--wk-mega-box-width), calc(100vw - 48px));
  margin: 0 auto;
}

.wk-mega--full .wk-mega-shell {
  box-shadow: none;
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
}

.wk-mega-shell {
  width: 100%;
  min-height: 250px;
  background: var(--wk-white);
  border: 1px solid var(--wk-border);
  box-shadow: var(--wk-shadow);
  border-radius: 0 0 var(--wk-radius) var(--wk-radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
}

.wk-mega-left {
  background: #fff;
  border-right: 1px solid var(--wk-border);
  padding: 0;
}

.wk-mega-right {
  min-height: 250px;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
}

/* Solutions Columns Megamenu Styling */
.wk-mega--solutions-3col .wk-mega-shell {
  grid-template-columns: 240px 390px minmax(0, 1fr);
  min-height: 270px;
}

.wk-mega--solutions-2col .wk-mega-shell {
  grid-template-columns: 360px minmax(0, 1fr);
  min-height: 270px;
}

.wk-solutions-col {
  background: #fff;
  border-right: 1px solid var(--wk-border);
  padding: 18px 0;
}

.wk-solutions-info {
  min-height: 270px;
}

.wk-mega-group {
  border-bottom: 1px solid rgba(15, 42, 81, 0.06);
}

.wk-mega-group:last-child {
  border-bottom: 0;
}

.wk-mega-group-toggle {
  width: 100%;
  min-height: 56px;
  color: #0F2A51;
  padding: 0 46px 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  line-height: 1;
  font-weight: 700 !important;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: color 0.18s ease, background 0.18s ease;
}

.wk-mega-group-toggle span {
  font-weight: 700 !important;
}

.wk-mega-group-toggle:hover,
.wk-mega-group-toggle:focus-visible {
  color: var(--wk-blue);
  outline: none;
}

.wk-mega-group.is-group-open > .wk-mega-group-toggle {
  color: #0F2A51;
}

.wk-mega-group-toggle svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.wk-mega-group.is-group-open > .wk-mega-group-toggle svg {
  transform: rotate(180deg);
}

.wk-mega-group-list {
  display: none;
}

.wk-mega-group.is-group-open > .wk-mega-group-list {
  display: block;
}

.wk-mega--solutions .wk-mega-group {
  border-bottom: 0;
}

.wk-mega--solutions .wk-mega-group-toggle {
  min-height: 46px;
  padding: 0 34px 0 50px;
  pointer-events: none;
  cursor: default;
  justify-content: flex-start;
}

.wk-mega--solutions .wk-mega-group-toggle:hover,
.wk-mega--solutions .wk-mega-group-toggle:focus-visible {
  color: #0F2A51;
}

.wk-mega--solutions .wk-mega-group-toggle svg {
  display: none;
}

.wk-mega--solutions .wk-mega-group-list {
  display: block;
}

.wk-mega--solutions .wk-solution-row {
  padding: 0 48px 0 50px;
}

/* Solution lists inside Megamenus */
.wk-solution-item {
  width: 100%;
}

.wk-solution-link {
  width: 100%;
  min-height: 48px;
  color: var(--wk-text);
  display: block;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.18s ease, background 0.18s ease;
}

.wk-solution-row {
  width: 100%;
  min-height: 48px;
  padding: 0 46px 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.wk-solution-row > span {
  white-space: nowrap;
}

.wk-solution-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform 0.18s ease, color 0.18s ease;
}

.wk-solution-link:hover,
.wk-solution-link:focus-visible,
.wk-solution-link.is-active {
  background: var(--wk-mega-hover);
  color: var(--wk-blue);
  font-weight: 800;
  outline: none;
}

.wk-solution-link:hover svg,
.wk-solution-link:focus-visible svg,
.wk-solution-link.is-active svg {
  transform: translateX(4px);
  color: var(--wk-blue);
}

.wk-mobile-copy {
  display: none;
}

/* Info Panels inside Megamenus */
.wk-solution-panel {
  width: 100%;
  min-height: 250px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 42px;
  padding: 42px 46px;
}

.wk-solution-panel.is-active {
  display: flex;
  animation: wkFade 0.22s ease both;
}

@keyframes wkFade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wk-visual {
  width: 150px;
  height: 150px;
  flex: 0 0 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wk-visual svg,
.wk-visual img {
  width: 150px;
  height: 150px;
  display: block;
  object-fit: contain;
}

.wk-panel-copy {
  max-width: 550px;
}

.wk-panel-copy .wk-panel-title {
  margin: 0 0 12px;
  color: var(--wk-text);
  font-size: 24px;
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.wk-panel-copy p {
  margin: 0;
  color: var(--wk-text);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.005em;
}

.wk-industry-link {
  width: 100%;
  min-height: 48px;
  padding: 0 34px 0 50px;
  display: flex;
  align-items: center;
  color: var(--wk-text);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.18s ease, background 0.18s ease;
}

.wk-industry-link:hover,
.wk-industry-link:focus-visible {
  color: var(--wk-blue);
  background: var(--wk-mega-hover);
  font-weight: 800;
  outline: none;
}

.wk-cm-admin-edit-btn {
  position: absolute;
  background: #ff3b30;
  color: #fff !important;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  box-shadow: 0 2px 5px rgba(255,59,48,0.3);
  z-index: 1001;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.7;
  line-height: 1;
  text-decoration: none !important;
}

.wk-cm-admin-edit-btn:hover {
  background: #e02424;
  transform: scale(1.05);
  opacity: 1;
  color: #fff !important;
}

.wk-menu .wk-cm-admin-edit-btn {
  top: 50%;
  margin-top: -8px;
  left: 275px;
  right: auto;
}

.wk-actions-container .wk-cm-admin-edit-btn {
  top: 50%;
  margin-top: -8px;
  right: -55px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .wk-nav {
    gap: 20px;
  }

  .wk-menu {
    gap: 20px;
  }

  .wk-btn {
    min-width: 120px;
    padding-inline: 18px;
  }

  .wk-solution-row,
  .wk-mega-group-toggle {
    padding-left: 48px;
  }

  .wk-solution-panel {
    padding-right: 42px;
  }

  .wk-mega--solutions-3col .wk-mega-shell {
    grid-template-columns: 220px 340px minmax(0, 1fr);
  }

  .wk-mega--solutions-2col .wk-mega-shell {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .wk-mega--solutions .wk-mega-group-toggle,
  .wk-mega--solutions .wk-solution-row,
  .wk-industry-link {
    padding-left: 38px;
  }
}

@media (max-width: 880px) {
  .wk-nav {
    min-height: 72px;
    padding: 0 18px;
    flex-wrap: wrap;
    gap: 0;
  }

  .wk-nav.is-mobile-open {
    max-height: 100vh;
    overflow-y: auto !important;
  }

  .wk-brand-area {
    min-height: 72px;
  }

  .wk-logo {
    font-size: 20px;
  }

  .wk-mobile-toggle {
    display: inline-flex;
    margin-left: auto !important;
  }

  .wk-mobile-toggle,
  .wk-lang-toggle,
  .wk-header .wk-nav-link,
  .wk-mega-group-toggle {
    touch-action: manipulation;
  }

  .wk-lang-toggle {
    -webkit-tap-highlight-color: transparent;
  }

  .wk-lang-toggle:active,
  .wk-lang-toggle:focus {
    background: transparent;
    color: var(--wk-text);
  }

  .wk-lang-toggle:focus-visible {
    outline: 1px solid rgba(15, 42, 81, 0.22);
    outline-offset: 2px;
  }

  .wk-menu,
  .wk-actions-container {
    display: none;
    flex-basis: 100%;
    width: 100%;
  }

  .wk-actions {
    width: 100%;
    gap: 10px;
  }

  .wk-nav.is-mobile-open .wk-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 12px;
  }

  .wk-nav.is-mobile-open .wk-actions-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0 18px;
  }

  .wk-nav-item {
    width: 100%;
    display: block;
  }

  .wk-header .wk-nav-link {
    width: 100%;
    padding: 14px 0;
    justify-content: space-between;
    font-size: 15px;
    color: #0F2A51 !important;
  }

  .wk-header .wk-nav-link:hover,
  .wk-header .wk-nav-link:focus-visible,
  .wk-header .wk-nav-item.is-open > .wk-nav-link {
    color: #3956FF !important;
  }

  .wk-btn {
    width: auto;
    min-width: 0;
    max-width: 100%;
    min-height: 40px;
    padding: 9px 22px;
    white-space: normal;
  }

  .wk-mega {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none !important;
    transition: none;
    display: none;
  }

  .wk-mega::before {
    display: none;
  }

  .wk-nav-item.is-open > .wk-mega {
    display: block;
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none !important;
    transition: none;
  }

  .wk-nav-item.is-desktop-open > .wk-mega {
    display: none;
  }

  .wk-mega--boxed,
  .wk-mega--full {
    width: 100%;
    max-width: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }

  .wk-mega--boxed .wk-mega-inner,
  .wk-mega--full .wk-mega-inner {
    width: 100%;
    margin: 0;
  }

  .wk-mega--full .wk-mega-shell {
    box-shadow: none;
    border: 1px solid var(--wk-border);
    border-radius: 18px;
  }

  .wk-mega-shell,
  .wk-mega--solutions .wk-mega-shell {
    border-radius: 18px;
    grid-template-columns: 1fr;
    min-height: 0;
    margin: 4px 0 14px;
    box-shadow: none;
    transform: none !important;
  }

  .wk-mega-left {
    border-right: 0;
    border-bottom: 0;
    background: #fff;
  }

  .wk-solutions-col {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 42, 81, 0.08);
    padding: 0;
  }

  .wk-solutions-col:last-of-type {
    border-bottom: 0;
  }

  .wk-mega-group {
    border-bottom: 1px solid rgba(15, 42, 81, 0.08);
  }

  .wk-mega--solutions .wk-mega-group {
    border-bottom: 0;
  }

  .wk-mega-group-toggle,
  .wk-mega--solutions .wk-mega-group-toggle {
    min-height: auto;
    padding: 18px;
    font-size: 15px;
    letter-spacing: 0.045em;
    color: #0F2A51;
    pointer-events: auto;
    cursor: pointer;
    justify-content: space-between;
  }

  .wk-mega-group-toggle svg,
  .wk-mega--solutions .wk-mega-group-toggle svg {
    display: block;
    width: 15px;
    height: 15px;
  }

  .wk-mega-group-list,
  .wk-mega--solutions .wk-mega-group-list {
    display: none;
  }

  .wk-mega-group.is-group-open > .wk-mega-group-list,
  .wk-mega--solutions .wk-mega-group.is-group-open > .wk-mega-group-list {
    display: block;
  }

  .wk-solution-item {
    border-bottom: 1px solid rgba(15, 42, 81, 0.08);
  }

  .wk-solution-item:last-child {
    border-bottom: 0;
  }

  .wk-solution-link {
    min-height: auto;
    font-size: 15px;
    font-weight: 800;
    color: var(--wk-text);
    background: transparent;
    padding: 0;
  }

  .wk-solution-row,
  .wk-mega--solutions .wk-solution-row {
    padding: 16px 18px 8px 30px;
    min-height: auto;
  }

  .wk-solution-link.is-active,
  .wk-solution-link:hover,
  .wk-solution-link:focus-visible {
    background: transparent;
    color: var(--wk-blue);
  }

  .wk-solution-link svg {
    display: none;
  }

  .wk-mobile-copy {
    display: block;
    padding: 0 48px 18px 30px;
    color: var(--wk-text);
  }

  .wk-mobile-copy .wk-mobile-title {
    display: none;
  }

  .wk-mobile-copy p {
    margin: 0;
    color: var(--wk-text);
    font-size: 13px;
    line-height: 1.45;
    opacity: 0.86;
    font-weight: 400;
  }

  .wk-solution-link:hover .wk-mobile-copy .wk-mobile-title,
  .wk-solution-link:hover .wk-mobile-copy p,
  .wk-solution-link:focus-visible .wk-mobile-copy .wk-mobile-title,
  .wk-solution-link:focus-visible .wk-mobile-copy p {
    color: var(--wk-text);
  }

  .wk-industry-link {
    min-height: auto;
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(15, 42, 81, 0.08);
  }

  .wk-industry-link:last-child {
    border-bottom: 0;
  }

  .wk-industry-link:hover,
  .wk-industry-link:focus-visible {
    background: transparent;
    color: var(--wk-blue);
  }

  .wk-mega-right,
  .wk-solutions-info {
    display: none;
  }

  .wk-lang-dropdown {
    left: auto;
    right: 0;
    pointer-events: none;
  }

  .wk-nav.wk-nav-interactive .wk-lang-selector:hover .wk-lang-dropdown,
  .wk-nav.wk-nav-interactive .wk-lang-selector:focus-within .wk-lang-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .wk-nav.wk-nav-interactive .wk-lang-selector.is-lang-open .wk-lang-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .wk-nav.wk-nav-interactive .wk-lang-selector.is-lang-open .wk-lang-chevron {
    transform: rotate(180deg);
  }

  .wk-cm-admin-edit-btn {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .wk-brand-area {
    gap: 14px;
  }

  .wk-logo span:last-child {
    font-size: 19px;
  }

  .wk-lang-current {
    font-size: 12px;
  }

  .wk-mobile-copy {
    padding-right: 22px;
  }
}
