#map { width: 100%; height: 100%; }
.leaflet-container {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.leaflet-popup-content-wrapper {
    padding: 0;
    border-radius: 14px;
}
.leaflet-popup-content {
    margin: 0;
}
.leaflet-popup-close-button {
    color: #fff;
    background: #f0373c;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    line-height: 22px;
    margin: 6px;
}
.leaflet-popup-tip {
    background: #fff;
}
.map-info-card {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    padding: 12px 14px;
    max-width: 320px;
}
.map-info-header { display: flex; gap: 10px; align-items: flex-start; }
.map-info-logo {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: inline-flex; align-items: center; justify-content: center;
}
.map-info-title { font-weight: 600; font-size: 14px; color: #333; }
.map-info-address { font-size: 12px; color: #666; margin-top: 2px; }
.map-info-status {
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: #ffe3ec;
    color: #ff3b5c;
}
.map-info-status.open { background: #e2f7ea; color: #39a95c; }
.map-info-meta { display: flex; align-items: center; gap: 8px; margin-top: 6px; font-size: 12px; color: #555; }
.map-info-rating-value { font-weight: 600; }
.google-stars{
    --rating-percent: 0%;
    --star-size: 12px;
    --star-gap: 1px;
    --star-empty: #d9d9d9;
    --star-fill: #ffc107;
    position: relative;
    display: inline-block;
    font-size: var(--star-size);
    letter-spacing: var(--star-gap);
    line-height: 1;
}
.google-stars::before{ content:"★★★★★"; color: var(--star-empty); }
.google-stars::after{
    content:"★★★★★";
    color: var(--star-fill);
    position:absolute; left:0; top:0;
    width: var(--rating-percent);
    overflow: hidden; white-space: nowrap;
}
.map-info-actions { display: flex; gap: 10px; margin-top: 10px; }
.map-info-btn {
    flex: 1;
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border: 2px solid #f0373c;
    cursor: pointer;
    text-decoration: none;
}
.map-info-btn.call { background: #f0373c; color: #fff; }
.map-info-btn.route { background: #fff; color: #f0373c; }

