.content {
  max-width: 1000px;
  width: 100%;
  margin: 30px auto;
  padding: 0 15px;
}
h1, h2 {
  color: #333;
}

/* Carrusel */
.carousel {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 10px;
}
.carousel img {
  height: 220px;
  border-radius: 10px;
  flex: 0 0 auto;
  transition: transform 0.3s;
}
.carousel img:hover {
  transform: scale(1.05);
}

/* Info boxes */
.info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.info-item {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  flex: 1 1 220px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.info-item span {
  font-size: 20px;
  margin-right: 8px;
}

.info-item ul {
  margin: 8px 0 0 28px;
  padding: 0;
  list-style: disc;
  color: #666;
}
.info-item ul li {
  margin-bottom: 4px;
}

.badge {
  display: inline-block;
  background: #eee;
  color: #333;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 13px;
  margin: 2px;
}

.badge i {
  color: var(--color-black);
  margin-right: 4px;
}

/* Mapa */
.map-frame {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
  margin: 20px 0;
}

/* Reviews */
.reviews .review {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.reviews .review:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

/* Abierto o cerrado */
.open-now {
  color: green;
  font-weight: bold;
}
.closed {
  color: red;
  font-weight: bold;
}

/* Botón volver */
.btn-back {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 15px;
  background: #e60000;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.btn-back:hover {
  background: #b30000;
  transform: scale(1.05);
}

/* Responsive: en móviles stackear info-boxes */
@media (max-width: 600px) {
  .info-boxes {
    flex-direction: column;
  }
  .info-item {
    flex: 1 1 100%;
  }
}
