/* ===== Top Navigation (공통) ===== */
.topnav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f5f5f7;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.nav-wrap{
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-sizing:border-box;
}
.brand{
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  color:#ff6b81;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid #eceef3;
  box-shadow:0 6px 14px rgba(0,0,0,0.04);
  white-space:nowrap;
}
.menu{
  display:flex;
  gap:6px;
  padding:6px;
  border-radius:999px;
  background:#fff;
  border:1px solid #eceef3;
  box-shadow:0 6px 14px rgba(0,0,0,0.04);
}
.menu-item{
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  color:#444;
  padding:8px 10px;
  border-radius:999px;
  line-height:1;
  white-space:nowrap;
}
.menu-item:hover{
  background:#ffeef2;
  color:#ff4d6d;
}
.menu-item.active{
  background:#ff6b81;
  color:#fff;
}

/* ===== Footer (공통) ===== */
footer{
  text-align:center;
  font-size:12px;
  color:#888;
  margin-top:16px;
}
footer a{
  color:#888;
  text-decoration:none;
}
