body {
  background: #0f172a;
  color: #fff;
  font-family: Arial, sans-serif;
}

.header, .footer {
  background: #020617;
  text-align: center;
  padding: 20px;
}

.container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}

.product {
  background: #020617;
  border: 1px solid #1e293b;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}

.product:hover {
  border-color: #38bdf8;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-box {
  background: #020617;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  text-align: center;
}

.modal-box input {
  width: 100%;
  padding: 8px;
  margin: 10px 0;
}

.modal-box button {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  background: #38bdf8;
}

.close {
  background: #ef4444;
}
