.product_title {
    font-size: 3rem;
    text-align: center;
    font-weight: 600;
    color: #666666;
    margin: 2rem 0 5rem 0;
    border-bottom: 5px solid #AAA;
    padding-bottom: 2rem;
}

.product_board {
    display: grid;
    gap: 2rem;
}

.products {
    border-bottom: 1px solid #AAA;
    padding-bottom: 1rem;
}

.main_products {
    display: grid;
    grid-template-columns: 20% auto;
    gap: 2rem;
    margin-bottom: 1rem;
}

.pro_img {
    display: grid;
    border-radius: 2rem;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: center;
}

.pro_img > img {
    width: 80%;
    border-radius: 2rem;
    object-fit: cover;
    justify-self: center;
}

.des_title {
    margin-top: 0;
    font-size: 2rem;
}

.pro_des {
    display: grid;
    grid-template-rows: 2rem auto 3rem;
}

.des_des {
    max-width: 60%;
}

.details {
    width: 10rem;
    border-radius: 2rem;
    background-color: transparent;
    border: 1px solid #ff960d;
    justify-self: right;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.details:hover {
    background-color: #ff960d;
    color: #FFF;
    cursor: pointer;
}

.details_des {
    max-height: 0;
    overflow: hidden;
    transition: all 1s ease;
}

.detail_title {
    border-top: 2px solid #AAA;
    font-size: 1.5rem;
    font-weight: 500;
    color: #666;
}

.detail_des {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding-left: 2rem;
}

.items {
    text-align: center;
    margin: 1rem 0 1rem 0;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 1rem;
}

.items i {
    font-size: 3rem;
    color: #2088ff;
}

.items p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
    margin: 0.5rem 0;
}

.bold {
    font-weight: 600;
}

table {
    border: none;
    border-spacing: 0;
    margin-left: 2rem;
}

tr {
    border: none;
}

td {
    border: none !important;
    padding: 0.5rem 1rem !important;
    font-size: 1rem !important;
}

tbody > :nth-child(even) {
    background-color: #DDD;
}

@media(max-width:768px){
    .product_board{
        width: 100vw;
        margin: 0 auto;
    }
    .main_products {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1rem;
    }
    .products{
        width: 90vw;
        padding: 0 5vw;
    }
    .pro_des{
        grid-template-rows: max-content;
        justify-content: center;
    }
    .des_title{
        text-align: center;
    }
    .des_des{
        max-width: 100%;
    }
    .pro_img > img{
        height: 20vh;
        object-fit: contain;
    }
    .detail_des{
        width: 90%;
        grid-template-columns: 1fr;
        padding: 0 5%;
        gap: 0;
    }
    table{
        margin: 0 0 1vh 0;
        border-top: 1px solid #CCCCCC;
    }
    .items{
        margin: 1vh 0;
    }
    .product_title{
        margin: 0 0 2vh 0;
    }
}