/* Modal Backdrop */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

/* Bottom Sheet */
.sheet {
  width: min(650px, 100%);
  background: var(--panel);
  border: 1px solid #303541;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 20px 20px calc(24px + env(safe-area-inset-bottom));
  animation: slideUp 0.22s var(--transition-smooth);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  max-height: 85vh;
  overflow-y: auto;
}

.sheet-handle {
  width: 40px;
  height: 4px;
  background: #3a404e;
  border-radius: 99px;
  margin: 0 auto 16px;
}

.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.sheet-header h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--panel2);
  border: 1px solid var(--line);
  color: #aaa;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.close-btn:hover {
  background: #232834;
  color: var(--text);
}

.sheet p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Membership Choice Card */
.choice {
  border: 1px solid var(--pink);
  background: var(--pink-dark);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin: 16px 0;
  position: relative;
}

.choice b {
  font-size: 18px;
  color: var(--text);
  display: block;
}

.choice-perks {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.perk-item::before {
  content: '✓';
  color: var(--pink);
  font-weight: bold;
}

/* Payment Selection Mock */
.pay-methods {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.method-tag {
  flex: 1;
  padding: 8px;
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
}

.method-tag.selected {
  border-color: var(--pink);
  color: var(--text);
  background: #1e1722;
}

/* Action Buttons */
.pay-btn {
  width: 100%;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--pink);
  color: white;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 4px 20px var(--pink-glow);
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.pay-btn:hover {
  filter: brightness(1.08);
}

.pay-btn:active {
  transform: scale(0.98);
}

/* Toast Alert */
.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  bottom: 84px;
  background: #f6f7f9;
  color: #090a0e;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0.5;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Stealth Access Gate Modal */
.stealth-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.stealth-gate-overlay.show {
  display: flex;
}

.stealth-gate-card {
  width: min(380px, 100%);
  background: #0d1017;
  border: 1.5px solid rgba(59, 130, 246, 0.4);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(59, 130, 246, 0.15);
  position: relative;
}

.stealth-gate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.stealth-gate-header b {
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stealth-close-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.stealth-close-btn:hover {
  color: #fff;
}

.stealth-gate-card p {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.4;
}

.stealth-pin-field {
  width: 100%;
  height: 48px;
  background: #141824;
  border: 1.5px solid #252b3d;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 8px;
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.stealth-pin-field:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.3);
}

.stealth-submit-btn {
  width: 100%;
  height: 44px;
  background: #3b82f6;
  color: #fff;
  font-weight: 850;
  font-size: 13px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.stealth-submit-btn:hover {
  filter: brightness(1.1);
}

.stealth-submit-btn:active {
  transform: scale(0.98);
}

.stealth-error-tag {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  margin-top: 10px;
  display: none;
}

@keyframes shakeCard {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.shake {
  animation: shakeCard 0.35s ease;
}

/* ==========================================================================
   1-ON-1 PRIVATE LIVE BOOKING SHEET MODAL
   ========================================================================== */
.one-on-one-booking-summary {
  background: var(--panel2);
  border: 1.5px solid rgba(255, 46, 147, 0.35);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0 14px;
}

.booking-creator-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
}

.booking-creator-row b {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 900;
}

.booking-creator-row span {
  font-size: 11px;
  color: var(--muted);
}

.booking-price-pill {
  background: linear-gradient(135deg, #ff2e93, #ffe600);
  color: #07080e;
  font-size: 16px;
  font-weight: 950;
  padding: 6px 14px;
  border-radius: 99px;
  box-shadow: 0 0 12px rgba(255, 46, 147, 0.4);
}

.booking-input-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-secondary);
}

.booking-textarea {
  width: 100%;
  background: #141824;
  border: 1.5px solid #252b3d;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: #fff;
  font-size: 12px;
  resize: none;
  outline: none;
  transition: border-color 0.15s ease;
  font-family: inherit;
}

.booking-textarea:focus {
  border-color: var(--pink);
}

