.products {
  display: grid;
  margin: 50px 20px;
  gap: 100px;
  grid-template-columns: repeat(4, 1fr);
}

.product-image {
  width: 100%;
}

.buy-now {
  border: 1px solid #8cc340;
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: #8cc340;
}

.buy-now:hover {
  border: 1px solid #fff;
  background-color: #8cc340;
  color: #fff;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  color: #8cc340;
}

.prod {
  text-decoration: none;
  color: inherit;
}

.prod-title {
  font-size: 20px;
  margin-top: 12px;
}

.card {
  cursor: pointer;
}

.button-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inspect {
  border: 1px solid #000;
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: #000;
}

.inspect:hover {
  border: 1px solid #fff;
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .products {
    grid-template-columns: 1fr;
  }
}
