.item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  padding: 18px;
  text-align: center;
  margin-bottom: 30px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item img.main-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.pavilion-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin: 16px 0 8px 0;
}
.card-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0;
}
.card-icons img {
  height: 40px;
  width: 40px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  transition: transform 0.1s;
}
.card-icons img:hover {
  transform: scale(1.08);
  box-shadow: 0 3px 12px rgba(0,0,0,0.14);
}