/* Winevizer World Map — styles bloc KPI + carte */
.wv-world-map {
    --wv-primary: #7a0f1c;
    --wv-accent: #c72a3a;
    --wv-text: #1a1a1a;
    --wv-muted: #6b6b6b;
    --wv-bg-light: #f8f5f0;
    --wv-border: #e5dfd5;
    margin: 60px 0;
    color: var(--wv-text);
}
.wv-world-map.wv-world-map--compact { margin: 40px 0; }
.wv-world-map__title {
    font-size: 2rem; font-weight: 700; text-align: center;
    margin-bottom: 8px; color: var(--wv-primary);
}
.wv-world-map__subtitle {
    text-align: center; color: var(--wv-muted);
    margin-bottom: 32px; font-size: 1rem;
}
.wv-world-map__kpis {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; margin-bottom: 32px;
}
.wv-world-map--compact .wv-world-map__kpis { gap: 12px; margin-bottom: 20px; }
.wv-world-map__kpi {
    background: var(--wv-bg-light); border: 1px solid var(--wv-border);
    border-radius: 12px; padding: 20px; text-align: center;
}
.wv-world-map__kpi-value {
    display: block; font-size: 2rem; font-weight: 700;
    color: var(--wv-primary); line-height: 1;
}
.wv-world-map__kpi-label {
    display: block; margin-top: 8px; font-size: 0.85rem;
    color: var(--wv-muted); text-transform: uppercase; letter-spacing: 0.05em;
}
.wv-world-map__container {
    position: relative; width: 100%; height: 70vh; min-height: 480px;
    border-radius: 12px; overflow: hidden;
    background: var(--wv-bg-light); border: 1px solid var(--wv-border);
}
.wv-world-map--compact .wv-world-map__container { height: 400px; min-height: 400px; }
.wv-map-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 100%; padding: 40px 24px; text-align: center; color: var(--wv-muted);
}
.wv-map-placeholder p { max-width: 460px; font-size: 1rem; margin-bottom: 20px; }
.wv-map-consent-btn {
    background: var(--wv-primary); color: #fff; border: none;
    padding: 12px 28px; border-radius: 8px; font-size: 0.95rem;
    cursor: pointer; transition: background 0.2s;
}
.wv-map-consent-btn:hover { background: #a01b2d; }
.wv-map-loading, .wv-map-empty {
    color: var(--wv-muted); text-align: center; padding: 100px 20px;
}
.wv-map-info { padding: 4px 8px; line-height: 1.4; }
.wv-map-info strong { color: var(--wv-primary); font-size: 0.95rem; }
.wv-map-info small { color: var(--wv-muted); }
.wv-world-map__legend {
    display: flex; justify-content: center; gap: 32px;
    margin-top: 20px; flex-wrap: wrap;
}
.wv-world-map__legend-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; color: var(--wv-muted);
}
.wv-world-map__legend-dot {
    width: 14px; height: 14px; border-radius: 50%;
    border: 2px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}
.wv-world-map__legend-dot--restaurant { background: var(--wv-primary); }
.wv-world-map__legend-dot--wine-bar { background: var(--wv-accent); }

@media (max-width: 768px) {
    .wv-world-map__kpis { grid-template-columns: repeat(2, 1fr); }
    .wv-world-map__title { font-size: 1.5rem; }
    .wv-world-map__kpi-value { font-size: 1.5rem; }
    .wv-world-map__container { height: 60vh; min-height: 380px; }
    .wv-world-map--compact .wv-world-map__container { height: 320px; min-height: 320px; }
}
@media (max-width: 360px) {
    .wv-world-map__legend { gap: 16px; }
}
