/* category */
.category {
    width: 100%;
    position: relative;
}

.label-back {
    width: 100%;
    height: 60px;
    background-color: #f7f7f7;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* tab */

.tab-container input[type='radio'] {
    display: none;
}

.category label {
    display: block;
    width: 50px;
    margin-left: 10px;
}

.category input, .category label {
    float: left;
    margin: 25px 5px;
    position: relative;
    z-index: 2;
}

.tab-grid {
    padding-top: 20px;
    clear: both;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

#tab1:checked ~ .tab-grid .tab-content {
    display: block;
}
#tab2:checked ~ .tab-grid .sale {
    display: block;
}
#tab3:checked ~ .tab-grid .new {
    display: block;
}


.tab-content {
    display: none;
    position: relative;
    width: 340px;
    height: 500px;
}


.tab-content img:nth-child(2) {
    display: none;
    /* opacity: 0; */
}

.tab-content img {
    position: absolute;
    top: 0;
    left: 0;
}



.content-info {
    position: absolute;
    top: 430px;
    left: 0;
    width: 100%;
}

.tab-content:hover img:nth-child(2) {
    display: block;
}

.sale p:nth-child(2) {
    color: red;
}
.sale p:nth-child(3) {
    text-decoration: line-through;
}

.content-info p {
    margin-top: 3px;
}