@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
}
.header{
    height: 100px;
    border: 1px solid #333;
}
.header .inner{
    max-width: 1280px;
    width: calc(100% - 30px);
    height: 100%; /* 전체 높이값 주기 */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.header .inner .nav .gnb{
    display: flex;
    gap: 40px;
}
.header .inner .search-wrap button{ /* 버튼 스타일 */
    width: 60px;
    height: 60px;
    border: 1px solid #ff8ad8;
    background-color: rgb(255, 209, 240);
    border-radius: 50%;
}
.header .inner .search-wrap button.close-btn{ /* 검색 닫기 버튼 숨겨주기 */
    display: none;
}
.header .inner .search-wrap .search-box{ /* 오타주의 */
    width: 100%; /* 넓이값 잡아주기 */
    position: absolute;
    top: 100px; /* 높이 크기만큼 내려오기 */
    left: 0;
    background-color: rgb(255, 209, 251);
    padding: 20px;
    display: none;
}
.header .inner .search-wrap .search-box input{
    width: 100%;
    height: 50px;
    padding: 0 20px;
}


