/* ==========================================================================
   Search Suggestions — Border-Radius Fix
   Remove border-radius on mobile/tablet for both overlay and inline modes.
   Desktop (>1024px) keeps border-radius via search.css base rules.
   ========================================================================== */

/* Override FiboSearch hardcoded max-height (default 600px, set via inline JS) */
.dgwt-wcas-suggestions-wrapp {
  max-height: 922px !important;
}

@media (max-width: 1024px) {
  /* Overlay mode (fullscreen mobile search) */
  .dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp {
    border-radius: 0 !important;
  }

  /* Inline dropdown mode (pirx style, non-overlay) */
  .dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp {
    border-radius: 0 !important;
  }
}
