/* ✅ Versiunea corectă cu 60% opacitate + blur */
.tippy-box[data-theme="light"] {
  background-color: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border: none !important;
  outline: none !important;
  overflow: hidden;
  padding: 0;
   max-width: 1200px !important;
}



@media (min-width: 1024px) {
  .categories__content--grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px; /* opțional */
  }
}





.menu-expanded {
  max-width: 1200px !important;
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 1rem;
}
/* Container tip „card” pentru subcategorii */
.category {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;

}

.category:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}




/* Linkuri din conținutul tabului (categorii mama) */
.menu-tabbed__content a {
  text-transform: none !important;
  font-weight: 500;
  font-size: 16px;
  color: #4b5563;
  padding: 0.4rem 0.75rem;
  display: block;
  border-radius: 8px;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

/* Hover pe linkuri mama */
.menu-tabbed__content a:hover {
  background-color: #f1f1f1;
  color: #000000 !important;        /* Negru la hover */
  transform: translateY(-2px);      /* Ridicare ușoară */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  opacity: 0.9;                     /* Ușor transparent */
}


/* Taburi principale (nivel 1) */
.menu-tabbed__index li > a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  padding: 0.3rem 0.75rem;
  display: block;
  color: #111827;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 8px;
}

/* Hover pe taburi principale */
.menu-tabbed__index li > a:hover {
  background-color: #f1f1f1;
  color: #000000;
}

/* Tab activ evidențiat */
.menu-tabbed__index li.is-active > a,
.menu-tabbed__index li.active > a {
  background-color: #1d4ed8;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 10px;
}

/* ✅ Tab activ detectat dinamic */
.menu-tabbed__index li > a[aria-selected="true"] {
  background-color: #1d4ed8;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 10px;
}



/* ----------------------- */
/* 📦 CONTAINER MENIU MEGA */
/* ----------------------- */

[id^="menu_expanded_"] {
  width: 1400px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.8); /* blur light */
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 1rem;
}

/* ----------------------- */
/* 🧱 DESIGN CATEGORII CARD */
/* ----------------------- */







//////final 1

.header__menu-item > a {
  text-transform: UPPERCASE !important;
  font-weight: 500 !important;
   font-size: 18px !important;
  
}



/* ✅ Categoria principală (Level 1) */
.menu-expanded__menu-item--level-1 > a {
  font-weight: 700;
  text-transform: none !important;
  color: #111827;
  font-size: 16px;
  padding: 0.4rem 0;
  display: block;
}



/* ✅ Subcategorie (Level 2) */
.menu-expanded__menu-item--level-2 > a {
  font-weight: 500;
  color: #4b5563;
  text-transform: none !important;
  font-size: 16px;
  padding: 0.1rem 0 0.1rem 1rem;
  display: block;
    text-transform: none !important;
}

/* ✅ Sub-subcategorie (Level 3) */
.menu-expanded__menu-item--level-3 > a {
  font-weight: 400;
  color: #6b7280;
  font-size: 16px;
  padding-left: 2rem;
    text-transform: none !important;
}

///asat modifica subcategoria

/* Efect pentru toate nivelurile de meniu (poți restrânge la doar level-2 dacă vrei) */
.menu-expanded__menu-item--level-1 > a,
.menu-expanded__menu-item--level-2 > a,
.menu-expanded__menu-item--level-3 > a {
  transition: all 0.2s ease-in-out;
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  display: block;
    text-transform: none !important;
}

/* Efect vizual la hover */
.menu-expanded__menu-item--level-1 > a:hover,
.menu-expanded__menu-item--level-2 > a:hover,
.menu-expanded__menu-item--level-3 > a:hover {
   background-color: #ffffff;
  color: #2563eb !important; /* Aceeași nuanță de albastru din imagine */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 
              0 4px 6px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  padding: 0.4rem 0.75rem;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}
}

/* Stil de bază */
.menu-expanded__menu-item--level-2 > a {
  padding: 0.3rem 1rem;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
  display: block;
  color: #1d4ed8; /* albastru intens */
  background-color: transparent;
  font-weight: 500;
   text-transform: none !important;
}
/* Stil la hover – efect Elevated */
.menu-expanded__menu-item--level-2 > a:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #1d4ed8 !important; /* păstrăm culoarea pe hover */
  transform: translateY(-1px); /* opțional: mică ridicare */

}



/* container rounded si shadow */

#header_menu_content_100037350 {
  width: 1200px;
  max-width: 100%; // Ca fallback pentru ecrane mici
 
  background: rgba(255, 255, 255, 0.2); /* Transparent */
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}