/* megamenu.css */

/* Wrapper */
.megamenu-wrapper {
  font-family: "Inter", Sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #212124;
  position: relative;
  width: 100%;
  background: #fff;
}

/* Icon boxes */
.menu-icon-box-celulitida,
.menu-icon-box-vyprodej {
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  border-radius: 4px;
  margin-right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
}
.menu-icon-box-celulitida {
  background-color: #e86acc;
}
.menu-icon-box-vyprodej {
  font-size: 10px;
  font-weight: 900;
  background-color: #e72d34;
}

/* Labels */
.menu-label {
  display: inline-block;
}

/* Main menu */
.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  background: #fff;
  position: relative;
  gap: 24px;
  z-index: 10;
}
.main-menu li {
  cursor: pointer;
  padding: 15px 0;
  font-weight: 500;
  color: #000;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
  transition: color 0.5s;
}
.main-menu li:hover {
  color: #e86acc;
}
.main-menu li .dropdown-icon {
  margin-left: 6px;
  font-size: 0.9em;
  transition: transform 0.3s;
}

/* Base dropdown (hidden by default) */
.mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  background: #fff;
  padding: 6px 20px 40px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  flex-wrap: wrap;
  gap: 60px;
  width: 100%;
  border-radius: 0 0 10px 10px;
}

/* **The missing rule**: actually show it when .visible is toggled */
.mega-dropdown.visible {
  display: flex;
}

/* Column styles */
.mega-dropdown .column {
  min-width: 180px;
  flex: 1;
}
.mega-dropdown h4 {
  margin: 14px 0 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: #313131;
}
.mega-dropdown a {
  display: block;
  margin: 5px 0;
  font-weight: 400;
  color: #747474;
  text-decoration: none;
  font-size: 14px;
}
.mega-dropdown a:hover {
  text-decoration: underline;
}
