.agro-custom-icon { background: none !important; border: none !important; }

.store-marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  background-color: var(--agro-white);
  transition: transform 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.store-marker:hover { transform: scale(1.22) !important; z-index: 99999 !important; }

/* 🟢 ПЛАТНЫЕ (Премиум) */
.store-marker.paid {
  background-color: var(--agro-green);
  border: 2px solid var(--agro-white);
  outline: 2px solid #f1c40f; /* Золотой контур */
}
.store-marker.paid .marker-pin { border-top: 7px solid #f1c40f; }
.store-marker.paid .cat-more {
  font-size: 9px; font-weight: 800; background: var(--agro-dark); color: white; padding: 1px 3px; border-radius: 4px;
}

/* ⚪ БЕСПЛАТНЫЕ */
.store-marker.free { background-color: var(--agro-dark); border: 2px solid var(--agro-white); opacity: 0.9; }
.store-marker.free .marker-pin { border-top: 7px solid var(--agro-dark); }

.marker-pin {
  position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent;
}

/* 🏢 КАРТОЧКА ПОПАПА (Стиль ЦИАН) */
.leaflet-popup-content-wrapper {
  background: var(--agro-white) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
  border: 1px solid var(--agro-border);
  padding: 6px;
}
.leaflet-popup-tip { background: var(--agro-white) !important; }

.agro-popup-card { width: 240px; font-family: system-ui, sans-serif; }
.agro-popup-title { font-size: 16px; font-weight: 700; color: var(--agro-dark); margin-bottom: 4px; }
.agro-popup-address { font-size: 12px; color: #718096; margin-bottom: 10px; line-height: 1.3; }
.agro-popup-tags { display: flex; gap: 4px; margin-bottom: 12px; flex-wrap: wrap; }
.agro-tag { font-size: 11px; background: var(--agro-bg-light); padding: 2px 6px; border-radius: 4px; border: 1px solid var(--agro-border); }
.agro-popup-btn {
  display: block; width: 100%; background-color: var(--agro-teal); color: white; text-align: center;
  padding: 10px; border-radius: 6px; font-weight: 600; text-decoration: none; font-size: 13px;
}
.agro-popup-btn:hover { background-color: #16a085; }

/* Кнопки зума Leaflet */
.leaflet-bar { border: 1px solid var(--agro-border) !important; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important; border-radius: 8px !important; overflow: hidden; }
.leaflet-bar a { background-color: var(--agro-white) !important; color: var(--agro-dark) !important; }
.leaflet-bar a:hover { color: var(--agro-green) !important; }
