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

header {
  display: flex; justify-content: space-between; align-items: center;
  background: #222; color: #fff; padding: 10px 20px;
}

header nav a {
  color: #fff; margin: 0 10px; text-decoration: none;
}

header nav a:hover {
  text-decoration: underline;
}

.logo {
  height: 40px;
}

.hero {
  text-align: center; padding: 50px;
  background: #007BFF; color: white;
}

.btn {
  display: inline-block;
  background: #ff5722; color: #fff;
  padding: 10px 20px; margin-top: 15px;
  text-decoration: none; border-radius: 5px;
   transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #e64a19;
  transform: scale(1.05);
}

.grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; padding: 20px;
}

.product, .grid div {
  background: white; padding: 15px;
  border: 1px solid #ddd; text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product:hover{
     transform: translateY(-8px);
     box-shadow: 0 8px 16px rgba(0,0,0,0.2);

}
.product img, .grid img {
  max-width: 100%; height: auto;
}

footer {
  text-align: center; padding: 10px; background: #222; color: #fff;
  margin-top: 30px;
}

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

form input, form textarea {
  margin-bottom: 10px; padding: 8px;
}
