
body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  margin: 0;
  padding: 0;
}

header {
  background: #000;
  padding: 20px;
  text-align: center;
  color: gold;
}

.products {
  padding: 20px;
  text-align: center;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.product-card {
  background: #222;
  border: 1px solid #444;
  padding: 10px;
  width: 200px;
  border-radius: 10px;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.order {
  padding: 20px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

input, button {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

button {
  background: gold;
  color: black;
  cursor: pointer;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}
