/* ==============================================================================
 * FILE: map-markers.css
 * CATEGORY: MarlonWalksLA Website - Hotel Anchor & Proximity Upsell UI
 * ============================================================================== */

/* =========================================================
   1. HOTEL ANCHOR MARKER
   ========================================================= */
.hotel-marker-pin {
  width: 36px;
  height: 36px;
  background-color: #1e293b;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  cursor: pointer;
  z-index: 1000 !important;
}

/* =========================================================
   2. HOTEL ANCHOR UI BOX
   ========================================================= */
.hotel-anchor-box {
  background: #f8fafc;
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.hotel-anchor-title { font-size: 11px; font-weight: 800; color: #0f172a; line-height: 1.1; }
.hotel-anchor-sub { font-size: 9px; color: #64748b; }

/* =========================================================
   3. RECOMMENDED TOUR PROXIMITY UPSELL CARD
   ========================================================= */
.proximity-upsell-card {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1.5px solid #93c5fd;
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proximity-upsell-header { display: flex; align-items: center; justify-content: space-between; }
.proximity-badge { font-size: 9px; font-weight: 800; color: #1e40af; text-transform: uppercase; }
.proximity-title { font-size: 12px; font-weight: 800; color: #0f172a; }
.proximity-desc { font-size: 10px; color: #334155; line-height: 1.3; }

.proximity-cta-btn {
  background: #2563eb;
  color: #ffffff;
  border: none;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.proximity-cta-btn:hover { background: #1d4ed8; }
.mobile-drag-handle { display: none !important; }
