/* --- TABLET & MOBILE --- */
@media (max-width: 991px) {
    .resort-details-layout { grid-template-columns: 1fr; }
    .resort-sidebar.desktop-only { display: none; } /* Hide Sidebar, Show Sticky Bottom Bar */
}

@media (max-width: 768px) {
    /* Header & Nav */
    #menu-toggle { display: block; }
    .main-navigation { display: none; } /* Hidden, handled by Overlay */
    
    /* Hero */
    .hero-slider-container { height: 400px; }
    .hero-content h2 { font-size: 2rem; }
    
    /* Search Widget */
    .search-glass-panel { flex-direction: column; align-items: stretch; gap: 15px; }
    .search-item { padding: 0; border-left: none; border-bottom: 1px solid #eee; padding-bottom: 10px; }
    .search-widget-wrapper { position: static; transform: none; margin-top: -30px; padding: 0 15px; }
    
    /* Amenities */
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- MOBILE MENU OVERLAY --- */
#mobile-menu-overlay {
    position: fixed; top: var(--header-height); left: 0; width: 100%; height: 0;
    background: #fff; overflow: hidden; transition: 0.3s; z-index: 999;
    border-bottom: 1px solid #eee;
}
#mobile-menu-overlay.open { height: auto; padding-bottom: 20px; }
#mobile-menu-overlay ul { display: block; padding: 20px; }
#mobile-menu-overlay li { margin-bottom: 15px; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; }
#mobile-menu-overlay a { font-size: 1.1rem; font-weight: 600; display: block; }

/* --- MONEY MAKER: STICKY BOTTOM BAR --- */
.mobile-sticky-bar {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #fff; box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 12px 15px; z-index: 2000;
    display: none; /* Hidden on Desktop */
}

@media (max-width: 991px) {
    .mobile-sticky-bar { display: block; }
    body { padding-bottom: 80px; } /* Prevent content covering */
}

.bar-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 10px; }
.sticky-btn {
    border: none; padding: 12px; border-radius: 8px;
    font-weight: bold; font-size: 1rem;
    display: flex; align-items: center; justify-content: center; gap: 5px;
    cursor: pointer;
}
.btn-outline { background: #f0f0f1; color: #333; }
.btn-solid { background: var(--accent); color: #fff; } /* WhatsApp Green */