body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
}

header {
  text-align: center;
  padding: 20px;
  background: #222;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

section {
  padding: 40px 20px;
  text-align: center;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery img {
  width: 250px;
  height: auto;
  border-radius: 8px;
}

.shop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-item .price {
  margin-top: 8px;
  font-weight: bold;
  color: #ffd700;
}

footer {
  text-align: center;
  padding: 20px;
  background: #222;
}

footer a {
  color: #ffd700;       /* złoty kolor linków */
  text-decoration: none; /* brak podkreślenia */
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline; /* podkreślenie przy najechaniu */
}
