body {
  margin: 0;
  font-family: Tahoma, sans-serif;
  background-color: #fff7f0;
  color: #333;
}


.nav {
  background: linear-gradient(90deg, #ff7a18, #ff9a3c);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: white;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}


.title {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* Products */
.products {
  display: grid;

  gap: 20px;
  padding: 40px;
}

.product {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product h3 {
  margin: 10px;
}

.product p {
  margin: 10px;
  color: #ff7a18;
  font-weight: bold;
}

.products {
  display: grid;

  gap: 20px;
  padding: 40px;
}

.card {
  background: white;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}


.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #ff7a18;
  color: white;
  margin-top: 40px;
}

a:hover {
    color: #d46a92;
    text-decoration: underline;
}
.card:hover {
    transform: scale(1.10);
    transition: 0.3s;
}