/* =========================================================
   全站底部導覽列
   - 透明黑底浮動膠囊
   - 不顯示文字
   - Active：白色指示條 + 亮色 spotlight
   ========================================================= */

body { padding-bottom: 84px; }

/* ── 全站頂部 logo header ── */
.header {
  display: flex; align-items: center;
  padding: 10px 16px;
  background: #fff; border-bottom: 1px solid #e6e6e6;
}
.header .logo a { display: flex; align-items: center; }
.header .logo img { height: 36px; width: auto; display: block; }

.bottom-nav {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 420px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #201F21;
  border-radius: 28px;
  padding: 6px 4px;
  z-index: 1000;
  border-top: none;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}

/* ── 一般項目 ── */
.bottom-nav .nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 0 8px;
  border-radius: 22px;
  text-decoration: none;
  color: #757575;
  transition: color .2s;
}

/* 隱藏文字 */
.bottom-nav .nav-item span { display: none; }

.bottom-nav .nav-item i {
  font-size: 22px;
  margin-bottom: 0;
}

/* ── Active 狀態：白色指示條 + spotlight ── */
.bottom-nav .nav-item.active {
  color: #fff;
  background: rgba(255,255,255,.10);
}

.bottom-nav .nav-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* ── 新增按鈕（+ 中央） ── */
.bottom-nav .add-button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 0 8px;
  border-radius: 22px;
  text-decoration: none;
  color: #fff;
}
.bottom-nav .add-button span { display: none; }
.bottom-nav .add-button i {
  font-size: 22px;
  margin-bottom: 0;
}
.bottom-nav .add-button.active {
  background: rgba(255,255,255,.10);
}
