/* shop전용 css */
h2{
    padding-top: 100px;
    padding-bottom: 50px;
}

.section-shop{
    margin-top:80px;
    padding-bottom: 80px;
    border-bottom: var(--border);
}

.section-shop .menu{
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.section-shop .menu p{
    border: var(--border);
    background-color: white;
    border-radius: 30px;
    width: 100px;
    line-height:40px;
    color: var(--point);
    cursor: pointer;
}
.section-shop .menu p:hover{
    background-color: rgb(18, 33, 65);
    color: white;
}
.section-shop .menu p.active{
    background-color: rgb(18, 33, 65);
    color: white;
}
@media(max-width: 800px){
    .section-shop .menu{
        gap: 20px;
    }
    .section-shop .menu p{
        width: 80px;
        font-size: 14px;
    }
}
@media(max-width: 500px){
    .section-shop .menu{
        flex-direction: column;
        gap:10px;
    }
    .section-shop .menu p{
        width: 100%;
    }
}

.section-shop .container{
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:30px;
}

.section-shop .bg{
    background-color: white;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    position: absolute;
    top:0; left:0;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.3s;
}

.section-shop .bg:hover{
    opacity: 1;
}

.section-shop .item{
    overflow: hidden;
    border: var(--border);
}

.section-shop img{
    overflow: hidden;
    border-bottom: var(--border);
}

.section-shop .img-box i{
    position: absolute;
    bottom: 20px; right: 25px;
    color: rgb(168, 168, 168);
    font-size: 20px;
}

.section-shop .img-box i:hover{
    color: tomato;
    cursor: pointer;
}
.section-shop.active .img-box .fa-heart{color: tomato;}


.section-shop .text-box{
    padding-top: 10px;
    padding-bottom: 10px;
}
.section-shop .price{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.section-shop h5{
    color:rgb(18, 33, 65);
    padding-bottom: 10px;
}
.section-shop h6{
    color: rgb(168, 168, 168);
    text-decoration: line-through;
}

.section-shop p{
    font-weight: bold;
}

@media(max-width: 1100px){
    .section-shop .container{
        grid-template-columns: repeat(3,1fr);
    }
}
@media(max-width: 800px){
    .section-shop .container{
        grid-template-columns: repeat(2,1fr);
    }
}