/* svip-valle.css — Carrusel "Sitios de interés Valle de Aburrá" + 5 modales fullscreen
 *  v2: Cards compactas tipo pill horizontal, Leaflet, contribuciones, combobox.
 *  Independiente de sv-market.css. Namespace .svip-valle / #svipValle*
 */

/* ───────── Sección y carrusel ───────── */
.svip-valle-section{
  padding: 4px 0 16px;
  background: transparent;
}
.svip-valle-section .svh-row{
  display:flex; align-items:center; justify-content:space-between;
  padding: 0 16px 10px;
}
.svip-valle-section .svh-title{
  margin:0; font-size:16px; font-weight:800; color:#fff;
  letter-spacing:-.2px;
}
.svip-valle-rail{
  display:flex; gap:10px; overflow-x:auto; overflow-y:hidden;
  scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
  padding: 0 16px 6px; scrollbar-width:none;
}
.svip-valle-rail::-webkit-scrollbar{ display:none; }

/* Card compacto tipo pill horizontal */
.svip-valle-card{
  flex:0 0 auto;
  min-width: 200px; max-width: 230px;
  height: 64px;
  border-radius: 14px;
  position:relative;
  background:#161616;
  border:1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; gap:10px;
  padding: 10px 12px;
  scroll-snap-align:start;
  cursor:pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.svip-valle-card:active{ transform: scale(.97); background:#1c1c1c; }
.svip-valle-card .vc-icon{
  flex-shrink:0;
  width:42px; height:42px; border-radius:12px;
  background: var(--vc-bg, rgba(254,44,85,.18));
  color: var(--vc-fg, #FE2C55);
  display:flex; align-items:center; justify-content:center;
  font-size:22px;
  border:1px solid var(--vc-bd, rgba(254,44,85,.28));
}
.svip-valle-card .vc-body{
  flex:1; min-width:0;
}
.svip-valle-card .vc-title{
  font-size:14px; font-weight:800; color:#fff; line-height:1.15;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.svip-valle-card .vc-sub{
  font-size:11px; color:#9aa0a6; margin-top:2px;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.svip-valle-card .vc-chev{
  flex-shrink:0; color:#666; font-size:18px;
}

/* Card-específicos: tonos */
.svip-valle-card[data-key="transporte"]{ --vc-bg:rgba(30,136,229,.16); --vc-fg:#42a5f5; --vc-bd:rgba(30,136,229,.30); }
.svip-valle-card[data-key="lugares"]   { --vc-bg:rgba(34,197,94,.16);  --vc-fg:#4ade80; --vc-bd:rgba(34,197,94,.30); }
.svip-valle-card[data-key="barrios"]   { --vc-bg:rgba(168,85,247,.16); --vc-fg:#c084fc; --vc-bd:rgba(168,85,247,.30); }
.svip-valle-card[data-key="emergencias"]{--vc-bg:rgba(239,68,68,.16);  --vc-fg:#f87171; --vc-bd:rgba(239,68,68,.30); }
.svip-valle-card[data-key="tramites"]  { --vc-bg:rgba(249,115,22,.16); --vc-fg:#fb923c; --vc-bd:rgba(249,115,22,.30); }

/* ───────── Botón "Jugar online" ───────── */
.svip-games-entry-section{
  padding: 6px 16px 18px;
}
.svip-games-entry{
  width:100%; display:flex; align-items:center; gap:14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 1px solid rgba(254,44,85,.25);
  color:#fff; cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  font-family: inherit;
  text-align:left;
  position:relative; overflow:hidden;
  transition: transform .15s ease;
}
.svip-games-entry:active{ transform: scale(.98); }
.svip-games-entry::before{
  content:''; position:absolute; right:-20px; bottom:-30px;
  width:100px; height:100px; border-radius:50%;
  background: radial-gradient(circle, rgba(254,44,85,.18), transparent 70%);
}
.svip-games-entry .sge-ico{
  width:48px; height:48px; border-radius:14px;
  background: rgba(254,44,85,.18);
  border:1px solid rgba(254,44,85,.35);
  display:flex; align-items:center; justify-content:center;
  font-size:24px; flex-shrink:0;
}
.svip-games-entry .sge-body{ flex:1; min-width:0; position:relative; z-index:1; }
.svip-games-entry .sge-title{ font-size:15px; font-weight:800; color:#fff; }
.svip-games-entry .sge-sub{ font-size:11px; color:#9aa0a6; margin-top:2px; }
.svip-games-entry .sge-chev{ font-size:22px; color:#FE2C55; flex-shrink:0; }

/* ───────── Modal fullscreen ───────── */
.svip-valle-modal{
  position:fixed; inset:0; z-index:2147483640;
  background:#0b0b0b; color:#fff;
  display:none; flex-direction:column;
  font-family:-apple-system, system-ui, sans-serif;
  overflow:hidden;
}
.svip-valle-modal.show{ display:flex; animation: svvIn .22s ease; }
@keyframes svvIn{ from{ opacity:0; transform: translateY(20px); } to{ opacity:1; transform: translateY(0); } }

.svip-valle-modal .vm-head{
  position:sticky; top:0; z-index:10;
  display:flex; align-items:center; gap:10px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #0b0b0b 60%, rgba(11,11,11,.85));
  border-bottom:1px solid #1a1a1a;
  padding-top: max(14px, env(safe-area-inset-top));
}
.svip-valle-modal .vm-back{
  width:36px; height:36px; border-radius:50%; border:none;
  background:#1a1a1a; color:#fff; display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:18px; flex-shrink:0;
}
.svip-valle-modal .vm-back:active{ background:#262626; }
.svip-valle-modal .vm-title{
  font-size:17px; font-weight:800; flex:1; min-width:0;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.svip-valle-modal .vm-action{
  height:36px; min-width:36px; padding:0 10px; border-radius:18px; border:none;
  background:#1a1a1a; color:#fff; display:flex; align-items:center; justify-content:center; gap:5px;
  cursor:pointer; font-size:13px; font-weight:700; flex-shrink:0;
}
.svip-valle-modal .vm-action.primary{ background:#FE2C55; }
.svip-valle-modal .vm-body{
  flex:1; overflow-y:auto; -webkit-overflow-scrolling:touch;
  padding: 16px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

/* Title row con combobox al lado */
.svv-title-row{
  display:flex; align-items:center; gap:10px;
  margin-bottom:14px; flex-wrap:wrap;
}
.svv-title-row > h3{ margin:0; font-size:15px; font-weight:800; color:#fff; flex:1; min-width:0; }
.svv-select{
  background:#141414; color:#fff; border:1px solid #232323;
  border-radius:10px; padding:8px 28px 8px 12px; font-size:13px; font-weight:700;
  font-family:inherit; outline:none;
  appearance:none; -webkit-appearance:none;
  background-image: linear-gradient(45deg, transparent 50%, #888 50%), linear-gradient(135deg, #888 50%, transparent 50%);
  background-position: calc(100% - 14px) center, calc(100% - 9px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor:pointer;
}
.svv-select:focus{ border-color:#FE2C55; }

/* Search box */
.svv-search{
  position:relative; margin-bottom:14px;
}
.svv-search input{
  width:100%; padding:13px 14px 13px 42px;
  border-radius:14px; border:1px solid #222; background:#141414;
  color:#fff; font-size:15px; outline:none;
  font-family: inherit;
}
.svv-search input:focus{ border-color:#FE2C55; }
.svv-search::before{
  content:'🔍'; position:absolute; left:14px; top:50%; transform:translateY(-50%);
  font-size:14px; opacity:.6;
}

/* Chips de filtro */
.svv-chips{
  display:flex; gap:8px; overflow-x:auto; padding-bottom:8px; margin-bottom:14px;
  scrollbar-width:none;
}
.svv-chips::-webkit-scrollbar{ display:none; }
.svv-chip{
  flex:0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #ccc;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #232323;
  cursor:pointer;
  white-space:nowrap;
  -webkit-tap-highlight-color:transparent;
  font-family:inherit;
}
.svv-chip.active{ background:#FE2C55; color:#fff; border-color:#FE2C55; }

/* Sección dentro del modal */
.svv-section{ margin-bottom: 22px; }
.svv-section h3{
  font-size:13px; font-weight:800; margin:0 0 10px;
  color:#fff;
  text-transform:uppercase; letter-spacing:.6px;
}

/* Lista de items */
.svv-list{ display:flex; flex-direction:column; gap:10px; }
.svv-item{
  display:flex; align-items:center; gap:12px;
  padding:12px; background:#141414;
  border-radius:14px; border:1px solid #1f1f1f;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  transition: background .15s ease;
}
.svv-item:active{ background:#1a1a1a; }
.svv-item .si-ico{
  width:44px; height:44px; border-radius:12px;
  background:#222; display:flex; align-items:center; justify-content:center;
  font-size:22px; flex-shrink:0;
  color:#fff; font-weight:800;
}
.svv-item .si-body{ flex:1; min-width:0; }
.svv-item .si-name{ font-size:15px; font-weight:700; color:#fff; }
.svv-item .si-sub{ font-size:12px; color:#9aa0a6; margin-top:2px; }
.svv-item .si-chev{ color:#666; font-size:18px; }

/* Grid de tarjetas (lugares) */
.svv-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap:12px; }
.svv-tile{
  border-radius:14px; overflow:hidden; background:#141414;
  border:1px solid #1f1f1f; cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  display:flex; flex-direction:column;
  position:relative;
}
.svv-tile:active{ transform:scale(.97); }
.svv-tile .st-img{
  width:100%; aspect-ratio: 4/3; background:#222 center/cover no-repeat;
  position:relative;
}
.svv-tile .st-img.placeholder{
  background: linear-gradient(135deg, #1f1f1f, #0f0f0f);
}
.svv-tile .st-img.placeholder::after{
  content:'📷  Sé el primero en aportar foto';
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  text-align:center; padding:0 12px;
  font-size:11px; color:#9aa0a6; font-weight:600;
  line-height:1.3;
}
.svv-tile .st-body{ padding:10px 12px; }
.svv-tile .st-title{ font-size:13px; font-weight:700; color:#fff; line-height:1.2; }
.svv-tile .st-sub{ font-size:11px; color:#9aa0a6; margin-top:3px; }
.svv-tile .st-flag-new{
  position:absolute; top:8px; left:8px;
  background:rgba(254,44,85,.92); color:#fff;
  font-size:10px; font-weight:800;
  padding:3px 7px; border-radius:6px;
  letter-spacing:.4px;
}

/* Mapa Leaflet */
.svv-leaflet{
  width:100%; height: 380px;
  border-radius:18px; overflow:hidden;
  border:1px solid #1a1a1a; margin-bottom:16px;
  background:#0f0f0f;
}
.svv-leaflet.small{ height: 240px; }
.svv-leaflet .leaflet-container{ background:#0f0f0f; font-family:inherit; }
.svv-leaflet .leaflet-popup-content-wrapper{
  background:#1a1a1a; color:#fff; border-radius:10px;
  box-shadow: 0 6px 20px rgba(0,0,0,.5);
}
.svv-leaflet .leaflet-popup-content{ margin: 10px 14px; font-size:13px; }
.svv-leaflet .leaflet-popup-tip{ background:#1a1a1a; }
.svv-leaflet .leaflet-popup-close-button{ color:#fff !important; padding:6px !important; }
.svv-leaflet .leaflet-control-attribution{
  background:rgba(0,0,0,.6); color:#aaa; font-size:10px;
}
.svv-leaflet .leaflet-control-attribution a{ color:#ccc; }

/* Leyenda */
.svv-legend{
  display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px;
}
.svv-legend span{
  display:inline-flex; align-items:center; gap:6px;
  font-size:11px; font-weight:700; color:#ccc;
  padding:4px 9px; border-radius:999px;
  background:#141414; border:1px solid #232323;
}
.svv-legend span::before{
  content:''; width:9px; height:9px; border-radius:50%; background: var(--lc, #888);
}

/* Tarifas y horarios cards */
.svv-info-grid{
  display:grid; grid-template-columns: repeat(2, 1fr); gap:10px;
  margin-bottom:14px;
}
.svv-info-card{
  background:#141414; border-radius:14px; padding:12px;
  border:1px solid #1f1f1f;
}
.svv-info-card .ic-label{ font-size:11px; color:#9aa0a6; font-weight:700; text-transform:uppercase; letter-spacing:.5px; }
.svv-info-card .ic-value{ font-size:18px; font-weight:800; color:#fff; margin-top:4px; }
.svv-info-card .ic-foot{ font-size:11px; color:#bbb; margin-top:4px; }

.svv-bullets{ margin: 0 0 14px; padding-left:18px; color:#cfcfcf; font-size:13px; line-height:1.6; }
.svv-bullets li{ margin-bottom:4px; }

.svv-horario{
  background:#141414; border:1px solid #1f1f1f; border-radius:12px;
  padding:10px 12px; margin-bottom:8px;
  font-size:13px; color:#d8d8d8;
}
.svv-horario b{ color:#fff; }

/* Galería + lightbox */
.svv-gallery{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:6px;
  margin-bottom:14px;
}
.svv-gallery .gimg{
  aspect-ratio:1/1; background:#1a1a1a center/cover no-repeat;
  border-radius:8px; cursor:pointer;
}
.svv-lightbox{
  position:fixed; inset:0; z-index:2147483647;
  background:rgba(0,0,0,.96);
  display:none; align-items:center; justify-content:center;
  padding:20px;
}
.svv-lightbox.show{ display:flex; }
.svv-lightbox img{ max-width:100%; max-height:100%; border-radius:10px; }
.svv-lightbox .lb-close{
  position:absolute; top: max(14px, env(safe-area-inset-top));
  right:14px; width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,.15); border:none; color:#fff;
  font-size:20px; cursor:pointer;
}

/* Badges */
.svv-badge-row{ display:flex; flex-wrap:wrap; gap:6px; margin-top:6px; }
.svv-badge{
  font-size:10px; font-weight:700;
  padding:3px 8px; border-radius:6px;
  background:#1f1f1f; color:#ccc;
}
.svv-badge.danger{ background:#7f1d1d; color:#fee2e2; }
.svv-badge.warn{ background:#7c2d12; color:#fed7aa; }
.svv-badge.info{ background:#1e3a8a; color:#bfdbfe; }
.svv-badge.ok{ background:#14532d; color:#bbf7d0; }

/* Empty/loading */
.svv-empty{
  text-align:center; padding:30px 16px; color:#9aa0a6;
  font-size:13px;
}
.svv-spinner{
  width:32px; height:32px; border-radius:50%;
  border:3px solid #2a2a2a; border-top-color:#FE2C55;
  animation: svvSpin .8s linear infinite;
  margin: 30px auto;
}
@keyframes svvSpin{ to { transform: rotate(360deg); } }

/* Detalle de lugar */
.svv-place-hero{
  width: calc(100% + 32px); margin: -16px -16px 16px;
  aspect-ratio: 16/10;
  background: #1a1a1a center/cover no-repeat;
  position:relative;
}
.svv-place-hero.placeholder{
  background: linear-gradient(135deg, var(--ph-c, #FE2C55), #1a1a1a);
}
.svv-place-hero::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.6));
}
.svv-place-name{
  font-size:22px; font-weight:800; margin-bottom:6px; color:#fff;
}
.svv-place-meta{
  display:flex; flex-wrap:wrap; gap:8px; font-size:12px; color:#bbb;
  margin-bottom:14px;
}
.svv-place-meta span{
  display:inline-flex; align-items:center; gap:4px;
  background:#141414; padding:5px 10px; border-radius:999px;
  border:1px solid #232323;
}
.svv-place-desc{
  font-size:14px; line-height:1.55; color:#d8d8d8;
  margin-bottom:14px;
}

.svv-link-row{
  display:flex; flex-wrap:wrap; gap:8px; margin-bottom:14px;
}
.svv-btn{
  padding:9px 14px; border-radius:10px; border:none;
  background:#1f1f1f; color:#fff; font-size:13px; font-weight:700;
  cursor:pointer; -webkit-tap-highlight-color:transparent;
  display:inline-flex; align-items:center; gap:6px;
  text-decoration:none; font-family:inherit;
}
.svv-btn:active{ background:#2a2a2a; }
.svv-btn.primary{ background:#FE2C55; }
.svv-btn.primary:active{ background:#e02649; }
.svv-btn.success{ background:#16a34a; }
.svv-btn.danger{ background:#7f1d1d; }
.svv-btn.full{ width:100%; justify-content:center; }
.svv-btn:disabled{ opacity:.5; pointer-events:none; }

/* Toast */
.svv-toast{
  position:fixed; bottom: calc(80px + env(safe-area-inset-bottom));
  left:50%; transform: translateX(-50%);
  background:#1a1a1a; color:#fff; padding:10px 16px;
  border-radius:999px; font-size:13px; font-weight:600;
  border:1px solid #2a2a2a; z-index:2147483646;
  animation: svvToast 2.5s ease forwards;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
@keyframes svvToast{
  0% { opacity:0; transform:translate(-50%, 12px); }
  10%,90% { opacity:1; transform:translate(-50%, 0); }
  100% { opacity:0; transform:translate(-50%, -8px); }
}

/* ──── Contribuciones ──── */
.svv-contrib-list{
  display:flex; flex-direction:column; gap:10px;
  margin-bottom: 12px;
}
.svv-contrib{
  background:#141414; border:1px solid #1f1f1f; border-radius:14px;
  padding:12px;
}
.svv-contrib .cc-head{ display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.svv-contrib .cc-ava{
  width:32px; height:32px; border-radius:50%;
  background:#1a1a1a center/cover no-repeat;
  flex-shrink:0;
}
.svv-contrib .cc-meta{ flex:1; min-width:0; }
.svv-contrib .cc-name{ font-size:13px; font-weight:700; color:#fff; }
.svv-contrib .cc-time{ font-size:11px; color:#888; }
.svv-contrib .cc-text{ font-size:13px; color:#d8d8d8; line-height:1.5; margin-bottom:8px; white-space:pre-wrap; }
.svv-contrib .cc-photos{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:5px;
  margin-bottom:8px;
}
.svv-contrib .cc-photo{
  aspect-ratio:1/1; background:#222 center/cover no-repeat;
  border-radius:8px; cursor:pointer;
}
.svv-contrib .cc-actions{ display:flex; gap:8px; }
.svv-contrib .cc-actions button{
  background:transparent; border:none; color:#888;
  font-size:12px; cursor:pointer; padding:4px 8px;
  font-family:inherit;
}
.svv-contrib .cc-actions button:active{ color:#fff; }
.svv-contrib .cc-actions button.danger{ color:#f87171; }

/* Modal contribuir */
.svv-contrib-form{
  background:#141414; border:1px solid #1f1f1f; border-radius:14px;
  padding:14px; margin-bottom:14px;
}
.svv-contrib-form label{
  display:block; font-size:12px; color:#9aa0a6; font-weight:700;
  text-transform:uppercase; letter-spacing:.5px; margin-bottom:6px;
}
.svv-contrib-form input[type="text"],
.svv-contrib-form textarea,
.svv-contrib-form select{
  width:100%; background:#0f0f0f; border:1px solid #2a2a2a; color:#fff;
  border-radius:10px; padding:10px 12px; font-size:14px; outline:none;
  font-family:inherit; margin-bottom:12px;
  box-sizing:border-box;
}
.svv-contrib-form input:focus,
.svv-contrib-form textarea:focus,
.svv-contrib-form select:focus{ border-color:#FE2C55; }
.svv-contrib-form textarea{ min-height:90px; resize:vertical; }

.svv-photo-picker{
  display:flex; flex-wrap:wrap; gap:8px; margin-bottom:12px;
}
.svv-photo-picker .ph-thumb{
  width:72px; height:72px; border-radius:10px;
  background:#1a1a1a center/cover no-repeat;
  position:relative;
}
.svv-photo-picker .ph-thumb .ph-x{
  position:absolute; top:-4px; right:-4px;
  width:20px; height:20px; border-radius:50%;
  background:#000; color:#fff; font-size:13px;
  border:1px solid #fff;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.svv-photo-picker .ph-add{
  width:72px; height:72px; border-radius:10px;
  background:#1a1a1a; border:2px dashed #444;
  display:flex; align-items:center; justify-content:center;
  font-size:24px; color:#888; cursor:pointer;
}
.svv-photo-picker .ph-add:active{ background:#222; }

.svv-tos{
  background:#0f0f0f; border:1px solid #1f1f1f; border-radius:12px;
  padding:12px; font-size:12px; color:#9aa0a6; line-height:1.55;
  margin-bottom:12px;
}
.svv-tos b{ color:#fff; }

/* Hero card de transporte */
.svv-hero-card{
  background: linear-gradient(135deg, rgba(30,136,229,.18), rgba(13,71,161,.10));
  border:1px solid rgba(30,136,229,.30);
  border-radius:18px; padding:18px;
  margin-bottom:16px; text-align:center;
}
.svv-hero-card .hc-icon{ font-size:38px; margin-bottom:8px; }
.svv-hero-card .hc-title{ font-size:16px; font-weight:800; color:#fff; margin-bottom:4px; }
.svv-hero-card .hc-sub{ font-size:12px; color:#9aa0a6; margin-bottom:14px; }
.svv-hero-card .hc-stats{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:10px;
  margin-bottom:14px;
}
.svv-hero-card .hc-stat{ background:rgba(0,0,0,.25); border-radius:10px; padding:10px; }
.svv-hero-card .hc-stat b{ display:block; font-size:20px; font-weight:800; color:#fff; }
.svv-hero-card .hc-stat span{ font-size:11px; color:#bbb; }
.svv-hero-card .hc-actions{ display:flex; gap:8px; justify-content:center; flex-wrap:wrap; }

/* Pill línea */
.svv-line-pill{
  display:inline-block; padding:3px 9px; border-radius:6px;
  font-size:11px; font-weight:800; color:#fff;
  vertical-align: middle;
}

/* ──── Custom combobox ──── */
.svv-combo{
  position:relative;
  background:#141414; color:#fff; border:1px solid #232323;
  border-radius:10px; padding:10px 32px 10px 12px;
  font-size:13px; font-weight:700; cursor:pointer;
  user-select:none; min-width:140px;
  outline:none;
}
.svv-combo:focus{ border-color:#FE2C55; }
.svv-combo .svv-combo-current{
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.svv-combo .svv-combo-arrow{
  position:absolute; right:10px; top:50%; transform:translateY(-50%);
  color:#888; font-size:11px; transition: transform .15s ease;
  pointer-events:none;
}
.svv-combo.open .svv-combo-arrow{ transform:translateY(-50%) rotate(180deg); color:#FE2C55; }
.svv-combo .svv-combo-list{
  position:absolute; top:calc(100% + 6px); left:0; right:0;
  background:#141414; border:1px solid #2a2a2a;
  border-radius:12px;
  max-height: 280px; overflow-y:auto;
  z-index: 10;
  display:none;
  box-shadow: 0 6px 20px rgba(0,0,0,.6);
  font-weight:600;
}
.svv-combo.open .svv-combo-list{ display:block; }
.svv-combo .svv-combo-opt{
  padding:11px 14px; font-size:13px; color:#ddd;
  border-bottom:1px solid #1a1a1a;
  cursor:pointer; -webkit-tap-highlight-color:transparent;
}
.svv-combo .svv-combo-opt:last-child{ border-bottom:none; }
.svv-combo .svv-combo-opt:active,
.svv-combo .svv-combo-opt:hover{ background:#1a1a1a; color:#fff; }
.svv-combo .svv-combo-opt.active{ background:rgba(254,44,85,.15); color:#FE2C55; font-weight:800; }

/* Combobox dentro del form (full width) */
.svv-contrib-form .svv-combo{
  width:100%; margin-bottom:0; padding:12px 32px 12px 14px; font-size:14px;
  background:#0f0f0f; border-color:#2a2a2a;
}

/* ──── Sticky bottom (botón Publicar) ──── */
.svv-sticky-bottom{
  position: sticky; bottom: 0;
  margin: 14px -16px 0;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, #0b0b0b 35%, #0b0b0b);
  z-index: 5;
  border-top:1px solid #1a1a1a;
}

/* ──── Atribución ──── */
.svv-attrib{
  font-size:12px; color:#9aa0a6; margin: -8px 0 14px;
  background: rgba(254,44,85,.08); border:1px solid rgba(254,44,85,.18);
  padding:6px 10px; border-radius:8px;
  display:inline-block;
}
.svv-attrib b{ color:#fff; }

/* ──── Hero de Transporte (más on-brand, sutil) ──── */
.svv-tx-hero{
  background: linear-gradient(135deg, rgba(30,136,229,.14), rgba(13,71,161,.06));
  border:1px solid rgba(30,136,229,.22);
  border-radius:18px; padding:18px 16px;
  margin-bottom:16px;
}
.svv-tx-hero .tx-stats{
  display:flex; align-items:center; justify-content:space-around;
  margin-bottom:14px;
}
.svv-tx-hero .tx-stat{ text-align:center; flex:1; }
.svv-tx-hero .tx-stat b{
  display:block; font-size:24px; font-weight:800; color:#fff; line-height:1;
  letter-spacing:-.5px;
}
.svv-tx-hero .tx-stat span{
  display:block; font-size:11px; color:#9aa0a6; margin-top:4px;
  text-transform:uppercase; letter-spacing:.5px; font-weight:700;
}
.svv-tx-hero .tx-divider{
  width:1px; height:32px; background:rgba(255,255,255,.10);
}
.svv-tx-hero .tx-modes{
  display:flex; flex-wrap:wrap; gap:6px; justify-content:center;
  padding-top:14px; border-top:1px solid rgba(255,255,255,.06);
}
.svv-tx-hero .tx-modes span{
  font-size:11px; font-weight:700; color:#cfd9e8;
  background: rgba(255,255,255,.04);
  padding:5px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.06);
}

/* ──── Collapse (expand/collapse) ──── */
.svv-collapse{
  background:#141414; border:1px solid #1f1f1f;
  border-radius:14px; margin-bottom:14px;
  overflow:hidden;
}
.svv-collapse-head{
  display:flex; align-items:center; justify-content:space-between;
  width:100%; padding:14px 16px;
  background:transparent; color:#fff; border:none;
  cursor:pointer; -webkit-tap-highlight-color:transparent;
  font-family:inherit; font-size:14px; font-weight:800;
  text-align:left;
}
.svv-collapse-head:active{ background:#1a1a1a; }
.svv-collapse-head .ch-text{ display:flex; align-items:center; gap:10px; }
.svv-collapse-head .ch-ico{ font-size:18px; }
.svv-collapse-head .ch-arrow{
  color:#888; font-size:14px;
  transition: transform .2s ease;
}
.svv-collapse.open .svv-collapse-head .ch-arrow{
  transform: rotate(180deg); color:#FE2C55;
}
.svv-collapse-body{
  max-height: 0; overflow:hidden;
  transition: max-height .28s ease;
  padding: 0 14px;
}
.svv-collapse.open .svv-collapse-body{
  max-height: 1200px;
  padding: 4px 14px 14px;
}

/* Card "Jugar online" clonado: pequeños ajustes para evitar margin-top extra */
.svip-games-home-card-clone{ margin-top: 4px !important; }

/* Responsivo */
@media (max-width: 360px){
  .svip-valle-card{ min-width: 180px; }
  .svv-grid{ grid-template-columns: 1fr; }
}
