/***
*** Elementor Widget : Restaurant Single Map
***/
.marker {
  cursor: pointer;
  height: 32px;
  width: 32px;
  filter: grayscale(100%);
  transition: height 0.2s ease-in-out, filter 0.2s ease-in-out;
}
.map-container {
  position: relative;
}

/* Static Map Styles */
.rhm-static-map-container {
  border-radius: 8px;
  overflow: hidden;
}

.rhm-static-map-link {
  display: block;
  position: relative;
  width: 100%;
  text-decoration: none;
  overflow: hidden;
}

.rhm-static-map-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.rhm-static-map-link:hover .rhm-static-map-image {
  transform: scale(1.02);
}

.rhm-static-map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.rhm-static-map-link:hover .rhm-static-map-overlay {
  opacity: 1;
}

.rhm-map-overlay-icon {
  color: white;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.rhm-map-overlay-icon i {
  font-size: 20px;
}
.map-info {
  position: absolute;
  top: 10px;
  left: 10px;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 1;
  max-width: 250px;
}
.map-info h3 {
  margin: 0 0 8px 0;
  font-size: 1.6rem;
  color: #202124;
}
.map-info p {
  margin: 0 0 8px 0;
  color: #5f6368;
  font-size: 0.8rem;
  line-height: 1rem;
}
.address {
  font-style: italic;
}
.rating {
  margin-bottom: 12px;
}
.stars {
  color: #fbbc04;
  margin-right: 8px;
}
.reviews {
  color: #1a73e8;
  text-decoration: none;
  font-size: 14px;
}
.map-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.map-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.2s;
}
.map-button:hover {
  background: #1557b0;
}
.map-button.view-larger {
  background: #fff;
  color: var( --e-global-color-primary );
}
.map-button.view-larger:hover {
  background: #f8f9fa;
}
.map-button.get-directions {
  background: var( --e-global-color-primary );
  color: #fff;
}
.map-button.get-directions:hover {
  opacity: 0.9;
}