.bunz-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 30px !important;
  justify-items: center !important;
  max-width: 1200px !important;
  margin: 40px auto;
  padding: 0 20px;
}

.bunz-card {
  width: 100%;
  box-sizing: border-box;
}

/* Card base */
.bunz-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.bunz-card:hover {
  transform: translateY(-6px);
}

/* Immagine */
.bunz-card__image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.bunz-card__image img {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
}

/* Titolo e sottotitolo */
.bunz-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2350cc;
  margin: 0;
}
.bunz-card h3 {
  font-size: 1rem;
  color: #333;
  margin: 0 0 1rem;
}

/* Prezzo */
.bunz-card__price-block {
  background-color: #f1a74e; /*#fedb3f;*/
  border-radius: 20px 0 20px 0;
  padding: 1rem;
  margin: 0 1rem 1rem;
  color: #444;
}
.bunz-card__price-block strong {
  display: block;
  font-size: 1.8rem;
  color: #2350cc;
}
.bunz-card__price-block del {
  color: #999;
}

/* Caratteristiche */
.bunz-card__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #555;
  margin: 10px 0;
}
.bunz-card__features div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.bunz-card__features img {
  width: 18px;
  height: 18px;
}

/* Sezione GPS */
.bunz-card__gps {
  background-color: #fef3c7;
  border-top: 1px solid #f1a74e; /*#fcd34d;*/
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #2350cc;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
.bunz-card__gps img {
  width: 20px;
  height: 20px;
}

/* Pulsante */
.bunz-card__cta {
  margin-top: auto;
}
.bunz-card__button {
  background-color: #f1a74e; /*fedb3f*/
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  color: #2350cc;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.bunz-card__button:hover {
  background-color: #ffc107;
}

/* Responsive */
@media (max-width: 768px) {
  .bunz-card {
    margin-bottom: 20px;
  }
}
