.custom-store-marker{
  background:transparent !important;
  border:none !important;
}

.store-marker-logo{
  width:56px;
  height:56px;
  border-radius:50%;
  background-size:cover;
  background-position:center;
  border:3px solid white;
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
  position:relative;
}

.store-marker-logo::after{
  content:"";
  position:absolute;
  bottom:-10px;
  left:50%;
  transform:translateX(-50%);
  width:0;
  height:0;
  border-left:8px solid transparent;
  border-right:8px solid transparent;
  border-top:12px solid white;
}

.custom-store-marker{
  background: transparent !important;
  border: none !important;
}

.store-marker-logo{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid white;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  position: relative;
}

.store-marker-logo::after{
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid white;
}

.store-preview{
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 320px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  overflow: hidden;
  z-index: 1000;
}

.store-preview.hidden{
  display: none;
}

.store-preview img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.store-preview-content{
  padding: 14px;
}

.store-preview-content h3{
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.store-preview-content p{
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.store-preview-content a{
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #f97316;
  color: white;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.store-preview-content a:hover{
  background: #ea580c;
}

.close-preview {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 16px;
}

.close-preview:hover {
  background: rgba(0,0,0,0.8);
} 