/* ========================================
   HOMEPAGE BUSCADOR BETA - OPCIÓN 3: ESTILO GOOGLE
   Archivo: homepage.css
   ======================================== */

:root {
  --amarillo: #ffd300;
  --amarillo-hover: #ffe44d;
  --negro: #141414;
  --negro-claro: #1a1a1a;
  --gris-oscuro: #222;
  --gris-medio: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--negro);
  color: #fff;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  padding: 1rem 3rem;
  background: rgba(0, 0, 0, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--amarillo);
  cursor: pointer;
}

.btn-agregar-negocio {
  background: var(--amarillo);
  color: #000;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-agregar-negocio:hover {
  background: var(--amarillo-hover);
  transform: translateY(-2px);
}

/* ========================================
   HERO BUSCADOR - ESTILO GOOGLE
   ======================================== */
.buscador-compacto {
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 4rem 3rem;
  position: relative;
}

/* Hero Content */
.hero-content {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.hero-title span {
  color: var(--amarillo);
  display: inline-block;
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--amarillo);
  opacity: 0.5;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #999;
  font-weight: 400;
}

/* Input Flotante - Estilo Google */
.search-floating {
  background: rgba(34, 34, 34, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 211, 0, 0.2);
  border-radius: 50px;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.5),
    0 5px 15px rgba(0, 0, 0, 0.3);
}

.search-floating:hover,
.search-floating:focus-within {
  border-color: var(--amarillo);
  box-shadow: 
    0 20px 70px rgba(0, 0, 0, 0.6),
    0 10px 30px rgba(255, 211, 0, 0.3);
  transform: translateY(-3px);
}

.search-floating i {
  color: var(--amarillo);
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}

.search-floating:focus-within i {
  transform: scale(1.1);
}

.search-floating input {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  outline: none;
}

.search-floating input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

/* Controles Minimalistas */
.search-controls-minimal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
  width: 100%;
}

