.product {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;

}
.product-detail{
    display: flex;
     flex-wrap: wrap;
     flex-direction: column;
    justify-content: center;
    padding: 2rem;
}
.seller {
    line-height: 1rem;
    text-transform: capitalize;
    text-decoration: none;
}
.endtime {
    margin-top: .5rem;
    line-height: 1.2rem;
}
.desc {
    margin-top: 2rem;
}
.product-detail table {
    margin-top: 3rem;
    text-align: center;
}
.product-detail table tr:nth-child(2){
    font-weight: 900;
    font-size: 1.2rem;
}
.image-gallery {
        width: 100%;
        max-width: var(--maxwidth);
}
.image-gallery img {
    width: 100%;
    object-fit: contain;
}
.header-1 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 3rem;
    text-transform: capitalize;
}


@media screen and (min-width:500px) {

    .product {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
  }
  }