
body {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  background: #fff;
  color: #222;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-bottom: 1px solid #ddd;
  font-size: 20px;
  font-weight: bold;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

#product-list {
  padding-top: 70px; /* header 높이만큼 아래로 내림 */
  margin-bottom: 70px; /* 하단바 안 가리게 */
}

.card {
  display: flex;
  gap: 10px;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.card img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.card-content {
  flex: 1;
}

.card-category {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}

.card-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 4px;
}

.price {
  font-size: 14px;
  color: #d60000;
  font-weight: bold;
  margin-bottom: 2px;
}

.status {
  font-size: 12px;
  color: #555;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fff;
  border-top: 1px solid #ddd;
  height: 60px;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.05);
}

.bottom-nav a {
  flex: 1;
  font-size: 15px;
  text-align: center;
  color: #444;
  text-decoration: none; /* 밑줄 제거 */
  line-height: 60px;     /* 세로 중앙 정렬 */
}

.bottom-nav a:hover {
  background: #f9f9f9;   /* 살짝 배경 변화 */
}
