/**
 * VConsyst Navigation CSS
 * Integrated with VConsyst theme colors
 */

/* Base navigation styling */
nav {
  position: relative;
}

.header-nav {
  position: relative;
}

#primary-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none !important;
  margin: 0;
  padding: 0;
}

/* Remove bullets from all menu lists */
#desktop-primary-menu,
#desktop-primary-menu ul,
#desktop-primary-menu li {
  list-style: none !important;
  /* margin: 0; */
  padding: 0;
}

/* Navigation items */
.nav-item {
  position: relative;
}

.nav-item.btn-secondary {
  border-radius: 0 !important;
}

.nav-item a {
  position: relative;
  display: flex;
  align-items: center;
  /* padding: 1rem 1.5rem; */
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  text-decoration: none;
  color: #003955; /* VConsyst primary */
}

.nav-item a:hover,
.nav-item a.current-active {
  color: #58b884; /* VConsyst secondary */
}

/* Mega menu trigger styling */
.mega-trigger svg {
  transition: transform 0.2s ease;
}

.mega-trigger:hover svg,
.nav-item:hover .mega-trigger svg {
  transform: rotate(180deg);
}

/* Centralized mega menu container */
.mega-menu-container {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100vw;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-top: 1px solid #eeeeee;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 50;
  transform: translateX(-50%);
}

.mega-menu-container.visible {
  opacity: 1;
  visibility: visible;
}

/* Individual mega menu content */
.mega-menu-content {
  display: none;
}

.mega-menu-content.active {
  display: block;
}

/* Mega menu main title styling - Left aligned */
.mega-menu-header-left {
  text-align: left;
  padding-bottom: 1rem;
  /* border-bottom: 2px solid #e2e8f0; */
  margin-bottom: 1rem;
}

.mega-menu-main-title-left {
  font-size: 1.25rem;
  font-weight: 700;
  color: #58b884;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.mega-menu-main-title-left:hover {
  /* color: #58b884; */
  /* transform: translateX(4px); */
}

/* Add arrow animation for clickable titles */
/* a.mega-menu-main-title-left::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #58b884;
  font-weight: bold;
} */

/* a.mega-menu-main-title-left:hover::before {
  left: -16px;
  opacity: 1;
} */

/* Add underline animation for clickable titles */
/* a.mega-menu-main-title-left::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #58b884, #003955);
  transition: all 0.3s ease;
}

a.mega-menu-main-title-left:hover::after {
  width: 100%;
} */

/* Non-clickable titles (h2) styling */
h2.mega-menu-main-title-left {
  margin: 0 0 0.5rem 0;
  cursor: default;
}

/* Mega menu main title styling - Full width */
.mega-menu-header-full-width {
  text-align: left;
  width: 100%;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 1.5rem;
}

.mega-menu-main-title-full {
  font-size: 1.5rem;
  font-weight: 700;
  color: #58b884;
  text-decoration: none;
  display: block;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
}

/* .mega-menu-main-title-full:hover {
  color: #003955;
  transform: translateX(4px);
} */

/* Add arrow animation for clickable full width titles */
/* a.mega-menu-main-title-full::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #58b884;
  font-weight: bold;
} */

/* a.mega-menu-main-title-full:hover::before {
  left: -16px;
  opacity: 1;
} */

/* Add underline animation for clickable full width titles */
/* a.mega-menu-main-title-full::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #58b884, #003955);
  transition: all 0.3s ease;
} */

/* a.mega-menu-main-title-full:hover::after {
  width: 100%;
} */

/* Non-clickable full width titles (h2) styling */
h2.mega-menu-main-title-full {
  margin: 0 0 0.75rem 0;
  cursor: default;
}

/* Mega menu grid for multi-level */
.mega-menu-content .grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  padding: 3rem 1.5rem;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .mega-menu-content .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mega-menu-content .grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem;
  }
}

/* Mega menu columns */
.mega-column h3 {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  color: #003955; /* VConsyst primary */
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

.mega-column h3::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #58b884;
  font-weight: bold;
}

.mega-column h3 a {
  padding: 0;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  width: 100%;
}

.mega-column h3:hover,
.mega-column h3 a:hover {
  color: #58b884; /* VConsyst secondary */
  background-color: rgba(88, 184, 132, 0.05);
  transform: translateX(12px);
  padding-left: 2rem;
}

.mega-column h3:hover::before {
  left: 0.75rem;
  opacity: 1;
}

.mega-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mega-column ul li a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  color: #666666;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.mega-column ul li a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #58b884;
  font-weight: bold;
}

