
body { font-family: sans-serif; background: #f9f9f9; margin: 0; padding: 0; }
header { background: white; padding: 10px 20px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 2px 5px rgba(0,0,0,0.1); flex-wrap: wrap; }
header img { height: 40px; }
nav a { margin: 0 8px; text-decoration: none; color: #333; font-size: 14px; }
nav a:hover { color: #f00; }
.container { padding: 20px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 10px; }
.product { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); padding: 5px; text-align: center; }
.product img { max-width: 100%; height: auto; }
.title { font-size: 12px; height: 40px; overflow: hidden; }
.price { font-weight: bold; }
.old { text-decoration: line-through; color: gray; font-size: 11px; }
.new { color: red; font-size: 14px; }
.discount { color: green; font-size: 11px; }
.buy-button { display: inline-block; margin-top: 5px; background: red; color: white; padding: 5px 10px; border-radius: 5px; font-size: 12px; text-decoration: none; }

.temu-buttons {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.temu-btn {
  background-color: #ff0000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease;
}
.temu-btn:hover {
  background-color: #cc0000;
}

.logo-big {
  display: block;
  max-height: 150px;
  margin: 0 auto 10px;
}
.header-main {
  text-align: center;
  padding: 20px 0;
  position: relative;
}
nav {
  margin-top: 10px;
}
.temu-buttons-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}
footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: #eee;
  font-size: 14px;
}

/* Efect hover pe card produs */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Animație fade-in la încărcare */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-card {
  animation: fadeIn 0.6s ease;
}

/* Stiluri pentru bara de căutare și filtrare */
.search-filter {
  text-align: center;
  margin: 20px auto;
}
.search-filter input {
  padding: 10px;
  font-size: 16px;
  margin: 0 10px 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
}
