/* ── TOP HEADER ─────────────────────────────────── */
.top-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; 
  /* max-width: 430px;  */
  z-index: 300;
  /* background: var(--indigo); */
  background: #fff;
  border-bottom: 1px solid #DFDFDF;
}
.header-row1 {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px 8px;
}
.header-logo {
  height: 28px; width: auto; object-fit: contain;
  display: block;
}
.header-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 900; color: #fff;
}
.header-logo-text em { color: var(--saffron); font-style: normal; }
.header-icons { display: flex; gap: 10px; align-items: center; }
.hdr-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; border: none;
  color: #fff; position: relative;
}
.user-avatar-btn {
  width: 34px; height: 34px; border-radius: 50%;
  /* background: var(--mustard); */
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer; overflow: hidden; flex-shrink: 0;
  position: relative;
  text-decoration: none;
}
.user-avatar-btn img { width: 100%; height: 100%; object-fit: cover; }
.user-avatar-fallback {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem; font-weight: 900; font-style: italic;
  color: var(--indigo); line-height: 1;
}

/* ── CITY TABS ───────────────────────────────────── */
.cat-tabs-wrap {
  /* position: sticky; top: 78px; z-index: 200;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05); */
  padding: 30px;
}

.cat-tabs {
  display: flex; overflow-x: auto;
  padding: 0 12px;
  scrollbar-width: none; gap: 10px;
}
.cat-tabs::-webkit-scrollbar { display: none; }
/* .cat-tab {
  flex-shrink: 0; display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  padding: 10px 14px 8px;
  border-bottom: 2.5px solid transparent;
  cursor: pointer; transition: all .2s;
} */
 .cat-tab {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    /* padding: 10px 14px 8px; */
    padding: 8px 10px;
    /* border-bottom: 2.5px solid transparent; */
    cursor: pointer;
    transition: all .2s;
    background: #FFF;
    border: 1px solid #DFDFDF;
    border-radius: 23px;
 }
.cat-tab.active { border-color: #FF3C00; }
.cat-tab-icon { font-size: 1.15rem; line-height: 1; }
.cat-tab-label {
  font-size: 0.68rem; font-weight: 600;
  color: var(--muted); white-space: nowrap;
}
/* .cat-tab.active .cat-tab-label { color: var(--saffron); } */


@media (max-width: 768px) {
  .cat-tabs-wrap {
    width: 100%;
    padding: 10px 10px 0px;
            background: white;
        margin-bottom: 10px;
        /* position: fixed; */
        /* top: 79px; */
        /* z-index: 9999; */
  }
  .header-row1{
        padding: 6px 16px 0px;
  }
  .cat-tab {
    flex-direction: column;
    border: 0;
  }
  .cat-tabs {
    justify-content: space-between;
  }
  .cat-tab.active {
    border-bottom: 3px solid #FF3C00;
    border-radius: 0;
  }
}

/* ── BOTTOM NAV ─────────────────────────────────── */
.bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; 
  /* max-width: 430px;  */
  z-index: 300;
  display: flex; align-items: stretch;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
  padding-bottom: var(--safe-b);
}
.bnav-item {
  flex: 1; display: flex;
  align-items: center; justify-content: center;
  /* gap: 4px; padding: 10px 4px 8px; */
      padding: 4px 2px 8px;
          margin: 12px 0px;
  text-decoration: none; color: var(--muted);
  cursor: pointer; border: none; background: none;
  font-family: 'DM Sans', sans-serif;
  transition: color .2s; position: relative;
      gap: 4px;
}
.bnav-item.active { color: #FF3C00; background: #FDF3EC;
    margin: 12px 2px;
    border-radius: 30px;}
/* .bnav-item.active::after {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 2.5px; border-radius: 2px;
  background: var(--saffron);
} */
.bnav-icon { font-size: 1.2rem; line-height: 1; }
.bnav-label { font-size: 14px;
    font-weight: 600; }
