section.title{
    width: fit-content;
    margin: 16px auto 16px auto;
    border-bottom: 2px solid black;
}
section.title h2{
    margin: 0;
    padding: 8px;
    font-size: 32px;
}
div.tabs{
    display: flex;
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}
.tabs-radio{
    display: none;
}
label.tabs-label{
    padding: 10px 16px;
    cursor: pointer;
    margin: 0 10px;
    text-align: center;
    width: fit-content;
}
.tab-content{
    order: 1;
    width: 100%;
    display: none;
}
.tabs-radio:checked+.tabs-label{
    border-bottom: 2px solid black;
}
.tabs-radio:checked+.tabs-label+.tab-content{
    display: initial;
}



.container-1{
    display: flex;
    flex-direction: row;
    max-width: 1080px;
    width: fit-content;
    flex-wrap: wrap;
    margin: 16px auto 16px auto;
}
img.product{
    max-width: 500px;
    max-height: 500px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.desc1{
    padding-bottom: 60px;
    margin-bottom: 20px;
    border-bottom: 2px solid black;
}
div.container-others{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
div.others{
    background-color: white;
    border-radius: 10px;
    width: 118px;
    padding: 10px;
    margin: auto;
}
div.others img{
    width: 118px;
    height: 118px;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}
a.others{
    text-decoration: none;
    color: black;
    transition: transform .2s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin: auto;
}
a.others:hover{
    transform: scale(1.05);
}
h5{
    margin: 0;
}
table{
    border: 2px solid black;
}


.container-2{
    display: flex;
    max-width: 1080px;
    flex-direction: column;
    margin: 16px auto;
}
th, td{
    width: 300px;
    text-align: center;
    background-color: white;
}
.container-2 h3{
    border-bottom: 2px solid black;
    width: fit-content;
}