.section h2 {
  color: orangered;
  border-bottom: 2px solid orangered;
  margin-bottom: 10px;
}

.product-list {
  /* giúp cha “ôm trọn” các phần tử con float bên trong và ẩn đi phần nào bị tràn ra ngoài khung.*/
  overflow: hidden;
}

.prod * {
 /*border: 1px solid red;*/
}

.col-33p {
  width: 33.33%;
  float: left;
}

.prod {
  box-shadow: 0 0 5px orangered; /* gray */
  border-radius: 10px;
  padding: 10px;
  margin: 10px;
  text-align: center;
  position: relative;
}

.prod > .name {
  font-variant: small-caps;
  color: orangered;
  font-weight: bold;
}

.prod > .name > a {
  color: orangered;
  text-decoration: none;
}

.prod > .image {
  max-width: 95%;
  /*height: 200px;*/
}
.prod > .new {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 40px;
}

.prod > .icons {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 45px; /* Chỉnh nhỏ chiều rộng icon để ép các icon xuống hàng */
}

.prod > .price {
  position: absolute;
  bottom: 5px;
  left: 5px;
  font-size: 20px;
  color: orangered;
  font-weight: bold;
}


/* Style css dành cho chi tiết sản phẩm */

.detail {
  padding: 5px;
  margin: 5px;
}

.detail>.image {
  float: left;
}

.detail>.info {
  font-variant: small-caps;
  font-weight: bold;
  float: left;
}

.detail>.desc {
  clear: both;
}