/* ========================================
   L'Moon Playbox Booking — Dark Theme
   Matches lmoongroup.com design system
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&display=swap');

:root {
  --bg-color: #0d0d12;
  --bg-surface: rgba(20, 20, 30, 0.6);
  --bg-card: rgba(25, 25, 38, 0.8);
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #6a6a7a;
  --accent-purple: #8a2be2;
  --accent-pink: #ff007f;
  --accent-gradient: linear-gradient(135deg, #8a2be2, #ff007f);
  --glass-bg: rgba(20, 20, 30, 0.4);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-hover: rgba(255, 255, 255, 0.2);
  --error-color: #ff4757;
  --success-color: #4ade80;
  --warning-color: #fbbf24;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 30px;
  --shadow-glow: 0 0 20px rgba(138, 43, 226, 0.15);
  --shadow-pink: 0 0 20px rgba(255, 0, 127, 0.2);
  --transition: 0.3s ease;
  --font: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gradient);
  border-radius: 10px;
}

/* ========================================
   Navbar (matches lmoongroup.com)
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13, 13, 18, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo .dot {
  color: var(--accent-pink);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition), text-shadow var(--transition);
}

.nav-links a:hover {
  color: var(--accent-pink);
  text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

.nav-links a.active {
  color: var(--accent-pink);
}

/* ========================================
   Page Container
   ======================================== */

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 100px 20px 60px;
}

/* ========================================
   Page Header
   ======================================== */

.page-header {
  text-align: center;
  margin-bottom: 2rem;
}

.page-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  margin-bottom: 0.5rem;
}

.page-title .highlight {
  color: var(--accent-pink);
}

.page-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.info-pill {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* ========================================
   Form Sections (glassmorphism cards)
   ======================================== */

.form-section {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: border-color var(--transition);
}

.form-section:hover {
  border-color: var(--glass-border-hover);
}

.section-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.section-header h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-pink);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-body {
  padding: 1.5rem;
}

/* ========================================
   Form Elements
   ======================================== */

.form-group {
  margin-bottom: 1.25rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.required {
  color: var(--accent-pink);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-glow);
  background: rgba(255, 255, 255, 0.08);
}

.form-input.error {
  border-color: var(--error-color);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

/* Select triggers */
.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
}

.select-trigger:hover {
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.08);
}

.select-trigger.selected {
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-glow);
}

.select-text {
  font-size: 14px;
  color: var(--text-muted);
}

.select-trigger.selected .select-text {
  color: var(--text-primary);
  font-weight: 500;
}

.select-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
}

.select-trigger:hover .select-arrow {
  color: var(--accent-pink);
}

/* Native selects */
.form-select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23a0a0b0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select:focus {
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-glow);
}

.form-select option {
  background: #1a1a2e;
  color: var(--text-primary);
}

/* Date/time row */
.form-row {
  display: flex;
  gap: 1rem;
}

.form-group-date,
.form-group-time {
  flex: 1;
}

.time-picker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.time-select {
  flex: 1;
  min-width: 0;
}

.time-colon {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
}

input[type="date"] {
  cursor: pointer;
  color-scheme: dark;
}

.hint-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.error-msg {
  display: block;
  font-size: 0.75rem;
  color: var(--error-color);
  margin-top: 0.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.error-msg.visible {
  opacity: 1;
}

/* ========================================
   Availability Badge
   ======================================== */

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: var(--success-color);
  margin-top: 0.5rem;
}

.availability-badge.low {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
  color: var(--warning-color);
}

.availability-badge.none {
  background: rgba(255, 71, 87, 0.1);
  border-color: rgba(255, 71, 87, 0.3);
  color: var(--error-color);
}

/* ========================================
   Service Details Card
   ======================================== */

.service-details {
  margin: -0.5rem 0 1rem;
  animation: slideDown 0.3s ease-out;
}

.detail-card {
  background: rgba(138, 43, 226, 0.08);
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.detail-icon {
  font-size: 14px;
}

.price-row {
  margin-top: 0.25rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.price-text {
  font-weight: 700;
  color: var(--accent-pink);
  font-size: 1rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Policy
   ======================================== */

.policy-section {
  padding: 0;
  margin-bottom: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--glass-border);
  border-radius: 4px;
  position: relative;
  transition: all var(--transition);
  margin-top: 1px;
}

.checkbox-label input:checked+.checkbox-custom {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
}

.checkbox-label input:checked+.checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.policy-link {
  color: var(--accent-pink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-link:hover {
  text-shadow: 0 0 8px rgba(255, 0, 127, 0.4);
}

/* ========================================
   Total Section
   ======================================== */

.total-section {
  margin-bottom: 1.5rem;
  animation: slideDown 0.3s ease-out;
}

.total-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--accent-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pink);
}

.total-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.total-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

/* ========================================
   Submit Button (pill-shaped, L'Moon style)
   ======================================== */

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  border: 2px solid var(--accent-pink);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: var(--accent-pink);
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.5);
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ========================================
   Modals (glassmorphism)
   ======================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity var(--transition);
}

.modal-overlay.visible {
  opacity: 1;
}

.modal {
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  background: #1a1a2e;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition);
}

.modal-overlay.visible .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.modal-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.modal-body {
  padding: 1rem;
  overflow-y: auto;
  max-height: calc(80vh - 60px);
}