.mega-column ul li a:hover {
  color: #58b884; /* VConsyst secondary */
  background-color: rgba(88, 184, 132, 0.05);
  transform: translateX(12px);
  padding-left: 2rem;
}

.mega-column ul li a:hover::before {
  left: 0.75rem;
  opacity: 1;
}

/* Image switcher styling for single-level menus */
.image-switcher-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  color: #003955; /* VConsyst primary */
  text-decoration: none;
  overflow: hidden;
}

.image-switcher-item::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #58b884;
  font-weight: bold;
}

.image-switcher-item:hover,
.image-switcher-item.active {
  background-color: rgba(88, 184, 132, 0.05);
  color: #58b884; /* VConsyst secondary */
  transform: translateX(12px);
  padding-left: 2rem;
}

.image-switcher-item:hover::before,
.image-switcher-item.active::before {
  left: 0.75rem;
  opacity: 1;
}

#switcher-image {
  transition: opacity 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-switcher-right .relative {
  width: 100%;
  height: 400px;
  min-height: 400px;
  max-height: 400px;
}

/* Image switcher container styling */
.image-switcher-left {
  height: 400px;
  min-height: 400px;
  max-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2rem 2.5rem;
  background-color: #ffffff;
  flex: 0 0 40%;
  width: 40%;
  overflow-y: auto;
}

.image-switcher-right {
  height: 400px;
  min-height: 400px;
  max-height: 400px;
  position: relative;
  background: #ffffff;
  padding: 0;
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  align-items: stretch;
}

/* Two-level menu styling */
.two-level-left {
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem 1.5rem;
  padding-right: 0;
  /* background-color: #f5f5f5; */
  flex: 0 0 50%;
  width: 50%;
}

.two-level-right {
  min-height: 20rem;
  position: relative;
  background: #ffffff;
  padding: 1.5rem 1.5rem;
  padding-left: 0;
  flex: 0 0 50%;
  width: 50%;
}

.two-level-trigger {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  color: #003955; /* VConsyst primary */
  text-decoration: none;
  overflow: hidden;
}

.two-level-trigger::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #58b884;
  font-weight: bold;
}

.two-level-trigger:hover {
  color: #58b884; /* VConsyst secondary */
  background-color: rgba(88, 184, 132, 0.05);
  transform: translateX(12px);
  padding-left: 2rem;
}

.two-level-trigger:hover::before {
  left: 0.75rem;
  opacity: 1;
}

.two-level-trigger.active {
  background: rgba(88, 184, 132, 0.05);
  color: #58b884; /* VConsyst secondary */
  transform: translateX(12px);
  padding-left: 2rem;
}

.two-level-trigger.active::before {
  left: 0.75rem;
  opacity: 1;
}

.two-level-trigger svg {
  display: inline-block;
  margin-left: 0.5rem;
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.two-level-submenu {
  display: none;
  position: absolute;
  
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.5rem;
  padding-left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.two-level-submenu.active {
  display: block;
  opacity: 1;
}

.two-level-submenu-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  color: #666666;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.two-level-submenu-item::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #58b884;
  font-weight: bold;
}

.two-level-submenu-item:hover {
  color: #58b884; /* VConsyst secondary */
  background-color: rgba(88, 184, 132, 0.05);
  transform: translateX(12px);
  padding-left: 2rem;
}

.two-level-submenu-item:hover::before {
  left: 0.75rem;
  opacity: 1;
}

/* Legacy support for old class names */
.two-level-submenu a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  color: #666666;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.two-level-submenu a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #58b884;
  font-weight: bold;
}

.two-level-submenu a:hover {
  color: #58b884; /* VConsyst secondary */
  background-color: rgba(88, 184, 132, 0.05);
  transform: translateX(12px);
  padding-left: 2rem;
}

.two-level-submenu a:hover::before {
  left: 0.75rem;
  opacity: 1;
}