.location-minimal {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.5rem;
  background: rgba(255, 211, 0, 0.08);
  border: 1px solid rgba(255, 211, 0, 0.2);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.location-minimal:hover {
  background: rgba(255, 211, 0, 0.15);
  border-color: rgba(255, 211, 0, 0.4);
  transform: scale(1.02);
}

.location-icon {
  color: var(--amarillo);
  font-size: 1.1rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.location-select {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.location-select option {
  background: var(--gris-oscuro);
  color: #fff;
}

.voice-btn-minimal {
  background: linear-gradient(135deg, var(--amarillo), var(--amarillo-hover));
  border: none;
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 211, 0, 0.3);
}

.voice-btn-minimal:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 25px rgba(255, 211, 0, 0.5);
}

.voice-btn-minimal:active {
  transform: scale(0.95);
}

.voice-btn-minimal i {
  font-size: 1.2rem;
}

/* ========================================
   OFERTAS
   ======================================== */
.ofertas-hero {
  padding: 3rem;
  background: linear-gradient(to bottom, var(--negro-claro), var(--negro));
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Section header con ícono + línea — igual que galería */
.section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.section-header i { color: #aaa; font-size: 0.9rem; }
.section-header span { font-size: 0.95rem; font-weight: 700; color: white; }
.section-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #242424;
}

/* Card Próximamente — dark consistente */
.prox-card {
  background: #1a1a1a;
  border: 1px solid #242424;
  border-left: 3px solid rgba(255, 211, 0, 0.4);
  border-radius: 16px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
/* Ícono gigante de fondo decorativo */
.prox-card::before {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  opacity: 0.04;
}

.prox-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 211, 0, 0.08);
  border: 1px solid rgba(255, 211, 0, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffd300;
  flex-shrink: 0;
}

.prox-card h3 {
   font-size: 0.92rem;
  font-weight: 700;
  color: #888;
  margin-bottom: 3px;
}

.prox-card p {
    font-size: 0.76rem;
  color: #3a3a3a;
  line-height: 1.5;
}

.ofertas-carrusel {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
}

.ofertas-carrusel .prox-card {
  grid-column: 1 / -1;
}

.oferta-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.oferta-card:hover {
  transform: scale(1.05);
}

.oferta-card.principal {
  grid-row: span 2;
}

.oferta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oferta-card.principal .oferta-img {
  height: 500px;
}

.oferta-card:not(.principal) .oferta-img {
  height: 240px;
}

.oferta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.oferta-badge {
  background: var(--amarillo);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.oferta-title {
  font-size: 1.3rem;
  font-weight: 700;
}

.oferta-card.principal .oferta-title {
  font-size: 2.5rem;
}

/* ========================================
   TOP 10
   ======================================== */
.top10-section {
  padding: 3rem;
}

.top10-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.top10-grid .prox-card {
  grid-column: 1 / -1;
}

.top10-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  background: var(--negro-claro);
}

.top10-card:hover {
  transform: translateY(-10px);
}

.top10-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.top10-number {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--amarillo);
  color: #000;
  font-weight: 900;
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.top10-info {
  padding: 1rem;
}

.top10-name {
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.top10-rating {
  color: var(--amarillo);
  font-size: 0.9rem;
}

/* ========================================
   CATEGORÍAS
   ======================================== */
.categorias-section {
  padding: 3rem;
  background: linear-gradient(to bottom, var(--negro), var(--negro-claro));
}

.categorias-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-main {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #999;
  font-weight: 400;
}

.categorias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.categoria-card {
  background: #1a1a1a;
  border: 1px solid #242424;
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.categoria-card:hover {
  background: #222;
  border-color: #333;
}

/* Colores por categoría */
.categoria-card[data-categoria="alimentos"] .categoria-icon { color: #FFC107; }
.categoria-card[data-categoria="salud"]      .categoria-icon { color: #2196F3; }
.categoria-card[data-categoria="servicios"]  .categoria-icon { color: #90A4AE; }
.categoria-card[data-categoria="compras"]    .categoria-icon { color: #4CAF50; }
.categoria-card[data-categoria="hogar"]      .categoria-icon { color: #BCAAA4; }
.categoria-card[data-categoria="urgencias"]  .categoria-icon { color: #F44336; }

.categoria-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
  display: block;
  transition: transform 0.2s ease;
}

.categoria-card:hover .categoria-icon {
  transform: scale(1.15);
}

.categoria-name {
  font-weight: 700;
  font-size: 0.82rem;
  color: #aaa;
}

/* ========================================
   BOTÓN FLOTANTE CTA
   ======================================== */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #ffd300, #ffe44d);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(255, 211, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 100;
  animation: slideInRight 1s ease-out 0.5s both;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.floating-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 211, 0, 0.5);
}

.floating-cta span {
  font-weight: 700;
  font-size: 1.05rem;
  color: #2a2a2a;
}

.floating-cta i {
  font-size: 1.3rem;
  color: #2a2a2a;
  transition: transform 0.3s ease;
}

.floating-cta:hover i {
  transform: translateX(5px);
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

/* ========================================
   RESPONSIVE - TABLET / DESKTOP
   ======================================== */
@media (min-width: 1024px) {

  /* Hero más espacioso */
  .buscador-compacto {
    padding: 6rem 3rem 4rem;
    max-width: 860px;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  /* Contenedor máximo para secciones */
  .ofertas-hero,
  .top10-section,
  .categorias-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  /* Categorías en 6 columnas */
  .categorias-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  /* Floating CTA más arriba para no tapar contenido */
  .floating-cta {
    bottom: 3rem;
    right: 3rem;
  }

  /* Top10 mock ocupa todo el ancho */
  .top10-mock {
    width: 100%;
  }

  /* Espacio extra abajo en categorías para que el botón flotante no tape */
  .categorias-section {
    padding-bottom: 6rem;
  }

  /* Ofertas: 3 columnas, cards más altas que anchas */
  .ofertas-mock {
    grid-template-columns: repeat(auto-fill, minmax(240px, 280px));
    justify-content: start;
  }

  .ofertas-mock > div {
    min-height: 260px !important;
  }

}

@media (min-width: 1400px) {
  .buscador-compacto {
    max-width: 960px;
    padding: 7rem 3rem 5rem;
  }

  .ofertas-hero,
  .top10-section,
  .categorias-section {
    max-width: 1400px;
  }
}

@media (max-width: 1024px) {
  .ofertas-carrusel {
    grid-template-columns: 1fr 1fr;
  }
  
  .oferta-card.principal {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .top10-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .categorias-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   RESPONSIVE - MÓVIL
   ======================================== */
@media (max-width: 768px) {
  /* HEADER */
  .header {
    padding: 1rem 1.5rem;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .btn-agregar-negocio {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  /* BUSCADOR */
  .buscador-compacto {
    padding: 2.5rem 1rem 2rem;
    margin: 0 0 2rem;
  }
  
  .hero-content {
    margin-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .search-floating {
    padding: 1.2rem 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .search-floating i {
    font-size: 1.2rem;
  }
  
  .search-floating input {
    font-size: 1rem;
  }
  
  .search-controls-minimal {
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }
  
  .location-minimal {
    width: 100%;
    justify-content: center;
  }
  
  .voice-btn-minimal {
    width: 45px;
    height: 45px;
  }
  
  /* OFERTAS */
  .ofertas-hero {
    padding: 1.5rem 1rem;
  }
  
  .section-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .ofertas-carrusel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .oferta-card.principal {
    grid-column: span 1;
  }
  
  .oferta-card.principal .oferta-img {
    height: 220px;
  }
  
  .oferta-card:not(.principal) .oferta-img {
    height: 180px;
  }
  
  .oferta-overlay {
    padding: 1rem;
  }
  
  .oferta-badge {
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .oferta-title {
    font-size: 1rem;
  }
  
  .oferta-card.principal .oferta-title {
    font-size: 1.5rem;
  }
  
  /* TOP 10 */
  .top10-section {
    padding: 1.5rem 1rem;
  }
  
  .top10-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .top10-img {
    height: 180px;
  }
  
  .top10-number {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  .top10-info {
    padding: 0.7rem;
  }
  
  .top10-name {
    font-size: 0.9rem;
  }
  
  .top10-rating {
    font-size: 0.8rem;
  }
  
  /* CATEGORÍAS */
  .categorias-section {
    padding: 2.5rem 1rem;
  }
  
  .categorias-header {
    margin-bottom: 2rem;
  }
  
  .section-title-main {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    color: #aaa;
  }
  
  .categorias-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .categoria-card {
    padding: 2rem 1rem;
    border-radius: 16px;
  }
  
  .categoria-icon {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
  }
  
  .categoria-name {
    font-size: 1rem;
  }
  
  /* BOTÓN FLOTANTE */
  .floating-cta {
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1.3rem;
  }
  
  .floating-cta span {
    font-size: 0.85rem;
  }
  
  .floating-cta i {
    font-size: 1rem;
  }
}

/* ========================================
   RESPONSIVE - MÓVIL PEQUEÑO
   ======================================== */
@media (max-width: 480px) {
  .logo {
    font-size: 1.3rem;
  }
  
  .btn-agregar-negocio {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .buscador-compacto {
    padding: 2rem 0.8rem 1.5rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
  }
  
  .search-floating {
    padding: 1rem 1.5rem;
  }
  
  .oferta-card.principal .oferta-img {
    height: 180px;
  }
  
  .oferta-card:not(.principal) .oferta-img {
    height: 150px;
  }
  
  .oferta-title {
    font-size: 0.9rem;
  }
  
  .oferta-card.principal .oferta-title {
    font-size: 1.2rem;
  }
  
  .categorias-section {
    padding: 2rem 0.8rem;
  }
  
  .section-title-main {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 0.85rem;
  }
  
  .categorias-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .categoria-card {
    padding: 1.8rem 0.8rem;
  }
  
  .categoria-icon {
    font-size: 2.5rem;
  }
  
  .categoria-name {
    font-size: 0.9rem;
  }
  
  .floating-cta {
    padding: 0.6rem 1rem;
  }
  
  .floating-cta span {
    font-size: 0.75rem;
  }
}
/* ========================================
   MOCK CARDS - OPCIÓN A
   ======================================== */

/* OFERTAS — grid 2x2 con overlay */
.ofertas-mock {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mock-oferta {
  background: #1a1a1a;
  border: 1px solid #242424;
  border-radius: 14px;
  height: 120px;
  position: relative;
  overflow: hidden;
}

.mock-oferta-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  opacity: 0.06;
  color: white;
}

.mock-oferta-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.mock-tag {
  display: inline-block;
  background: rgba(255,211,0,0.12);
  border: 1px solid rgba(255,211,0,0.22);
  color: #ffd300;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.mock-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #444;
}

.mock-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px);
  background: rgba(18,18,18,0.72);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 2;
  padding: 16px;
  text-align: center;
}

.mock-overlay-icon {
  width: 44px; height: 44px;
  background: rgba(255,211,0,0.1);
  border: 1px solid rgba(255,211,0,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffd300;
}

.mock-overlay h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
}

.mock-overlay p {
  font-size: 0.72rem;
  color: #555;
  line-height: 1.4;
  max-width: 200px;
}

/* TOP 10 — lista con overlay */
.top10-mock {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-top-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1a1a1a;
  border: 1px solid #242424;
  border-radius: 12px;
  padding: 10px 14px;
}

.mock-num {
  font-size: 1rem;
  font-weight: 900;
  color: #222;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.mock-num.gold { color: rgba(255,211,0,0.25); }

.mock-avatar {
  width: 36px; height: 36px;
  background: #222;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-info { flex: 1; }

.mock-bar-name {
  height: 8px;
  border-radius: 4px;
  background: #222;
  margin-bottom: 5px;
  width: 70%;
}

.mock-bar-sub {
  height: 6px;
  border-radius: 4px;
  background: #1e1e1e;
  width: 45%;
}

.mock-stars { display: flex; gap: 2px; }

.mock-star {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: #1e1e1e;
}

.mock-star.lit { background: rgba(255,211,0,0.2); }

.top10-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px);
  background: rgba(18,18,18,0.72);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 2;
  text-align: center;
  padding: 16px;
}

.top10-overlay-icon {
  width: 44px; height: 44px;
  background: rgba(255,211,0,0.1);
  border: 1px solid rgba(255,211,0,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffd300;
}

.top10-overlay h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
}

.top10-overlay p {
  font-size: 0.72rem;
  color: #555;
  line-height: 1.4;
  max-width: 200px;
}
/* ========================================
   SELECTOR DE ZONA — OPCION C
   ======================================== */

.zona-selector {
  position: relative;
  flex: 1;
  width: 100%;
}

.zona-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  border: 1.5px solid rgba(255, 211, 0, 0.25);
  border-radius: 50px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.zona-trigger:hover {
  background: rgba(255, 211, 0, 0.06);
  border-color: rgba(255, 211, 0, 0.45);
}

.zona-trigger > i:first-child {
  color: #ffd300;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.zona-trigger-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
}

.zona-trigger-label {
  font-size: 0.65rem;
  color: #666;
  line-height: 1;
}

.zona-trigger-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zona-cambiar {
  font-size: 0.72rem;
  color: #ffd300;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.zona-trigger-arrow {
  color: #ffd300;
  font-size: 0.65rem;
  transition: transform 0.2s;
}

/* Sheet — oculto por defecto */
.zona-sheet {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #1a1a1a;
  border: 1px solid #242424;
  border-radius: 14px;
  overflow: hidden;
  z-index: 200;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.zona-sheet.open { display: block; }

.zona-sheet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  cursor: pointer;
  border-bottom: 1px solid #1f1f1f;
  transition: background 0.15s;
}

.zona-sheet-item:last-child { border-bottom: none; }
.zona-sheet-item:hover { background: #222; }
.zona-sheet-item.active { background: rgba(255,211,0,0.05); }

.zona-sheet-item i:first-child {
  color: #333;
  font-size: 0.75rem;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.zona-sheet-item.active i:first-child { color: #ffd300; }

.zona-sheet-nombre {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
}

.zona-sheet-item.active .zona-sheet-nombre { color: #fff; }

.zona-sheet-check {
  font-size: 0.6rem;
  color: #ffd300;
  opacity: 0;
}

.zona-sheet-item.active .zona-sheet-check { opacity: 1; }

/* Voz integrada en el buscador */
.voice-btn-inline {
  width: 32px;
  height: 32px;
  background: #242424;
  border: 1px solid #2e2e2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.voice-btn-inline:hover { background: #2a2a2a; color: #aaa; }
.voice-btn-inline i { font-size: 0.75rem; }
.voice-btn-minimal { display: none; }