/* ======================================================= */
/* SHANAYA — MOBILE BOTTOM NAVIGATION                      */
/* Shared across index, rooms, and booking pages           */
/* ======================================================= */

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 760px) {

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(20, 14, 9, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.36);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
    position: relative;
  }

  .mbn-item:active {
    color: rgba(255, 255, 255, 0.7);
  }

  .mbn-item.mbn-active {
    color: #C4AB74;
  }

  .mbn-item.mbn-active .mbn-icon-wrap i {
    color: #C4AB74;
  }

  .mbn-item.mbn-active::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #C4AB74;
  }

  .mbn-icon-wrap {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mbn-icon-wrap i {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.36);
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .mbn-item:active .mbn-icon-wrap i {
    transform: scale(0.9);
  }

  .mbn-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #C4AB74;
    color: #1a1410;
    font-size: 9px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  }

  .mbn-badge[data-count="0"],
  .mbn-badge:empty {
    display: none;
  }

  /* Push page content above the nav bar */
  body {
    padding-bottom: 72px;
  }

}
