* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Ngăn tràn ngang */
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  padding-top: 40px;
  padding-left: 190px;
} 

.product-item {
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
  padding: 20px;
  margin-right: 10px;
}

.product-item h2,p{
  padding-top: 5px;
  font-family: sans-serif;
  padding-left: 0px;
  font-size: 16px;
}

.product-item img {
  max-width: 100%;
  height: 150px;
}

 #product-view {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      margin: 20px auto;
      max-width: 1200px;
      box-sizing: border-box;
    }
    
    /* Hình ảnh sản phẩm */
    .product-image {
      flex: 1 1 40%;
      max-width: 500px;
      padding: 10px;
      box-sizing: border-box;
    }

    .product-image img {
      width: 100%;
      height: 280px;
      display: block;
      border-radius: 4px;
    }
    /* Mô tả bên cạnh */
    .product-description {
      flex: 1 1 50%;
      padding: 0px;
      box-sizing: border-box;
    }
    .product-description h1 {
      margin-left: 0px;
      margin-top: 0px;
      font-size: 1.8rem;
    }
    .product-description h2 {
      padding-top: 100px;
      padding: 0px;
      font-weight: bolder;
      color: red;
      margin-left: 50px;
      line-height: 1.6;
    }

    .product-description p {
      padding: 0px;
      font-weight: bolder;
      /* color: red; */
      margin-left: 50px;
      line-height: 1.6;
      font-weight: 200;
      padding-bottom: 110px;
    }

/* Từ điện thoại nhỏ hơn hoặc bằng 480px */
@media (max-width: 480px) {
  body{
    background-color: #fff;
  }
  .product-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-left: 10px;
    padding-right: 10px;
    gap: 10px;
  }
  .product-item {
    padding: 10px;
  }
  .product-item img{
    width: 100%;
    height: 150px;
    border-radius: 8px;
  }
  .product-item h2,
  .product-item p {
    font-size: 8px;
    padding-top: 3px;
  }
  .product-description h1 {
    font-size: 1.5rem;
  }
  .product-description h2,
  .product-description p {
    padding: 0 10px;
    padding-top: 5px;
    padding-bottom: 20px;
    line-height: 1.4;
  } 

    #product-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Ảnh sản phẩm full-width */
  .product-image {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 15px;
  }
  .product-image img {
    height: auto;
    max-height: 200px;
    object-fit: cover;
  }

  /* Mô tả full-width, căn giữa hoặc sát lề */
  .product-description {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    text-align: left;
  }
  .product-description h1 {
    font-size: 1.4rem;
    margin: 0px;
    font-size: 18px;
    padding-left: 0px;
  }
  .product-description h2 {
    font-size: 1rem;
    margin: 0 0 12px;
    color: red;
    padding-left: 0px;
    line-height: 1.4;
  }
  .product-description p {
    font-size: 0.9rem;
    margin: 0 0 16px;
    line-height: 1.4;
  }
  }


    