/* =========================================================
   WINTOFX PATCH (NON-DESTRUCTIVE)
   Hamburger dropdown: prevent title/item text from breaking into multiple lines

   Why this file exists:
   - We DO NOT touch/modify your original custom.css
   - This patch is loaded AFTER custom.css from styles.blade.php
   ========================================================= */

@media (min-width: 992px){
  /* Let the dropdown grow to fit the longest line (while staying inside viewport) */
  .wfx-desktop-hamburger .wfx-desktop-hamburger-dropdown{
    width: max-content;
    min-width: 220px;                 /* keep your current minimum */
    max-width: min(92vw, 520px);      /* safety: never go off-screen */
  }

  /* Titles + items must stay on a single line */
  .wfx-desktop-hamburger .wfx-hmb-title,
  .wfx-desktop-hamburger .wfx-hmb-item{
    white-space: nowrap;
  }

  /* If something is still too long, keep it on 1 line and trim instead of wrapping */
  .wfx-desktop-hamburger .wfx-hmb-title,
  .wfx-desktop-hamburger .wfx-hmb-item{
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
