body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

.container
{
    max-width: 1170px;
    margin: auto;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

.product {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product img {
  max-width: 100%;
  border-radius: 8px;
}

.product .product-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1; /* Ensures all titles occupy the same height */
}

.product p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1; /* Ensures all descriptions occupy the same height */
}

.product button {
  background-color: #2d55d7;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
}

.product button:hover {
  background-color: #1c3cae;
}
