
.section-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2rem;
}

.products-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.product-card {
  position: relative;
  flex: 1 1 30%;
  min-width: 280px;
  height: 450px;
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
}

.product-card button {
  padding: 0.5rem 1rem;
  background: #fff;
  color: #000;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.product-card button:hover {
  background: #f0f0f0;
}
