.products-section {
  padding: 60px 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  background: #fff;
  border: 1.5px solid #e6d6bc;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-title {
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #8c7b63;
  display: inline-block;
  padding-bottom: 5px;
}

.product-card img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 20px 0;
}

.buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
	  background: #8d171a;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    width: 290px;
}

.buy-btn:hover {
  background: #ede0ca;
  color: #333;
}

.buy-btn span {
  margin-left: 8px;
}
@media only screen and (max-width: 767px)
{
.products-grid {
   justify-content: center;
  }
}