header.header-pc {
  background-color: #000000;
  padding: 1.5rem 0;
  position: relative;
}
.header-pc .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.header-pc .logo { flex-shrink: 0; margin-left: -8px; }
.header-pc .header-location {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none !important;
    text-underline-offset: 0;
    position: relative !important;
    flex-shrink: 0;
    width: fit-content;
    max-width: fit-content;
    overflow: hidden;
}
.location-icon { font-size: 20px; color: #ffcc00; flex-shrink: 0; }
.location-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}
.location-title {
  font-size: 11px;
  color: #aaaaaa;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.location-current {
  font-size: 13px;
  color: #ffffff;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 15ch;
}
.header-pc .search-bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 4px;
    padding: 5px 10px;
    flex-shrink: 0;
    width: 400px;
}
.header-pc .search-bar input { border: none; outline: none; width: 100%; background: transparent; }
.header-pc .search-bar button { background: none; border: none; cursor: pointer; }
.header-pc .language-selector {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
    white-space: nowrap;
}
.header-pc .header-auth {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
}
.header-pc .auth-icon { font-size: 20px; color: #ffcc00; }
.header-pc .auth-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}
.header-pc .auth-greeting {
    font-size: 11px;
    color: #aaaaaa;
    font-weight: 500;
}
.header-pc .auth-action {
    font-size: 13px;
    color: #ffffff;
    font-weight: bold;
    white-space: nowrap;
}
.header-pc .header-basket {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}
.header-pc .basket-icon { font-size: 24px; color: #ffcc00; }
.header-pc .basket-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ff4500;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    padding: 0 4px;
    line-height: 1;
    pointer-events: none;
}
.header-pc .nav-menu {
    display: flex;
    align-items: center;
}
.header-pc .nav-menu-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 0;
    transition: color 0.2s;
}
.header-pc .nav-menu-item:hover { color: #FFB800; }
