/* GeoInsights – Frontend Styles */

/* ── Consent Bar ────────────────────────────────────── */
#gi-consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #1e1b4b;
  color: #fff;
  padding: 0;
  transform: translateY(100%);
  transition: transform .35s ease;
  box-shadow: 0 -2px 12px rgba(0,0,0,.2);
}
#gi-consent-bar.gi-visible { transform: translateY(0); }

.gi-consent-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.gi-consent-text { margin: 0; font-size: .92rem; line-height: 1.4; color: #ffffff !important; }
.gi-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }

.gi-btn {
  cursor: pointer;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: .85rem;
  font-weight: 600;
  transition: opacity .2s;
}
.gi-btn:hover { opacity: .85; }
.gi-btn-primary   { background: #4f46e5; color: #fff; }
.gi-btn-secondary { background: rgba(255,255,255,.15); color: #fff; }

/* ── Elementor Widget ───────────────────────────────── */
.gi-widget { font-family: inherit; }
.gi-widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: #333;
}

/* KPI row */
.gi-w-kpi-grid {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.gi-w-kpi {
  flex: 1;
  min-width: 80px;
  background: #f5f3ff;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}
.gi-w-kpi-val {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #4f46e5;
  line-height: 1;
}
.gi-w-kpi-lbl { display: block; font-size: .72rem; color: #666; margin-top: 4px; }

/* City list */
.gi-city-list { list-style: none; margin: 0; padding: 0; }
.gi-city-row  { margin-bottom: 10px; }
.gi-city-meta { display: flex; justify-content: space-between; margin-bottom: 4px; font-size: .85rem; }
.gi-city-name { font-weight: 600; color: #333; }
.gi-city-count{ color: #666; }
.gi-bar-track { background: #ede9fe; border-radius: 4px; height: 6px; overflow: hidden; }
.gi-bar-fill  { height: 100%; background: #4f46e5; border-radius: 4px; transition: width .5s ease; }

.gi-empty { color: #999; font-style: italic; font-size: .85rem; }

/* Detalle autenticado */
.gi-city-row.gi-auth { margin-bottom: 16px; }
.gi-city-detail {
    display: flex;
    gap: 16px;
    font-size: .75rem;
    color: #888;
    margin-bottom: 4px;
}
/* Widget charts */
.gi-w-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.gi-w-chart-block {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
}
.gi-w-chart-title {
    margin: 0 0 12px;
    font-size: .85rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: .05em;
}

@media ( max-width: 600px ) {
    .gi-w-charts { grid-template-columns: 1fr; }
}
