
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background-color: #f5f5f5;
  color: #333;
}
header {
  background-color: #3e4e2c;
  color: white;
  padding: 20px 40px;
  text-align: center;
}
.logo {
  max-width: 120px;
  margin-bottom: 10px;
}
header h1 {
  margin: 0;
  font-size: 2.5em;
}
nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 0.5rem 1rem;
      background-color: #333;
    }
    nav a {
      color: white;
      text-decoration: none;
      margin-right: 1rem;
    }
    nav a:hover {
      text-decoration: underline;
    }
    .language-switcher {
      margin-top: 0.5rem;
    }
    @media (min-width: 600px) {
      nav {
        flex-wrap: nowrap;
      }
      .language-switcher {
        margin-top: 0;
      }
    }
    .language-switcher select {
      padding: 4px;
      font-size: 1rem;
    }

.hero {
  background: url('../images/hero.jpg') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2em;
  font-weight: bold;
  text-shadow: 1px 1px 4px black;
}
.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}
.product {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding: 20px;
}
.product img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 5px;
}
.product h3 {
  margin: 15px 0 10px;
  text-decoration: none;
}
.product p {
  font-size: 0.9em;
  color: #666;
  text-decoration: none;
}
.contact-form {
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}
.contact-form button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #3e4e2c;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}
.contact-form button:hover {
  background-color: #2d3b1e;
}
footer {
  background-color: #3e4e2c;
  color: white;
  text-align: center;
  padding: 20px;
}
footer a {
  color: #fff;
  text-decoration: underline;
}
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 999;
  transition: background-color 0.3s ease;
}
.whatsapp-button:hover {
  background-color: #1ebe5d;
}
.language-switcher {
  margin-left: auto;
  margin-right: 20px;
  font-size: 0.9em;
}
.language-switcher a {
  color: white;
  margin: 0 5px;
  text-decoration: none;
}
.language-switcher a:hover {
  text-decoration: underline;
}
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.gallery-img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}
