/*모바일버전*/
@media (max-width:768px){
    *{
        box-sizing: border-box;
    }
    .pc-only{
        display: none;
    }
    .header{
        position: fixed;
        padding-top: 20px;
        top:0;
        left: 0;
        width: 100%;
        z-index: 100;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.5s ease;
        background-color: transparent;
    }
    header.active{
         background-color: rgba(255, 255, 255, 0.2); 
         backdrop-filter: blur(10px);               
         box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); 
         height: 65px;
         transition:  all 0.5s ease;
    }

    body{
        background-image: url("../image/배경.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        min-height: 100vh;
        margin: 0;
        padding: 0;
    }
    #logo{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        cursor: pointer;
    }
    #menu{
        margin-left: 20px;
        height: 20px;
        cursor: pointer;
    }
    #user,#cart{
        height: 20px;
        cursor: pointer;
    }
    .right{
        display: flex;
        margin-right: 20px;
        gap: 15px;
    }
    /*메뉴리스트*/
    aside{
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100%;
    background: rgba(224, 199, 199, 0.95);
    z-index: 9999;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }
    
    aside .close{
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 21px;
        color: #ffffff;
    }

.list-top,.list-bottom{
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 40px;
}
.list-top li,.list-bottom li{
    text-align:left;
    font-size: 15px;
    line-height: 30px;
    padding-left: 20px;
    font-family: 'Font Awesome 6 Free', sans-serif; 
    font-weight: 900; 
    color: rgb(10, 8, 8);
}

.list-top a{
    color: #000000;
    text-decoration: none;
}

.back{
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 20px;
}
.back:hover{
    color: maroon;
    cursor: pointer;
}
.close-btn{
    position:absolute;
    top: 8px;
    right: 8px;
    color:black;
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}
.close-btn:hover{
    color:maroon;
}
    
}



/*pc버전*/
@media(min-width:769px){
    *{
        box-sizing: border-box;
     }
     .mobile-only{
        display: none;
     }
    body{
        background-image: url("../image/배경.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        min-height: 100vh;
        margin: 0;
        padding: 0;
    }
    .header{
        position: fixed;
        top:0;
        padding-top: 20px;
        left: 0;
        width: 100%;
        z-index: 100;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100px;
        transition: all 0.5s ease;
        background-color: transparent;
        z-index: 101;

    }
    #pclogo{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 180px;
        padding-top: 80px;
        cursor: pointer;
    }
     header.active{
         background-color: rgba(255, 255, 255, 0.2); 
         backdrop-filter: blur(10px);               
         box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); 
         height: 130px;
         transition:  all 0.5s ease;
    }
    .pc-cart{
    position: absolute;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    left: 10%;
    cursor: pointer;
}
.pc-header-right{
    display: flex;
    gap: 20px;
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
    position: absolute;
    right: 3%;
    cursor: pointer;
}
.pc-list{
    list-style: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    position: absolute;
    font-weight: bold;
    font-style: italic;
    top: 28%;
}
.pc-list li{
    margin-bottom: 20px;
}
.pc-info{
    position: absolute;
    top: 72%;
    font-size: 8px;
    left: 3%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

}
    