/* Minimal CSS for the simplified gallery */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background: #f5f5f5;
  line-height: 1.6;
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.badge {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

h1 {
  color: #333;
  margin: 0;
  font-size: 2em;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.item:hover {
  transform: translateY(-5px);
}

.item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  background: #f8f9fa;
  padding: 8px;
  box-sizing: border-box;
}

.item-info {
  padding: 15px;
}

.item-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.item-price {
  color: #666;
  margin-bottom: 5px;
}

.status {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
}

.sold {
  opacity: 0.6;
}

.sold .status {
  color: #e74c3c;
}

.available .status {
  color: #27ae60;
}





/* Responsive design */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  body {
    padding: 15px;
  }

  .item img {
    height: 150px;
  }
}
