/**
 * LaMilka Tour 0.4.92 — mobile homepage action alignment and booking-flow
 * scroll boundary.
 *
 * Scope:
 * - keep both homepage action icon+label groups centered;
 * - use a finer airplane stroke and rotate it 45 degrees toward the east;
 * - while mobile Tour Booking Focus Mode is active, prevent document scrolling
 *   below the current visible end of the expanding booking module.
 */

@media (max-width: 767px) {
  /* Center the complete icon + label group in both action rows. */
  .lamilka-home .lamilka-home-mobile-actions .lamilka-home-action,
  .lamilka-home .lamilka-home-mobile-cta > a {
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-align: center !important;
  }

  .lamilka-home .lamilka-home-mobile-actions .lamilka-home-action__icon,
  .lamilka-home .lamilka-home-mobile-cta > a .lamilka-home-action__icon {
    align-items: center !important;
    display: inline-flex !important;
    flex: 0 0 24px !important;
    height: 24px !important;
    justify-content: center !important;
    min-width: 24px !important;
    width: 24px !important;
  }

  .lamilka-home .lamilka-home-mobile-actions .lamilka-home-action__label,
  .lamilka-home .lamilka-home-mobile-cta > a > span:last-child {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    text-align: center !important;
  }

  /* Fine, simple take-off mark: 45 degrees toward the upper-right/east. */
  .lamilka-home .lamilka-home-mobile-actions .lamilka-home-action:first-child .lamilka-home-action__plane-simple,
  .lamilka-home .lamilka-home-mobile-cta > a:first-child .lamilka-home-action__plane-simple {
    display: block !important;
    height: 24px !important;
    width: 24px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.45 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    transform: rotate(-45deg) !important;
    transform-origin: 50% 50% !important;
    vector-effect: non-scaling-stroke !important;
    shape-rendering: geometricPrecision !important;
  }

  /* Match the compass footprint so the two labels remain optically centered. */
  .lamilka-home .lamilka-home-mobile-actions .lamilka-home-action:nth-child(2) .lamilka-home-action__icon,
  .lamilka-home .lamilka-home-mobile-cta > a:nth-child(2) .lamilka-home-action__icon {
    flex-basis: 24px !important;
    height: 24px !important;
    width: 24px !important;
  }

  /* Suppress page-bottom rubber-banding while the JS boundary is active. */
  body.lamilka-tour-focus-mode,
  body.lamilka-tour-scroll-capped {
    overscroll-behavior-y: none !important;
  }
}
