/* =====================================================
   BeOrganic.sk — megamenu.css
   Mega menu — hover panel pod hlavnou navigáciou
   ===================================================== */

/* --- Skryj natívny ClickEshop dropdown --- */
.eshopCategory > ul > li > ul {
  display: none !important;
}

/* --- Mega menu panel --- */
.bo-mega-panel {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 6999;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 36px 0 40px;
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.bo-mega-panel.bo-mega-visible {
  display: block;
  pointer-events: auto;
}

.bo-mega-panel.bo-mega-open {
  opacity: 1;
}

/* --- Inner container --- */
.bo-mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 0;
  align-items: flex-start;
}

/* --- Columns --- */
.bo-mega-col {
  flex: 1;
  padding: 0 28px 0 0;
  min-width: 0;
}

.bo-mega-col:last-child {
  padding-right: 0;
}

/* Divider between columns */
.bo-mega-col + .bo-mega-col {
  border-left: 1px solid rgba(0,0,0,0.07);
  padding-left: 28px;
  padding-right: 0;
}

/* --- Column title --- */
.bo-mega-col-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 14px 0;
}

/* --- Links --- */
.bo-mega-col a {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bo-mega-col a:hover {
  color: #5a7a4a;
  text-decoration: none;
}

/* --- "Zobraziť všetko" link --- */
.bo-mega-showall {
  display: inline-block;
  margin-top: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #5a7a4a !important;
  border-bottom: 1px solid #5a7a4a;
  padding-bottom: 1px;
  text-decoration: none !important;
}

.bo-mega-showall:hover {
  color: #3d5533 !important;
  border-bottom-color: #3d5533;
}

/* --- Active nav item highlight --- */
.eshopCategory > ul > li.bo-mega-active > a {
  border-bottom-color: #5a7a4a !important;
  color: #5a7a4a !important;
}

/* --- Overlay backdrop (click to close) --- */
.bo-mega-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 6998;
  background: rgba(0,0,0,0.15);
}

.bo-mega-backdrop.bo-mega-visible {
  display: block;
}

/* --- Hide on mobile --- */
@media (max-width: 800px) {
  .bo-mega-panel,
  .bo-mega-backdrop {
    display: none !important;
  }
}
