/* =============================================
   BOTTOM SHEET (Modern Popup - Google Maps style)
   ============================================= */

.bottom-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 500;
  display: none;
  backdrop-filter: blur(2px);
}

.bottom-sheet-overlay.open {
  display: block;
}

.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 501;
  background: var(--color-surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  padding-bottom: var(--space-8);
}

.bottom-sheet.open {
  transform: translateY(0);
}

.bottom-sheet-handle {
  width: 40px;
  height: 4px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  margin: var(--space-3) auto var(--space-4);
}

.bottom-sheet-title {
  font-size: var(--text-lg);
  font-weight: 700;
  padding: 0 var(--space-6) var(--space-4);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-4);
}

.bottom-sheet-content {
  padding: 0 var(--space-5);
}
