.tabs-nav-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 1rem;
}
.tabs-nav-wrapper::-webkit-scrollbar { display: none; }
.tabs-nav { display: flex; gap: 6px; width: max-content; padding-bottom: 2px; }

.tab-btn {
  padding: 7px 16px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  border-radius: 100px !important;
  border: 1.5px solid #ddd !important;
  background: #fff !important;
  color: #555 !important;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  line-height: 1.4 !important;
}
.tab-btn:hover  { border-color: #2959b1 !important; color: #2959b1 !important; }
.tab-btn.active { background: #2959b1 !important; border-color: #2959b1 !important; color: #fff !important; }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.gasolineras-v3 { background: #2959b1; border-radius: 14px; padding: 1.25rem 1.5rem; }
.gasolineras-v3 .titulo {
  font-size: 15px; font-weight: 500; color: #fff;
  display: flex; align-items: center; gap: 8px; margin: 0 0 1rem;
}
.gasolineras-v3 .titulo svg { width: 18px; height: 18px; opacity: 0.85; flex-shrink: 0; }
.lista { display: flex; flex-direction: column; gap: 10px; }

.gv3-card {
  background: rgba(255,255,255,0.12);
  border: 0.5px solid rgba(255,255,255,0.2);
  border-radius: 10px; padding: 10px 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.gv3-card.oculta { display: none; }
.gv3-card.animando { animation: gv3FadeSlide 0.3s ease forwards; }
@keyframes gv3FadeSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gv3-left  { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.gv3-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }

.gv3-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gv3-icon svg { width: 17px; height: 17px; color: #fff; }

.gv3-num { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.4); min-width: 18px; text-align: center; flex-shrink: 0; }

.gv3-info  { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gv3-nombre   { font-size: 14px; font-weight: 500; color: #ffd700; }
.gv3-direccion { font-size: 11px; color: rgba(255,255,255,0.9); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gv3-horario  { font-size: 11px; color: rgba(255,255,255,0.9); }

.gv3-precios { display: flex; gap: 6px; }
.gv3-precio  {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.1); border-radius: 7px; padding: 4px 8px; gap: 3px;
}
.gv3-precio.destacado {
  background: rgba(134,213,152,0.25);
  border: 1px solid rgba(134,213,152,0.5);
}
.gv3-precio-label {
  display: flex; align-items: center; gap: 4px;
  font-size: 9px; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.gv3-precio.destacado .gv3-precio-label { color: #a8e6b8; }
.gv3-precio-valor { font-size: 13px; font-weight: 500; color: #fff; }
.gv3-precio.destacado .gv3-precio-valor { font-size: 14px; color: #c8f5d4; }

.fuel-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.fuel-dot.gasolina { background: #4ade80; }
.fuel-dot.diesel   { background: #94a3b8; }

.gv3-acciones { display: flex; align-items: center; gap: 8px; }
.gv3-distancia {
  font-size: 11px; color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1); padding: 2px 8px; border-radius: 100px;
}
.gv3-distancia.destacado {
  background: rgba(134,213,152,0.25);
  border: 1px solid rgba(134,213,152,0.5);
  color: #c8f5d4; font-weight: 500;
}
.gv3-maps {
  display: flex; align-items: center; gap: 3px;
  font-size: 12px; font-weight: 500; color: #fff;
  text-decoration: none; opacity: 0.85;
}
.gv3-maps:hover { opacity: 1; text-decoration: underline; }
.gv3-maps svg { width: 12px; height: 12px; }

.btn-ver-mas {
  width: 100%; margin-top: 12px; padding: 9px;
  background: rgba(255,255,255,0.12);
  border: 0.5px solid rgba(255,255,255,0.25);
  border-radius: 8px; color: #fff;
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: background 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-ver-mas:hover { background: rgba(255,255,255,0.2); }
.btn-ver-mas svg { width: 14px; height: 14px; transition: transform 0.3s; }
.btn-ver-mas.abierto svg { transform: rotate(180deg); }

@media (max-width: 600px) {
  .gv3-card { flex-direction: column; align-items: flex-start; gap: 10px; }
  .gv3-right { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
  .gasolineras-v3 { padding: 1rem; }
}

.gv3-fechadatos {
  font-size: 11px;
  color: rgba(255,255,255,0.9);
  font-style: italic;
}
