body {
  margin: 0;
  font-family: sans-serif;
  background: #f5f5f5;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: #111;
  color: white;
}

button {
  padding: 8px 15px;
  border: none;
  margin-left: 10px;
  cursor: pointer;
}

/* HERO */
.hero {
  text-align: center;
  padding: 60px;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: white;
}

/* PRODUCTS */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 20px;
  gap: 20px;
}

.product {
  background: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.product:hover {
  transform: scale(1.05);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.modal-content {
  background: white;
  margin: 10% auto;
  padding: 20px;
  width: 300px;
}