.product-section {
    padding: 20px 0;
    background-color: #fff;
    text-align: center;
}
.product-top{
  padding:60px 0px;
}
.product-title-1{
  font-size:36px;
  text-align:center;
}
.product-subtitle-1{
  text-align:left;
  margin-top:20px;
  padding:0 100px;
}
.product-grid {
    display: grid;
    flex-wrap: wrap;
    gap: 20px;
    grid-template-columns:1fr 1fr 1fr;
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    
    text-align: center;
    
    width: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}

.product-info {
  padding:10px;
  display:flex;
  text-align:left;
  justify-content:space-between;
  align-items:center;
}

.product-info h3 {
    font-size: 1.2rem;
    margin: 10px 0 5px;
}

.product-info p {
    font-size: 0.9rem;
    padding:0;
    margin:0;
    color: #555;
    margin-bottom: 15px;
}

.product-review-btn {
    display: inline-block;
    background: #e6e6e6;
    color: #333;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-size:14px;
   
    transition: background-color 0.3s ease, color 0.3s ease;
}

.product-review-btn:hover {
    background: #333;
    color: #fff;
}
@media screen and (max-width:767px){
  .product-subtitle-1{
    text-align:center;
    padding:0;
  }
  .product-grid {
    display: grid;
    flex-wrap: wrap;
    gap: 20px;
    grid-template-columns:1fr 1fr;
  }  
  .product-info {
    flex-direction:column;
    text-align:center;
  }
}