.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 {
    padding: 11px 0;
}

.header-menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    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;
    overflow-x: auto;
}

.header-menu-nav::-webkit-scrollbar {
    display: none;
}

.header-menu.fixed .header-menu-nav {
    width: 96%;
    margin: 0 auto;
}

.menu-section {
    display: flex;
    align-content: center;
    justify-content: center;
    white-space: nowrap;
}

.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 {
    height: 24px;
}

.header-icons.sub {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}

.header-icons.sub img {
    width: 24px;
    height: 24px;
    margin: 0;
}

.header-icons a {
    position: relative;
    display: block;
}

.header-icons .cart-count {
    position: absolute;
    right: 0;
    top: -2px;
    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;
}