main{

}
main section{
  height: 100vh;
  box-sizing: border-box;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section#product {
  max-width: 1720px;
  margin: 0 auto;
  background-color: white;
}
section#product .wrap {
  
  flex-direction: row-reverse;
  gap: 40px;
}
section#product .wrap h2 {
  
}
section#product .wrap ul {
  flex-wrap: wrap;
  gap: 60px;
}
section#product .wrap ul li {
  width: 360px;
  height: 360px;
}
section#product .wrap ul li:first-child{
  
  /*! background-image: url(../img/prod1.png); */
  /*! background-repeat: no-repeat; */
  /*! background-position: right bottom; */
  /*! background-size: 37%; */
}
section#product .wrap ul li a {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 30px;
  box-sizing: border-box;
  transition: box-shadow 0.5s;
}
section#product .wrap ul li a:hover {
  box-shadow: 0px 0px 15px #ccc;
}
section#product .wrap ul li a::after{
  content: "";
  background-image: url(../img/prod1.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  width: 120px;
  height: 180px;
  display: inline-block;
}
section#product .wrap ul li a h3 {
  width: calc(100% / 2);
  width: 100%;
  font-weight: bold;
  font-size: 20px;
}
section#product .wrap ul li a p { 
  width: 60%;
  color: #999;
}
section#product .wrap .pdetail {
  width: calc(100% / 2);
}
section#product .wrap .pdetail article {
  display: grid;
  grid-template-columns: 50% calc(50% - 50px);
  grid-template-rows: auto auto 1fr;
  column-gap: 50px;
  row-gap: 24px;
}
section#product .wrap .pdetail article:not(:first-child) {
  display: none;
}
section#product .wrap .pdetail article hgroup {
  
}
section#product .wrap .pdetail article hgroup h3 {
  margin-bottom: 16px;
  font-weight: bold;
  color: #333;
}
section#product .wrap .pdetail article hgroup h4 {
  
}
section#product .wrap .pdetail article p.h4 {
  line-height: 1.3;
}
section#product .wrap .pdetail article p.p {
  
}
section#product .wrap .pdetail article img {
  grid-row: 1 / span 3;
  grid-column: 2;
}