/* 購物導覽列樣式 - 模仿 momo 簡潔風格 */
.shopping-nav {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 6px 0;
  font-size: 13px;
  color: #666666;
}

.shopping-nav-container {
  max-width: 1200px;  
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.shopping-nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.shopping-nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.welcome-message {
  color: #666666;
  font-size: 13px;
  margin-right: 8px;
  padding: 3px 6px;
  font-weight: normal;
}

.welcome-message::after {
  content: "｜";
  color: #ddd;
  margin-left: 8px;
  font-size: 12px;
}

.home-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #666666;
  text-decoration: none;
  font-size: 13px;
}

.home-link:hover {
  color: #333333;
}

.search-box {
  position: relative;
}

.search-form {
  display: flex;
  align-items: center;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 3px;
  overflow: hidden;
}

.search-input {
  border: none;
  padding: 6px 10px;
  width: 180px;
  outline: none;
  font-size: 13px;
  background: transparent;
}

.search-btn {
  background: #f0f0f0;
  border: none;
  padding: 6px 10px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  border-left: 1px solid #ddd;
  font-size: 13px;
}

.search-btn:hover {
  background: #e8e8e8;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #666666;
  text-decoration: none;
  padding: 3px 6px;
  font-size: 13px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-item:hover {
  color: #333333;
}

/* 添加分隔線效果（不包含購物車） */
.nav-item:not(:last-child):not(.nav-cart-item)::after {
  content: "｜";
  color: #ddd;
  margin-left: 8px;
  font-size: 12px;
}

.nav-cart-item {
  position: relative;
  color: #666666 !important;
  font-size: 13px;
  padding: 3px 6px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-cart-item:hover {
  color: #333333 !important;
}

/* 購物車數量括弧對齊樣式 */
.nav-cart-item span {
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  display: inline;
  white-space: nowrap;
}

.nav-cart-item #topCartCount {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: inline;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

/* 移除原有的 cart-count 徽章樣式，數量現在直接顯示在括弧內 */

/* 簡化的圖示樣式 */
.icon-home::before { content: ""; }
.icon-search::before { content: "🔍"; }
.icon-user::before { content: ""; }
.icon-order::before { content: ""; }
.icon-heart::before { content: ""; }
.icon-coupon::before { content: ""; }
.icon-cart::before { content: ""; }
.icon-login::before { content: ""; }
.icon-register::before { content: ""; }
.icon-logout::before { content: ""; }

/* 桌機版專用 */
.desktop-only {
  display: block;
}

/* 手機版隱藏購物導覽列 */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}