/* Modal items */
.modal-item {
  padding: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  margin-bottom: 0.5rem;
}

.modal-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--glass-border-hover);
}

.modal-item.selected {
  background: rgba(138, 43, 226, 0.1);
  border-color: var(--accent-purple);
}

.modal-item-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.modal-item-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.modal-item-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-pink);
  margin-top: 4px;
}

.modal-category {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
}

/* ========================================
   Payment Modal
   ======================================== */

.payment-modal {
  max-width: 420px;
}

.payment-body {
  text-align: center;
}

.payment-timer {
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.timer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.timer-value {
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-pink);
}

.timer-bar-bg {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  height: 4px;
  overflow: hidden;
}

.timer-bar {
  height: 100%;
  width: 100%;
  background: var(--accent-gradient);
  border-radius: 4px;
  transition: width 1s linear;
}

.timer-bar.urgent {
  background: linear-gradient(90deg, #ff4757, #ff6b81);
  animation: pulse 0.5s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.qr-container {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.qr-image {
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.payment-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  text-align: left;
}

.payment-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.payment-info strong {
  color: var(--accent-pink);
}

.payment-amount strong {
  font-size: 1rem;
}

.payment-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.payment-status.waiting {
  background: rgba(138, 43, 226, 0.1);
  color: var(--accent-purple);
  border: 1px solid rgba(138, 43, 226, 0.3);
}

.payment-status.confirmed {
  background: rgba(74, 222, 128, 0.1);
  color: var(--success-color);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.payment-status.expired {
  background: rgba(255, 71, 87, 0.1);
  color: var(--error-color);
  border: 1px solid rgba(255, 71, 87, 0.3);
}

.status-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-top-color: var(--accent-purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.payment-status.confirmed .status-spinner,
.payment-status.expired .status-spinner {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.payment-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
}

.skip-payment-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  font-family: var(--font);
  font-size: 0.8rem;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
}

.skip-payment-btn:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

/* ========================================
   Success Screen
   ======================================== */

.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.5s;
}

.success-overlay.visible {
  opacity: 1;
}

.success-card {
  width: 90%;
  max-width: 420px;
  background: #1a1a2e;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.5s;
}

.success-overlay.visible .success-card {
  transform: scale(1);
}

.success-icon {
  margin-bottom: 1rem;
  animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.success-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.success-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.booking-code {
  font-family: 'Courier New', monospace;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-pink);
  background: rgba(255, 0, 127, 0.1);
  border: 1px solid rgba(255, 0, 127, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.success-details {
  text-align: left;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.success-details strong {
  color: var(--text-primary);
}

/* Check-in directions */
.checkin-directions {
  margin-bottom: 1rem;
}

.checkin-card {
  background: rgba(74, 222, 128, 0.05);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: left;
}

.checkin-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--success-color);
  margin-bottom: 0.5rem;
}

.checkin-card ol {
  padding-left: 1.5rem;
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.checkin-card ol strong {
  color: var(--text-primary);
}

.checkin-note {
  font-size: 0.75rem;
  color: var(--warning-color);
  font-style: italic;
  margin: 0;
}

/* ========================================
   Loading Overlay
   ======================================== */

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 18, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.loading-spinner {
  text-align: center;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--glass-border);
  border-top-color: var(--accent-pink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

.loading-spinner p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ========================================
   Social Sidebar
   ======================================== */

.social-sidebar {
  position: fixed;
  right: 0;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 500;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: rgba(30, 30, 40, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px 0 0 12px;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  width: 46px;
  overflow: hidden;
  transition: all var(--transition);
}

.social-btn:hover {
  width: 160px;
  background: var(--accent-pink);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}

.social-icon {
  font-size: 1.2rem;
  min-width: 26px;
  text-align: center;
}

.social-text {
  white-space: nowrap;
}

/* ========================================
   Utilities
   ======================================== */

.hidden {
  display: none !important;
}

/* ========================================
   Toast
   ======================================== */

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 5000;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 90%;
  text-align: center;
}

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

.toast-info {
  background: #4a9eff;
  color: #fff;
}

.toast-error {
  background: #ff4757;
  color: #fff;
}

.toast-success {
  background: #4ade80;
  color: #1a1a2e;
}

.toast-warning {
  background: #fbbf24;
  color: #1a1a2e;
}

/* ========================================
   Mobile Sticky Booking Bar
   ======================================== */

.mobile-booking-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(13, 13, 18, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  z-index: 900;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 640px) {
  .container {
    padding: 90px 12px 80px;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .section-body {
    padding: 1rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-group-date,
  .form-group-time {
    flex: unset;
  }

  .modal {
    width: 95%;
    max-height: 85vh;
  }

  .booking-code {
    font-size: 1.4rem;
  }

  .navbar {
    flex-direction: column;
    padding: 0.6rem 4%;
    gap: 4px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .nav-links {
    overflow-x: auto;
    width: 100%;
    gap: 12px;
    justify-content: center;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .social-sidebar {
    bottom: 70px;
    gap: 6px;
  }

  .social-btn {
    padding: 8px;
    width: 40px;
  }

  .social-btn:hover {
    width: 140px;
  }
}

@media (max-width: 380px) {
  .page-title {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 0.85rem;
  }

  .form-input,
  .form-select,
  .select-trigger {
    padding: 10px 12px;
    font-size: 13px;
  }
}