/* ================================
   Βασικά στυλ για το Mega Menu v2.2
   (Mobile: Vertical menu με right-to-left submenus)
================================ */
.custom-mega-menu {
  position: relative;
  z-index: 999;
  margin-block-end: 0;
}

.custom-mega-menu .cmm-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.custom-mega-menu .cmm-menu > li {
  position: relative;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  justify-content: center;
  text-align: center;
  align-items: center;
  display: inline-flex;
}

/* .custom-mega-menu .cmm-menu > li.active {
  background-color: rgba(0, 0, 0, 0.05);
} */

.megaMenuContainerHovered:hover{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px !important;
}

/* Χρώματα ανάλογα με το transparent row */
div[data-transparent-row="yes"] .custom-mega-menu li a {
  color: #fff;
  background-color: rgba(0,0,0,0.01);
}

.page-id-6942 div[data-transparent-row="yes"] .custom-mega-menu li a {
  color: #232323;
}

div[data-transparent-row="no"] .custom-mega-menu li a, .custom-mega-menu li a{
  color: #232323;
}

div[data-transparent-row="yes"] .custom-mega-menu .cmm-arrow-icon {
  fill: #fff;
}

.page-id-6942 div[data-transparent-row="yes"] .custom-mega-menu .cmm-arrow-icon {
  fill: #232323;
}

div[data-transparent-row="no"] .custom-mega-menu .cmm-arrow-icon, .custom-mega-menu .cmm-arrow-icon {
  fill: #232323;
}

.custom-mega-menu .cmm-menu > li > a {
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 16px;
  cursor: pointer;
}

/* Arrow icon - εμφανίζεται μόνο σε items με submenu */
.custom-mega-menu .cmm-arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* Περιστροφή του arrow όταν είναι ανοιχτό - ΜΟΝΟ ΓΙΑ DESKTOP */
@media (min-width: 1025px) {
  .custom-mega-menu .cmm-menu > li.active .cmm-arrow-icon {
    transform: rotate(180deg);
  }
}

/* Items χωρίς submenu δεν έχουν arrow */
.custom-mega-menu .cmm-menu > li:not(.has-submenu) .cmm-arrow-icon {
  display: none;
}

/* ================================
   Full-width Mega Submenu με Smooth Slide Animation (DESKTOP)
================================ */

/* Overlay με βελτιωμένο fade */
.cmm-overlay {
  position: fixed;
  top: calc(13.5vh + var(--admin-bar-height));
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 998;
}

.cmm-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Container του submenu με smooth animations - DESKTOP */
.cmm-fullwidth-submenu {
  position: fixed;
/*   top: 117px; */
  left: 0;
  width: 100vw;
  max-height: calc(80vh - 100px);
  background: #f5fafcf0;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 0;
  /* Βελτιωμένο slide animation με smooth easing */
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.6s ease;
}

