/**
 * LaMilka Tour 0.5.17
 * Stable mobile homepage hero/CTA viewport anchor.
 *
 * Mobile browsers change the legacy `vh` unit while their address and toolbar
 * controls expand or collapse. That changed the hero height and moved the CTA
 * group. Use the small viewport unit instead, retaining the approved 88%
 * geometry while keeping the buttons at the higher, stable position.
 */
@media (max-width: 767px) {
  body.lamilka-home .lamilka-home-hero {
    height: 88vh !important; /* fallback for older mobile browsers */
    height: 88svh !important;
    min-height: 600px !important;
    max-height: none !important;
  }

  body.lamilka-home .lamilka-home-mobile-actions {
    bottom: 0 !important;
    transform: none !important;
  }
}
