body {
  font-family: Arial;
  margin: 20px;
}

.title {
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  width: 250px;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
}

.card img {
  width: 250px;
  height: auto;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  margin-right: 5px;
}

/* Badge Condizione */
.badge.condizione.nuovo {
  background-color: #28a745; /* verde */
}
.badge.condizione.usato {
  background-color: #f39c12; /* arancione */
}

/* Badge Stato */
.badge.stato.disponibile {
  background-color: #2e80cc; /* verde chiaro */
}
.badge.stato.venduto {
  background-color: #e74c3c; /* rosso */
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery img {
  width: 100%;
  border-radius: 6px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 10px;
}

.phone {
  font-size: 18px;
}
