.header-top {
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  width: 125px;
}

.logo img {
  width: 100%;
}

.icon-btn {
  background: none;
  border: none;
}

.header-search {
  position: relative;
  display: flex;
  justify-content: center;
}

.header-search .search-input {
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0 36px 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #fe06d2, #e9bbc1, #87b8fd) border-box;
}

.header-search .search-input-placeholder {
  line-height: 46px;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.35px;
}

.header-search .search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate(0, -50%);
  width: 21px;
  height: 21px;
  cursor: pointer;
}
.header-search .search-icon img {
  width: 100%;
}

.header-menu-placeholder {
  height: 0;
}

.header-menu {
  overflow: auto;
  padding: 11px 16px;
}

.header-menu.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  padding: 11px 0;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-menu-nav {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.5em;
}

.header-menu-nav::-webkit-scrollbar {
  display: none;
}

.header-menu.fixed .header-menu-nav {
  width: calc(100% - 32px);
  margin: 0 auto;
}

.menu-section {
  display: flex;
  align-content: center;
  justify-content: center;
  white-space: nowrap;
}

.menu-section:last-child {
  padding-right: 16px;
}

.menu-section a {
  display: block;
  padding: 9px 12px;
  background-color: #f7f7fb;
  color: #505050;
  border-radius: 21px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.325px;
}

.menu-section.active a {
  font-weight: 600;
  color: #fff;
  background-color: #000;
}

.header-icons {
  display: flex;
  align-items: center;
}

.header-icons img {
  width: 24px;
}

.header-icons.sub {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
}

.header-icons.sub img {
  width: 24px;
  margin: 0;
}

.header-icons a {
  position: relative;
  display: block;
}

.header-icons .cart-count {
  position: absolute;
  right: -4px;
  top: -4px;
  width: 13px;
  height: 13px;
  line-height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fc123e;
  color: #fff;
  border-radius: 50%;
  font-family: Pretendard;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}
