body {
  font-family: Georgia, serif;
  margin: 20px;
  color: #333;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.item {
  text-align: left;
}

.item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  cursor: pointer;
}

.title {
  font-size: 14px;
  margin: 8px 0 4px;
}

.price {
  font-size: 14px;
  font-weight: bold;
}

.tags {
  margin-top: 6px;
}

.tag {
  display: inline-block;
  background: #eee;
  color: #333;
  font-size: 12px;
  padding: 3px 6px;
  margin: 2px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.tag:hover {
  background: #ccc;
}

#show-all {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 2000;
}

/* Overlay styling */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}