/* Mobile navigation styling */
@media (max-width: 1023px) {
  .mega-menu-container {
    display: none !important;
  }

  /* Mobile menu styling */
  #nav-menu {
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 40;
    padding: 1rem 0;
    overflow-y: auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  #nav-menu.hidden {
    display: none;
  }

  #nav-menu.mobile-open {
    display: block !important;
  }

  body.menu-open {
    overflow: hidden;
  }

  #mobile-primary-menu {
    width: 100%;
    padding: 0 1.5rem;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    list-style: none;
    margin: 0;
  }

  #mobile-primary-menu,
  #mobile-primary-menu ul,
  #mobile-primary-menu li {
    list-style: none !important;
    margin: 0;
    /* padding-left: 0; */
  }

  #mobile-primary-menu li {
    /* padding: 0; */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
    position: relative;
    list-style: none;
  }

  #mobile-primary-menu li:last-child {
    border-bottom: none;
  }

  #mobile-primary-menu > li {
    display: block;
    width: 100%;
  }

  #mobile-primary-menu > li.has-dropdown {
    display: flex;
    flex-direction: column;
  }

  #mobile-primary-menu > li.has-dropdown > .menu-item-content {
    display: flex;
    align-items: center;
    padding: 10px 0;
    justify-content: space-between;
    width: 100%;
  }

  #mobile-primary-menu > li > a {
    /* font-size: 1.125rem; */
    font-weight: 400;
    display: block;
    flex: 1;
    padding: 1rem 0;
    text-align: left;
    color: #003955;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  #mobile-primary-menu > li > a:hover {
    color: #58b884;
  }

  #mobile-primary-menu .menu-item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  #mobile-primary-menu .menu-item-content > a {
    flex: 1;
    margin-right: 1rem;
  }

  /* Submenu styling voor mobiel */
  #mobile-primary-menu .sub-menu {
    position: static;
    background: #f8f9fa;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    width: 100%;
    border-left: 4px solid #58b884;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #mobile-primary-menu .sub-menu.show {
    max-height: 500px;
  }

  #mobile-primary-menu .sub-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #mobile-primary-menu .sub-menu li:last-child {
    border-bottom: none;
  }

  #mobile-primary-menu .sub-menu li:not(.has-dropdown) a {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    color: #003955;
    display: block;
    width: 100%;
    text-align: left;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  #mobile-primary-menu .sub-menu li:not(.has-dropdown) a:hover {
    color: #58b884;
    background-color: rgba(88, 184, 132, 0.1);
    border-left: 2px solid #58b884;
    padding-left: 1.75rem;
  }

  /* Submenu items with children (nested levels) */
  #mobile-primary-menu .sub-menu .has-dropdown {
    display: flex;
    flex-direction: column;
  }

  /* Reset voor submenu items om overerving te voorkomen */
  #mobile-primary-menu .sub-menu .has-dropdown:not(.submenu-open) .dropdown-toggle {
    background: rgba(88, 184, 132, 0.1) !important;
    border-color: rgba(88, 184, 132, 0.2) !important;
  }

  #mobile-primary-menu .sub-menu .has-dropdown:not(.submenu-open) .dropdown-toggle svg {
    transform: rotate(0deg) !important;
    color: #58b884 !important;
  }

  #mobile-primary-menu .sub-menu .menu-item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: transparent;
  }

  #mobile-primary-menu .sub-menu .menu-item-content > a {
    flex: 1;
    margin-right: 0.5rem;
    padding: 0;
    display: block;
  }

  #mobile-primary-menu .sub-menu .dropdown-toggle {
    width: 32px;
    height: 32px;
    background: rgba(88, 184, 132, 0.1);
    border: 1px solid rgba(88, 184, 132, 0.2);
    border-radius: 4px;
    margin-left: 0.5rem;
    transition: all 0.2s ease;
  }

  #mobile-primary-menu .sub-menu .dropdown-toggle:hover {
    background: rgba(88, 184, 132, 0.15);
    border-color: rgba(88, 184, 132, 0.3);
  }

  #mobile-primary-menu .sub-menu .dropdown-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    color: #58b884;
  }

  #mobile-primary-menu .sub-menu .has-dropdown.submenu-open > .menu-item-content > .dropdown-toggle {
    background: #58b884;
    border-color: #58b884;
  }

  #mobile-primary-menu .sub-menu .has-dropdown.submenu-open > .menu-item-content > .dropdown-toggle svg {
    transform: rotate(180deg);
    color: white;
  }

  /* Dropdown toggle styling */
  #mobile-primary-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(88, 184, 132, 0.1);
    border: 1px solid rgba(88, 184, 132, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 1rem;
    flex-shrink: 0;
  }

  #mobile-primary-menu .dropdown-toggle:hover {
    background: rgba(88, 184, 132, 0.15);
    border-color: rgba(88, 184, 132, 0.3);
  }

  #mobile-primary-menu .dropdown-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    color: #58b884;
  }

  #mobile-primary-menu > .has-dropdown.submenu-open > .menu-item-content > .dropdown-toggle {
    background: #58b884;
    border-color: #58b884;
  }

  #mobile-primary-menu > .has-dropdown.submenu-open > .menu-item-content > .dropdown-toggle svg {
    transform: rotate(180deg);
    color: white;
  }

  /* Ensure smooth transitions for all mobile menu elements */
  #mobile-primary-menu * {
    box-sizing: border-box;
  }

  #mobile-primary-menu ul {
    overflow: hidden;
  }

  /* Mobile search form styling */
  #nav-menu form[role="search"] {
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  #nav-menu form[role="search"] input[type="search"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 1rem;
  }

  #nav-menu form[role="search"] button {
    width: auto;
    margin-left: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
  }

  /* Mobile mega menu - show as accordion */
  .has-mega-menu.mobile-open {
    background-color: #f5f5f5;
  }

  .has-mega-menu.mobile-open > a {
    color: #58b884; /* VConsyst secondary */
  }

  .has-mega-menu.mobile-open > a svg {
    transform: rotate(180deg);
  }

  /* Mobile mega menu content */
  .mobile-mega-content {
    display: none;
    padding: 1rem;
    background: #ffffff;
    border-left: 4px solid #58b884; /* VConsyst secondary */
    margin: 0.5rem 0;
  }

  .has-mega-menu.mobile-open .mobile-mega-content {
    display: block;
  }

  .mobile-mega-content .mobile-column {
    margin-bottom: 1.5rem;
  }

  .mobile-mega-content .mobile-column h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    padding: 0;
    color: #003955; /* VConsyst primary */
  }

  .mobile-mega-content .mobile-column h4 a {
    padding: 0;
    text-decoration: none;
    color: inherit;
  }

  .mobile-mega-content .mobile-column ul {
    list-style: none;
    margin: 0;
    padding-left: 1rem;
  }

  .mobile-mega-content .mobile-column ul li {
    margin-bottom: 0.25rem;
  }

  .mobile-mega-content .mobile-column ul li a {
    display: block;
    padding: 0.25rem 0;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    color: #666666;
  }

  .mobile-mega-content .mobile-column ul li a:hover {
    color: #58b884; /* VConsyst secondary */
  }

  .mobile-mega-content .mobile-category {
    margin-bottom: 0.75rem;
  }

  .mobile-mega-content .mobile-category > a {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
    color: #003955; /* VConsyst primary */
  }

  .mobile-mega-content .mobile-category > a:hover {
    color: #58b884; /* VConsyst secondary */
  }

  /* Mobile menu adjustments */
  .two-level-left,
  .two-level-right,
  .image-switcher-left,
  .image-switcher-right {
    min-height: auto;
    padding: 1rem;
  }

  .two-level-submenu {
    position: static;
    padding: 1rem;
  }

  .two-level-right,
  .image-switcher-right {
    border-top: 1px solid #eeeeee;
    margin-top: 1rem;
    padding-top: 1rem;
  }
}

