.reservationsww {
  box-shadow: 1px 1px 10px 1px #00000040;
}

.reservations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.reservations-media {
  position: relative;
  overflow: hidden;
}

.reservations-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservations-form-col {
  padding: 60px 50px;
  background: #fff; /* tu tono oscuro */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.opentable-wrapper {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

.opentable-iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
}

@media (max-width: 992px) {
  .reservations-grid {
    grid-template-columns: 1fr;
  }
  .reservations-media {
    height: 300px;
  }
  .reservations-form-col {
    padding: 40px 24px;
  }
}
