body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #c8e6c8;
}

h1 {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 40px;
  color: #333;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.search {
  margin-bottom: 30px;
}

.search input[type="text"] {
  width: 98%;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 20px;
}

.product {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.2s ease;
  padding: 20px;
  max-width: 235px;
}

.product:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 150px;
  object-fit: fill;
  margin-bottom: 10px;
}

.product-details {
  padding: 20px;
}

.product-name {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-store {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.product-price {
  font-weight: bold;
  font-size: 20px;
  color: #f00;
  margin-bottom: 10px;
}

.product-link {
  display: block;
  padding: 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #f00;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  height: auto;
  max-width: 30%;
}

.product-link:hover {
  background-color: #d00;
  cursor: pointer;
}

a {
  text-decoration: none;
}