/* Search dropdown improvements */
#search-dropdown {
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

#search-dropdown input[type="search"] {
  background-color: #f5f5f5;
  border: 1px solid #eeeeee;
  transition: all 0.2s ease;
}

#search-dropdown input[type="search"]:focus {
  background: #ffffff;
  border-color: #003955; /* VConsyst primary */
  box-shadow: 0 0 0 3px rgba(0, 57, 85, 0.1);
}

/* Animation improvements */
.animate-fade-in-up {
  animation: fadeInUp 0.3s ease-out;
}

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

/* Mobile language switcher styling */
@media (max-width: 1023px) {
  .mobile-language-switcher {
    padding: 0;
  }

  .mobile-language-switcher ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .mobile-language-switcher li {
    margin: 0;
    padding: 0;
    border-bottom: none;
  }

  .mobile-language-switcher li a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(88, 184, 132, 0.1);
    border: 1px solid rgba(88, 184, 132, 0.2);
    border-radius: 0.375rem;
    color: #003955;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 60px;
    justify-content: center;
  }

  .mobile-language-switcher li a:hover,
  .mobile-language-switcher li.current-language a {
    background: #58b884;
    border-color: #58b884;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(88, 184, 132, 0.3);
  }

  .mobile-language-switcher li img {
    width: 20px;
    height: auto;
    margin-right: 0.5rem;
    border-radius: 2px;
  }

  /* Override WPML widget default styling for mobile */
  .mobile-language-switcher .wpml-ls-statics-shortcode_actions {
    margin: 0;
    padding: 0;
  }

  .mobile-language-switcher .wpml-ls-statics-shortcode_actions ul {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.5rem;
  }

  .mobile-language-switcher .wpml-ls-statics-shortcode_actions li {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
  }
} 