/* Force circular seal badges (Tailwind img height:auto otherwise stretches them) */
img.badge-seal {
  width: 3.75rem !important;
  height: 3.75rem !important;
  max-width: none !important;
  object-fit: contain !important;
  flex-shrink: 0;
}

img.badge-seal-md {
  width: 4.5rem !important;
  height: 4.5rem !important;
  max-width: none !important;
  object-fit: contain !important;
  flex-shrink: 0;
}

img.badge-seal-hero {
  width: 4.25rem !important;
  height: 4.25rem !important;
  max-width: none !important;
  object-fit: contain !important;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  img.badge-seal-hero {
    width: 9rem !important;
    height: 9rem !important;
  }
  img.badge-seal-md {
    width: 5rem !important;
    height: 5rem !important;
  }
}

@media (min-width: 1024px) {
  img.badge-seal-hero {
    width: 11rem !important;
    height: 11rem !important;
  }
}

/* Slimmer sticky WhatsApp bar on phones */
#whatsapp-sticky-bar {
  padding: 0.65rem 1rem !important;
}

#whatsapp-sticky-bar a,
#whatsapp-sticky-bar button {
  padding-top: 0.7rem !important;
  padding-bottom: 0.7rem !important;
  font-size: 0.95rem !important;
  line-height: 1.25 !important;
}

/* Mobile nav panel */
#mobile-nav-panel {
  display: none;
}

#mobile-nav-panel.is-open {
  display: block;
}

@media (min-width: 768px) {
  #mobile-nav-panel,
  #mobile-nav-panel.is-open,
  [data-mobile-nav-toggle] {
    display: none !important;
  }
}

/* Hide long brand taglines under the logo on phones */
@media (max-width: 767px) {
  header a > div > p:nth-of-type(2) {
    display: none !important;
  }

  /* Keep hamburger reachable while scrolling (heroes already pad for overlay header) */
  header.absolute {
    position: fixed !important;
    z-index: 50;
  }

  /* Static headers (e.g. snorkeling hub) — pin without overlapping content */
  header:not(.absolute) {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
  }
}
