/* custom overrides (loaded last) */
@media (max-width: 767px) {
  .headerAndNavContainer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
  }
  /* eyebrow (secondary nav) collapses on scroll to reclaim space */
  .secondaryNav {
    overflow: hidden;
    max-height: 300px;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }
  .secondaryNav.eyebrow-collapsed {
    max-height: 0 !important;
    opacity: 0 !important;
  }
}

/* Newsletter (Lumistry capture): hide the widget's built-in title
   ("Sign Up For Our Newsletter") and subtitle ("Get pharmacy news and
   reminders by email.") while keeping the email input and Subscribe button. */
[data-lumistry-capture] .lk-head {
  display: none !important;
}

/* Mobile tap targets: guarantee the header CTAs and nav links meet the ~44px
   minimum recommended touch size, without changing their look on desktop. */
@media (max-width: 767px) {
  .headerNav a,
  .primaryNav a,
  .secondaryNav a,
  .headerContent .button,
  .headerContent a.btn,
  .appDownload a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
