body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: teal;
  color: #3a2d1a;
}
imgs{
  position:relative;
  z-index: 1;
}

nav {
  background: #d9b08c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 60px;
}

nav .logo {
  position: absolute;
  z-index: 3;
  top:4%;
  left:25px;
  font-family: 'Cursive';
  color: purple;
  font-size: 4.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #3a2d1a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #fff;
}

#app {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem 2rem;
  background: #fff;
  border-radius: 10px;
  min-height: 400px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.09);
}

footer {
  text-align: center;
  padding: 1rem 0;
  background: #d9b08c;
  color: #3a2d1a;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 2rem;
}

.product-card {
  background: #f9f6f2;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 2px solid #d9b08c;
}

.product-card h3 {
  margin: 0.5rem 0 0.3rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #6f4e37;
}

.product-card .price {
  font-weight: bold;
  color: #b4846c;
  margin-top: 0.3rem;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  gap: 1rem;
  margin: 0 auto;
}

form.contact-form input,
form.contact-form textarea {
  padding: 0.6rem 0.8rem;
  border: 1px solid #d9b08c;
  border-radius: 6px;
  font-size: 1rem;
}

form.contact-form button {
  background: #b4846c;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
form.contact-form button:hover {
  background: #6f4e37;
}