/* Contenitore griglia */
.lista-rivenditori {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

/* Card rivenditore */
.rivenditore {
  background: #fff;
  border: 1px solid #f2e3f7;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rivenditore:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.rivenditore h3 {
  font-size: 18px;
  color: #5a3e65;
  margin-bottom: 10px;
}

.rivenditore p {
  font-size: 15px;
  color: #44364a;
  margin: 4px 0;
}

/* Immagine rivenditore */
.rivenditore .thumb {
  margin-bottom: 10px;
}

.rivenditore .thumb img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Bottone prenotazione */
.btn-prenota {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 14px;
  background-color: #dba6e3;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  font-weight: 500;
  font-size: 15px;
}

.btn-prenota:hover {
  background-color: #c58bcc;
}

/* Filtro provincia */
.filtro-rivenditori {
  margin-bottom: 30px;
  padding: 16px;
  background: #fbf0fa;
  border-radius: 10px;
  border: 1px solid #e6d4eb;
  max-width: 400px;
}

.filtro-rivenditori label {
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
  color: #5a3e65;
}

.filtro-rivenditori select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #d5bfdc;
  font-size: 15px;
  background: #fff;
  color: #44364a;
}

/* Responsive */
@media (max-width: 1024px) {
  .lista-rivenditori {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .lista-rivenditori {
    grid-template-columns: 1fr;
  }

  .filtro-rivenditori {
    width: 100%;
  }
}
