body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  color: #333;
  background-color: #f1e8de;
}

.container {
  max-width: 700px;
  margin: auto;
}

.logo-wrapper {
  text-align: center;
}

.site-logo {
  display: block;
  margin: 0 auto 15px auto;
  max-width: 150px;
  height: auto;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

#searchInput {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  display: none;
}

.category {
  background-color: #fff;
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.category:hover {
  background-color: #eaeaea;
}

.category-icon {
  font-size: 24px;
}

.product {
  background-color: #fff;
  padding: 15px;
  margin: 15px 0;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.product img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.product-price {
  font-size: 16px;
  color: #555;
}

.back-button {
  margin-top: 15px;
  background-color: #333;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.lang-switcher {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.lang-switcher button {
  padding: 8px 12px;
  border: none;
  background-color: #333;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
