/* ปุ่มลบรีวิว Luxury */
.btn-delete {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px 6px 14px;
  font-size: 1rem;
  font-family: 'Prompt', sans-serif;
  border: none;
  border-radius: 22px;
  background: linear-gradient(90deg, #e9b97a 0%, #e7b7b9 100%);
  color: #1e1308;
  font-weight: 500;
  box-shadow: 0 2px 12px 0 rgba(216,181,109,0.10);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
  position: relative;
}
.btn-delete::before {
  content: '\1F5D1'; /* Unicode for trash can */
  font-size: 1.15em;
  margin-right: 2px;
  filter: drop-shadow(0 0 4px #fff7ea88);
}
.btn-delete:hover {
  background: linear-gradient(90deg, #f5dfaa 0%, #e7b7b9 100%);
  color: #b05c2e;
  box-shadow: 0 4px 18px 0 rgba(216,181,109,0.18);
  transform: translateY(-2px) scale(1.04);
}
.btn-delete:active {
  background: linear-gradient(90deg, #e7b7b9 0%, #e9b97a 100%);
  color: #1e1308;
  transform: scale(0.98);
}
/* Modal Luxury (รีวิว/ทั่วไป) */
.modal-luxury {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: none;
  animation: none;
}
.modal-luxury[style*="display: block"] {
  display: flex !important;
}
.modal-luxury-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(216,181,109,0.10) 0%, rgba(231,183,185,0.10) 100%), rgba(9, 6, 8, 0.82);
  backdrop-filter: blur(7px) saturate(1.2);
}
.modal-luxury-dialog {
  position: relative;
  width: min(420px, 96vw);
  border-radius: 28px;
  border: 2px solid var(--gold-light);
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(216,181,109,0.10) 100%), rgba(23, 17, 19, 0.97);
  box-shadow: 0 8px 48px 0 rgba(216,181,109,0.18), 0 2px 32px 0 rgba(0,0,0,0.32), 0 0 0 2px rgba(245,223,170,0.12) inset;
  padding: 32px 24px 24px;
  z-index: 1;
  overflow: hidden;
  animation: bookingDialogPop 0.44s cubic-bezier(.4,1.6,.6,1) both;
}
.modal-luxury-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  background: linear-gradient(135deg, rgba(255,255,255,0.13), rgba(216,181,109,0.10));
  color: var(--gold-light);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px 0 rgba(216,181,109,0.10);
  transition: background 0.18s, box-shadow 0.18s;
  position: absolute;
  top: 18px;
  right: 18px;
}
.modal-luxury-close:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1e1308;
  box-shadow: 0 4px 18px 0 rgba(216,181,109,0.18);
}
/* Luxury Booking Confirm Modal Styles */

.booking-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 395;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: none;
  animation: none;
}

.booking-confirm-modal.open {
  display: flex;
  animation: bookingModalFadeIn 0.38s cubic-bezier(.4,1.6,.6,1) both;
}

.booking-confirm-modal-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(216,181,109,0.10) 0%, rgba(231,183,185,0.10) 100%), rgba(9, 6, 8, 0.82);
  backdrop-filter: blur(7px) saturate(1.2);
}

.booking-confirm-modal-dialog {
  position: relative;
  width: min(480px, 96vw);
  border-radius: 32px;
  border: 2.5px solid var(--gold-light);
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(216,181,109,0.10) 100%), rgba(23, 17, 19, 0.92);
  box-shadow: 0 8px 48px 0 rgba(216,181,109,0.18), 0 2px 32px 0 rgba(0,0,0,0.32), 0 0 0 2.5px rgba(245,223,170,0.12) inset;
  padding: 32px 32px 24px;
  z-index: 1;
  overflow: hidden;
  animation: bookingDialogPop 0.44s cubic-bezier(.4,1.6,.6,1) both;
}

/* Popup Animation */
@keyframes bookingModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes bookingDialogPop {
  0% { transform: scale(0.92) translateY(30px); opacity: 0; }
  80% { transform: scale(1.04) translateY(-6px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.booking-confirm-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  border-bottom: 1.5px solid rgba(245,223,170,0.18);
  padding-bottom: 10px;
}

.booking-confirm-modal-head h3 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.18;
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}
.booking-confirm-modal-head h3::before {
  content: "\2726";
  font-size: 1.3em;
  color: var(--gold);
  margin-right: 10px;
  filter: drop-shadow(0 0 6px #f5dfaa88);
}

.booking-confirm-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  background: linear-gradient(135deg, rgba(255,255,255,0.13), rgba(216,181,109,0.10));
  color: var(--gold-light);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px 0 rgba(216,181,109,0.10);
  transition: background 0.18s, box-shadow 0.18s;
}
.booking-confirm-modal-close:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1e1308;
  box-shadow: 0 4px 18px 0 rgba(216,181,109,0.18);
}

.booking-confirm-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 18px;
  border-top: 1.5px solid rgba(245,223,170,0.10);
  padding-top: 12px;
}

.booking-confirm-modal-message {
  color: var(--cream, #fff8e1);
  font-size: 1.08rem;
  margin-bottom: 18px;
  padding: 6px 0 0 0;
}

.booking-modal-note {
  margin-top: 10px;
  font-size: 1.01rem;
  color: var(--gold-light);
  background: linear-gradient(90deg, rgba(216,181,109,0.13), rgba(255,255,255,0.04));
  border-radius: 12px;
  padding: 10px 16px;
  border: 1.2px solid rgba(245,223,170,0.13);
  box-shadow: 0 2px 8px 0 rgba(216,181,109,0.08);
}
