/* Force uniform mega menu image sizing */
.nav-sections .category-thumbnail img.nav-img {
  max-height: 140px;
  width: auto;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FPV Hobby mega menu image fix ===== */

/* Limit the height of the FPV mega menu panel itself */
.nav-sections .fpv-hobby,
.nav-sections [data-category="fpv"],
.nav-sections .level0.fpvhobby {
  max-height: 420px;
  overflow: hidden;
}

/* Force thumbnails into a reasonable box */
.nav-sections .fpv-hobby a.category-thumbnail,
.nav-sections [data-category="fpv"] a.category-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
}

/* HARD CAP the images */
.nav-sections .fpv-hobby img,
.nav-sections [data-category="fpv"] img.nav-img {
  max-height: 120px !important;
  width: auto !important;
  object-fit: contain;
}

/* ===============================
   MEGA MENU IMAGE SIZE FIX
   =============================== */

/* Target images inside category thumbnails only */
a.category-thumbnail img.nav-img {
    max-width: 140px;
    max-height: 140px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

/* Prevent grid cells from expanding */
a.category-thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Optional: tighten spacing so menu isn’t tall */
ul.grid.grid-cols-4 {
    gap-row: 16px;
}

/* Slightly reduce wide images like propellers */
a.category-thumbnail img.nav-img[src*="prop"] {
    max-width: 120px;
    max-height: 120px;
}

a.category-thumbnail img.nav-img {
    max-width: 120px;
    max-height: 120px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

/* Hide subcategory list ONLY for ESC tile in FPV mega menu */
a[href*="/fpv/esc"] + a + ul {
    display: none !important;
}