/* Όταν ανοίγει - slide down */
.cmm-fullwidth-submenu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Όταν κλείνει - smooth slide up */
.cmm-fullwidth-submenu.closing {
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Close Button */
.cmm-close-submenu {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 44px;
  height: 44px;
  border: 2px solid #232323;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 0;
}

.cmm-close-submenu:hover {
  background: #232323;
  transform: rotate(90deg);
}

.cmm-close-submenu:hover svg {
  color: white;
}

.cmm-close-submenu svg {
  color: #232323;
  transition: color 0.3s ease;
}

/* Template containers */
.cmm-template {
  display: none;
  animation: fadeInContent 0.4s ease 0.2s forwards;
  opacity: 0;
}

.cmm-template.active {
  display: block;
}

/* Fade out animation για template όταν κλείνει */
.cmm-template.closing {
  animation: fadeOutContent 0.3s ease forwards;
}

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

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

/* ================================
   Plan a Trip Styles (existing styles)
================================ */
ul.submenu {
  list-style: none;
  margin: 0;
  padding: 16px;
}

.submenu .sub-toggle {
  border-radius: unset;
  align-items: center;
  border-bottom: 1px solid #3AA6B9;
  color: #232323;
  cursor: pointer;
  display: flex;
  font-size: .875rem;
  font-weight: 500;
  justify-content: space-between;
  line-height: 1;
  padding: 16px;
  text-decoration: none;
  text-transform: uppercase;
}

ul.nav-panel-items.horizontal li {
  border-bottom: 1px solid #3AA6B9;
  display: flex;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
  padding: 16px;
  text-decoration: none;
  text-transform: uppercase;
}

.submenu-items span.link-text {
  color: #232323;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
  padding: 16px;
  text-decoration: none;
  text-transform: uppercase;
}

.submenu-container {
  display: grid;
  grid-template-columns: 42% 58%;
  margin: 0 auto;
  max-width: 1224px;
}

.submenu-items {
  border-left: 1px solid #3AA6B9;
  padding-left: 21px;
}

.submenu-items .expandable-content {
  display: none;
}

.submenu-items .expandable-content.open {
  display: block;
}

ul.nav-panel-items.card-list.horizontal,
.nav-panel-items.horizontal {
  list-style: none;
  margin: 0;
  padding: 0;
}

.submenu-items .dropdown-content__title {
  display: none;
}

.link-list-elements a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.link-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.link-arrow {
  display: flex;
  align-items: center;
}

.menu-item-archiki > svg,
.menu-item-blog-nea > svg {
  display: none !important;
}

.ccc-external-controls .ccc-control-next img,
.ccc-external-controls .ccc-control-prev img {
  width: 20px;
  height: 25px;
}

.ccc-external-controls .ccc-control-next,
.ccc-external-controls .ccc-control-prev {
  margin-right: 12px;
  width: 48px;
  height: 48px;
  border: 2px solid #333;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.ccc-external-controls .ccc-control-next:hover,
.ccc-external-controls .ccc-control-prev:hover {
  background: #333;
}

.ccc-external-controls .ccc-control-next:hover img,
.ccc-external-controls .ccc-control-prev:hover img {
  filter: brightness(0) invert(1);
}

/* ================================
   Language Switcher Styles
================================ */
.cmm-language-switcher .cmm-flag-emoji img {
  width: 18px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

.cmm-language-switcher .cmm-lang-dropdown {
  display: none;
  position: absolute;
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  top: 44px;
}

.cmm-language-switcher:hover .cmm-lang-dropdown {
  display: block;
}

.cmm-language-switcher .cmm-lang-dropdown a {
  display: flex;
  align-items: center;
  padding: 6px 14px;
  text-decoration: none;
  color: #333 !important;
}

.cmm-language-switcher .cmm-lang-dropdown a:hover {
  background: #f5f5f5;
}

/* ================================
   MOBILE & TABLET RESPONSIVE DESIGN
   Κάθετο menu με right-to-left submenus
================================ */
@media (max-width: 1023.98px) {
  

  .ct-header-text {
      width: 100%;
  }

  .cmm-menu .menu-item a{
    color:#000;
  }

  .cmm-menu .menu-item a:hover{
    color:var(--theme-link-initial-color);
  }
  
  /* Κάθετο πρώτο level του menu */
  .custom-mega-menu {
    width: 100%;
  }
  
  .custom-mega-menu .cmm-menu {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
  }
  
  .custom-mega-menu .cmm-menu > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%;
  }
  
  .custom-mega-menu .cmm-menu > li > a {
    width: 100%;
    justify-content: flex-start;
    font-size: 15px;
    padding: 1rem 1.5rem 1rem 0;
  }

    a.cmm-lang-trigger{
      justify-content: start !important;
      padding: 1rem 1.5rem 1rem 0 !important;
  }
  
  /* Arrow για mobile - δείχνει δεξιά μόνο για items ΜΕ submenu */
  .custom-mega-menu .cmm-menu > li.has-submenu .cmm-arrow-icon {
    display: inline-block;
    transform: rotate(-90deg); /* Δεξιά */
    fill: #000;
  }

  .custom-mega-menu .cmm-menu > li.has-submenu .cmm-arrow-icon:hover{
    fill: var(--theme-link-initial-color);
  }
  
  .custom-mega-menu .cmm-menu > li.has-submenu.active .cmm-arrow-icon {
    transform: rotate(-90deg); /* Παραμένει δεξιά, δεν περιστρέφεται */
  }
  
  /* Items ΧΩΡΙΣ submenu - κρύψε το arrow */
  .custom-mega-menu .cmm-menu > li:not(.has-submenu) .cmm-arrow-icon {
    display: none;
  }
  
  /* Overlay για mobile */
  .cmm-overlay {
    top: 0;
    background: rgba(0, 0, 0, 0.6);
  }
  
  /* Submenu container - Slide από ΔΕΞΙΑ */
  .cmm-fullwidth-submenu {
    top: 0;
    left: auto;
    right: 0;
    width: 100%; 
    max-width: 100%;
    height: 100vh;
    max-height: 100vh;
    /* Right-to-left animation */
    transform: translateX(100%);
    opacity: 1; /* Opacity πάντα 1 για mobile */
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Όταν ανοίγει - slide από δεξιά */
  .cmm-fullwidth-submenu.active {
    transform: translateX(0);
    visibility: visible;
  }
  
  /* Όταν κλείνει - slide προς τα δεξιά */
  .cmm-fullwidth-submenu.closing {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Close button για mobile */
  .cmm-close-submenu {
    top: 15px;
    right: 15px;
    left: auto;
    width: 36px;
    height: 36px;
  }
  
  /* Template animations για mobile - fade only */
  .cmm-template {
    animation: fadeInMobile 0.3s ease forwards;
  }
  
  .cmm-template.closing {
    animation: fadeOutMobile 0.2s ease forwards;
  }
  
  @keyframes fadeInMobile {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeOutMobile {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  
  /* Submenu container adjustments */
  .submenu-container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .submenu-items {
    border-left: none;
    border-top: 1px solid #3AA6B9;
    padding-left: 0;
    padding-top: 1rem;
    margin-top: 1rem;
  }
  
  /* Language switcher για mobile - ΠΑΡΑΜΕΝΕΙ dropdown */
  .cmm-language-switcher {
    margin-top: 0.5rem;
    padding: 0;
  }
  
  .cmm-language-switcher > a {
    display: flex !important;
    width: 100%;
  }
  
  .cmm-language-switcher .cmm-lang-dropdown {
    position: absolute;
    display: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    margin-top: 0;
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    z-index: 10;
  }
  
  .cmm-language-switcher:hover .cmm-lang-dropdown,
  .cmm-language-switcher.active .cmm-lang-dropdown {
    display: block;
  }
  
  .cmm-language-switcher .cmm-lang-dropdown li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .cmm-language-switcher .cmm-lang-dropdown li:last-child {
    border-bottom: none;
  }
}

/* Για οθόνες >= 2560px (2K monitors) */
@media only screen and (min-width: 2560px) {
  /* .megamenuPliroforiesLeft, .megamenuEmpeiriesLeft {
    padding-left: 25vw !important;
  } */

  /* .cmm-fullwidth-submenu {
      position: fixed;
      top: 117px;
      left: 57rem;
      width: 57vw;
      max-height: calc(80vh - 100px);
      background: #F4F9FD;
      z-index: 9999;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow-y: auto;
      overflow-x: hidden;
      margin-bottom: 0;
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s ease;
      margin-block-end: 0 !important;
      padding: 2rem 0;
      border-radius: 0 0 13px 13px;
  }

  .cmm-overlay {
    top: 5.5vh;
  } */

  .uw20{
    width:21%;
  }

  .megamenuPlirofories{
    --content-width: 76% !important;
  }

  .megamenuRegions__list {
    columns: 2 !important;
  }
}

/* ================================
   Language Switcher Styles (Google Translate)
================================ */
.cmm-language-switcher {
  position: relative;
}

.cmm-language-switcher .cmm-lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

.cmm-language-switcher .cmm-globe-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cmm-language-switcher .cmm-current-lang {
  font-weight: 600;
  font-size: 16px;
}

/* Desktop: hide text on smaller screens */
@media (max-width: 640px) {
  .cmm-language-switcher .cmm-current-lang {
    display: none;
  }
}

.cmm-language-switcher .cmm-lang-dropdown {
  display: none;
  position: absolute;
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  top: 44px;
  min-width: 150px;
  z-index: 1000;
  left: 20%;
}

.cmm-language-switcher:hover .cmm-lang-dropdown {
  display: block;
}

.cmm-language-switcher .cmm-lang-dropdown li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cmm-language-switcher .cmm-lang-dropdown li:last-child {
  border-bottom: none;
}

.cmm-language-switcher .cmm-lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  text-decoration: none;
  color: #333 !important;
  transition: background 0.2s ease;
}

.cmm-language-switcher .cmm-lang-dropdown a:hover {
  background: #f5f5f5;
}

.cmm-language-switcher .cmm-lang-flag {
  font-size: 18px;
  line-height: 1;
}

.cmm-language-switcher .cmm-lang-name {
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   Google Translate Fixes
   ============================================ */

/* Απόκρυψη Google Translate highlight effects */
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q,
.VIpgJd-yAWNEb-VIpgJd-fmcmS,
.goog-text-highlight,
span[style*="background-color: rgb(201, 215, 241)"] {
    background-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Disable όλα τα Google generated styles */
[class*="VIpgJd"],
[class*="goog-"] {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Fix για links που highlight-άρονται */
a[style*="background-color"] {
    background-color: transparent !important;
}

/* Smooth transition για το loading */
body {
    transition: opacity 0.3s ease-in-out;
}

/* ================================
   Language Switcher — Modern Radix Style
================================ */
.cmm-language-switcher {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    padding: 0 1rem !important;
}

/* Trigger button */
.cmm-lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
    color: inherit;
    white-space: nowrap;
}

.cmm-lang-trigger:hover {
    background: rgba(0, 0, 0, 0.06);
}

.cmm-lang-trigger:focus-visible {
    outline: 2px solid #3AA6B9;
    outline-offset: 2px;
}

.cmm-globe-icon {
    flex-shrink: 0;
    opacity: 0.85;
}

.cmm-current-lang {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Arrow — κληρονομεί την κοινή λογική */
.cmm-language-switcher .cmm-arrow-icon {
    transition: transform 0.25s ease;
    opacity: 0.7;
    fill: currentColor;
}

.cmm-language-switcher.active .cmm-arrow-icon {
    transform: rotate(180deg);
}

/* Dropdown panel */
.cmm-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 4px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 9999;
    /* Animate in */
    opacity: 0;
    transform: scale(0.95) translateY(-4px);
    transform-origin: top right;
    transition: opacity 0.15s ease, transform 0.15s ease;
    pointer-events: none;
}

.cmm-lang-dropdown[data-state="open"] {
    display: block;
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    animation: langDropdownIn 0.15s ease forwards;
}

@keyframes langDropdownIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-4px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Menu items */
.cmm-lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    color: #232323;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    user-select: none;
    white-space: nowrap;
}

.cmm-lang-item:hover,
.cmm-lang-item:focus {
    background: #f4f4f5;
    color: #111;
    outline: none;
}

.cmm-lang-item.active {
    background: #f0f9ff;
    color: #3AA6B9;
    font-weight: 600;
}

.cmm-lang-flag {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.cmm-lang-name {
    font-size: 13px;
}

/* Transparent header override */
div[data-transparent-row="yes"] .cmm-lang-trigger {
    color: #fff;
}

div[data-transparent-row="yes"] .cmm-lang-trigger:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ================================
   Mobile overrides
================================ */
@media (max-width: 1024px) {
    .cmm-language-switcher {
        padding: 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    .cmm-lang-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 1rem 1.5rem 1rem 0;
        font-size: 15px;
        border-radius: 0;
    }

    .cmm-lang-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 0;
        background: #fafafa;
        padding: 4px 0;
        min-width: 100%;
        transform: none !important;
        animation: none !important;
    }

    .cmm-lang-dropdown[data-state="open"] {
        animation: none !important;
    }

    .cmm-lang-item {
        padding: 10px 1.5rem;
        border-radius: 0;
    }
}

/*Google Translate*/
.gt_selected a {
    border: none !important;
}

.gt_container-opmsto .gt_switcher .gt_selected {
    width: 170px !important;
}

.gt_container--sptnei .gt_switcher {
    width: 170px !important;
}


.ct-sticky-container [data-sticky="shrink"] .gt_selected {
    background: transparent !important;
}

/* ================================
   Language Switcher - Flag Images
================================ */

/* Styling για τις εικόνες σημαιών */
.cmm-lang-flag {
    width: 27px;
    height: 21px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Για να είναι inline με το κείμενο */
.cmm-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* No translate class - Prevent Google Translate */
.notranslate {
    /* Google Translate θα αγνοήσει αυτό το element */
}

/* Hamburger breakpoint: 999px → 1024px */
@media (max-width: 1023.98px) {
    #header [data-device="desktop"] {
        display: none !important;
    }
}

@media (min-width: 1000px) and (max-width: 1023.98px) {
    #header [data-device="mobile"] {
        display: block !important;
    }
    
    /* Fix transparent header στο 1000-1024px range */
    #header [data-device="mobile"][data-transparent] {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
	
	[data-header*="type-1"] #offcanvas .ct-panel-inner {
        background-color: var(--theme-palette-color-6);
    }

    [data-header*="type-1"] #offcanvas {
        --side-panel-width: 80vw;
    }

    [data-header*="type-1"] #offcanvas .ct-toggle-close {
        --theme-icon-color: var(--theme-palette-color-4);
    }

    [data-header*="type-1"] [data-id="offcanvas-logo"] {
        --logo-max-height: 40px;
    }

    [data-header*="type-1"] [data-id="socials"].ct-header-socials {
        --items-spacing: 12px;
    }

    [data-header*="type-1"] [data-id="socials"].ct-header-socials [data-color="custom"] {
        --theme-icon-color: var(--theme-palette-color-4);
        --background-color: var(--theme-palette-color-4);
    }
	
	#offcanvas [data-device="mobile"] {
        display: block !important;
    }

    #offcanvas [data-device="desktop"] {
        display: none !important;
    }
	
	li.menu-item.menu-item-prostheste-to-katalyma-sas {
		width: fit-content;
		margin-top: 19px;
		border-bottom: none !important;
	}
}

@media (min-width: 1024px) {
    #header [data-device="mobile"] {
        display: none !important;
    }
}

@media (min-width: 1024px) and (max-width: 1330px){
  .custom-mega-menu .cmm-menu > li {
      padding: 0.5rem 0.5rem;
  }

  .custom-mega-menu .cmm-menu > li > a {
      font-size: 0.85rem;
  }
}



