/* Mobile header: CSS-only menu (no JS), stable tap zones */

@media (max-width: 768px) {
  /* Keep header compact and predictable */
  .header{
    padding: 8px 10px;
  }

  .brand-logo{ height: 28px; width: auto; display:block; }

  /* On mobile we use a CSS-only dropdown menu; disable the JS drawer visuals */
  .header__nav,
  .nav-overlay{
    display: none !important;
  }

  /* Actions row must not overlap itself */
  .header__actions{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
    isolation: isolate; /* prevent strange stacking from the native select */
  }

  /* City select compact (and avoid iOS zoom) */
  .header__city{
    flex: 1;
    min-width: 0;
    max-width: 190px;
    overflow: hidden; /* clip any native hitbox overflow */
    position: relative;
    z-index: 1;
  }
  .header__city select{
    width: 100%;
    max-width: 190px;
    min-height: 44px;
    font-size: 16px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  /* Hide desktop login buttons in header (login lives in the menu panel) */
  .header__login:not(.header__menuBtn){
    display: none !important;
  }

  /* Menu button (same size as login button) */
  .mnav{
    flex: 0 0 auto;
    position: relative;
    z-index: 20;
  }
  .mnav > summary{
    list-style: none;
  }
  .mnav > summary::-webkit-details-marker{
    display:none;
  }

  .header__menuBtn{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 14px;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: 25;
  }

  /* Dropdown panel */
  .mnav__panel{
    position: fixed;
    left: 10px;
    right: 10px;
    top: 64px; /* under header */
    background: rgba(14, 14, 18, 0.98);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.55);
    padding: 10px;
    display: none;
    z-index: 80;
  }
  .mnav[open] .mnav__panel{ display:block; }

  .mnav__panel a{
    display:block;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
  }
  .mnav__panel a:active{
    background: rgba(255,255,255,0.08);
  }
  .mnav__sep{
    height: 1px;
    margin: 8px 6px;
    background: rgba(255,255,255,0.10);
  }
}

/* Booking notice strip */
.booking-notice{
  width:100%;
  background: rgba(0,0,0,0.78);
  color:#fff;
  text-align:center;
  padding:10px 14px;
  font-weight:600;
  line-height:1.25;
}
.booking-notice br{ display:none; }
@media (min-width: 768px){
  .booking-notice{ padding:8px 18px; font-size:14px; }
}
