
.product-container{
    display:flex;
    justify-content: space-between;
    gap:20px;
}
.p-d{
    font-size:14px;
}
.product-images{
    display:flex;
    gap:10px;
    margin: 20px 0;
}
.product-image{
    flex:4;
}
.product-thumb{
    flex:1;
}
.product-thumb .img{
    margin:5px 0;
    width:100%;
    aspect-ratio: 2 / 1.4;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor:pointer;
}

.product-images .product-image img{
    width:100%;
    height:100%;
}
summary{
    background-color: rgb(236, 233, 233);
    padding:14px;
    font-size:16px;
    font-weight: bold;
}
.tb-detail{
    width:100%;
    background-color: #fff;
}
.tb-detail td{
    padding:14px;
    border-bottom: 1px solid rgb(169, 168, 168);
}

.product-detail{
    background-color: green;
}