@charset 'utf-8';
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    display: block;
    text-decoration: none;
    color: inherit;
}
ul li{
    list-style: none;
}

header{
    width:  100%;
    height: 200px;
    /* background-color: bisque; */
    
}
#hmenu{
    width: 100%;
    height: 50px;
    /* background-color: #d4636c;   */
}
.hmenulist{
    display: flex;
    float: right;
    margin: 10px;
}
.hmenulist a{
    padding: 0 20px;
}

#itembox{
    float: right;
    position: absolute;
    right: 20px;
    
}
#itembox a{
    padding: 8px;
}
#h_menu{
    display: flex;
    width: 100%;
    height: 50px;
}
#logo{
    width: 200px;
    height: 100px;
    margin: 0 auto;
    /* background-color: #ded3e9; */
}
#logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
nav{
    width: 750px;
    margin: 0 auto;
    
}
.menu{
    width: 150px;
    position: relative;
    display: flex;
}
.menu>li>a{
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center; 
}
.menu>li>a:hover{
    background-color: chocolate;
}

#search-box {
    position: absolute;
    right: 18px;
    /* transform: translateX(-50%);  */
    top: 50px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#search-box form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#search-input {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
}

#search-button {
    background-color: #b86a04;
    border: none;
    padding: 10px;
    margin-left: 5px;
    border-radius: 50%;
    cursor: pointer;
}

#search-button i {
    color: white;
    font-size: 18px;
}

/* Style for hover effect on search button */
#search-button:hover {
    background-color: #e58600;
}
@media only screen and (max-width:700px){
    .hmenulist{
        display: none;
    }
    #search-box{
        display: none;
    }
}

#slide{
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 0 auto;
    
}
.imgslide{
    width: 100%;
    height: 1800px;
}
.imgslide>a{
    width: 100%;
    height: 600px;
}
.imgslide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* .imgslide{
    width: 100%;
    height: 100%;
}
.imgslide>a{
    width: 100%;
    height:100%;
}
.imgslide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
} */

#shortcut{
    width: 100%;
    /* background-color: #66e7ed; */
    display: flex;
    flex-wrap: wrap;
   justify-content: center;


}
#shortcut>a{
    width: 100px;
    height: 100px;
    /* background-color: chartreuse; */
    text-align: center;
    margin: 60px;

}
#shortcut img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
#shortcut img:hover{
    opacity: 0.5;
}


#best{
    width:  100%;
    /* background-color: burlywood; */
    padding-top: 50px;
}
#best>h3{
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}
.b_box{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;

}
.b_box>a{
    width: 20%;
    height: 80%;
    /* background-color: #638ddb; */
    
}
.b_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.old_price {
    text-decoration: line-through; /* 선 긋기 */
    color: #888; /* 선긋기 된 가격은 회색으로 */
    font-size: 14px; /* 첫 번째 가격의 폰트 크기 */
}

@media only screen and (max-width:700px){
    .b_box>a{
        width: 80%;
    }
}

/* 두 번째 가격의 스타일 */
.new_price {
    color: #e74c3c; 
    font-size: 18px; 
    font-weight: bold; 
}

/* 사용후기 스타일 */
.review {
    font-size: 14px; 
    color: #777; 
}


#sale{
    width:  100%;
    /* background-color: cadetblue; */
    padding-top: 50px;
    padding-bottom: 50px;
}
#sale>h3{
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;

}
.sbox{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    
}
.sbox>a{
    width: 20%;
    height: 80%;
    /* background-color: #638ddb; */
   
}
.sbox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media only screen and (max-width:700px){
    .sbox>a{
        width: 80%;
    }
}

.old_price {
    text-decoration: line-through; /* 선 긋기 */
    color: #888; /* 선긋기 된 가격은 회색으로 */
    font-size: 14px; /* 첫 번째 가격의 폰트 크기 */
}

.new_price {
    color: #e74c3c;  
    font-size: 18px; /* 두 번째 가격의 폰트 크기 */
    font-weight: bold; /* 강조된 가격에 두꺼운 글씨 */
}

.review {
    font-size: 14px; /* 사용후기 글자 크기 */
    color: #777; /* 사용후기의 색상 */
}


#banner{
    width:  100%;
    height: 170px;
    background-color: #f8f0e9;
   
}
#banner>a{
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    
}
.btext{
    padding: 50px;
    white-space: nowrap;
}
#banner img{
    width: 250px;
    height: 150px;
    /* background-color: violet; */
    margin-top: 10px;
    padding: 10px;
}

#newitem{
    width:  100%;
    /* background-color: seagreen; */
    padding-top: 50px;
    padding-bottom: 50px;
    
}

#newitem>h3{
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;

}
.itemlist{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.itemlist>a{
    width: 20%;
    height: 80%;
    /* background-color: #638ddb; */
    
}
.itemlist img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
@media only screen and (max-width:700px){
    .itemlist>a{
        width: 80%;
    }
}



#coupon{
    width:  100%;
    display: flex;
    justify-content: space-evenly;
    padding-top: 50px;
    padding-bottom: 100px;
    margin: 50px;
    /* background-color: #445; */
    margin: 0 auto;
    flex-wrap: wrap;
} 

#instagram{
    width: 40%;
    

}

#instagram img{
    width: 100%;
    object-fit: contain;
    border: 1px solid #ccc;
    border-radius: 10px;

}

#kakao{
    width: 40%;
    

}
#kakao img{
    width: 100%;
    object-fit: contain;
    border: 1px solid #ccc;
    border-radius: 10px;
}
@media only screen and (max-width:700px){
    #instagram {
        width: 80%;
    }
    #kakao {
        width: 80%;
    }
}



footer{
    width: 100%;
    background-color: #c9c9c9;
    padding: 20px;
}
#wrap{
     width: 100%;
     /* background-color: brown; */
     display: flex;
     flex-wrap: wrap;
}
.copy{
    width: 50%;
    height: 160px;
    /* background-color: #66e7ed; */
    padding: 10px;
    font-size: 15px;
}

.cus{
    width: 25%;
    padding: 10px;
}

.input{
    width: 25%;
    padding: 10px;
}


#fwrap{
    width: 80%;
    /* background-color: antiquewhite; */
    display: flex;
    border-top: 1px solid#ccc;
    flex-wrap: wrap;
}
.fmenu{
    width: 50%;
    padding: 5px;
    display: flex;
}
.fmenu>a{
    padding: 3px;
}
.site{
    width: 50%;
}
.socials{
    display: flex;
    float: right;
    margin: 5px;
    
}
.socials>a{
    margin: 5px;
}
@media only screen and (max-width:700px){
    footer{
        height: auto;
    }
    .copy{
        width: 100%;
        
    }
    .cus{
        width: 100%;
        padding: 50px 10px 20px;
    }
    .input{
        width: 100%;
        padding: 30px 10px 20px;
    }
    .fmenu {
        width: 100%;
    }
    .site {
        width: 100%;
    }
    .socials {
        width: 100%;
        padding: 20px 10px;
    }
    

}