/* ============================================================
   MAIN.CSS — Un Millón de Píxeles
   Identidad visual: #00ccff #0571e2 #000 #86868b #eefdff #d9edff #e8e8e8 #f9f9f9
   ============================================================ */

:root {
    /* Brand Colors */
    --cyan:        #00ccff;
    --blue:        #0571e2;
    --black:       #000000;
    --gray:        #86868b;
    --cyan-light:  #eefdff;
    --blue-light:  #d9edff;
    --gray-light:  #e8e8e8;
    --off-white:   #f9f9f9;
    --white:       #ffffff;

    /* Semantic */
    --primary:     var(--blue);
    --primary-glow:var(--cyan);
    --bg:          var(--off-white);
    --surface:     var(--white);
    --border:      var(--gray-light);
    --text:        var(--black);
    --text-muted:  var(--gray);
    --shadow:      0 4px 20px rgba(5,113,226,0.12);
    --shadow-lg:   0 20px 40px -5px rgba(5,113,226,0.18);

    --font:        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --radius-pill: 50px;
    --radius-lg:   20px;
    --radius-md:   12px;
    --radius-sm:   8px;
    --transition:  all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --nav-h:       68px;
}

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

html, body {
    /* height manejado por página */
    width: 100%;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px; border-radius: var(--radius-pill);
    font-family: var(--font); font-weight: 700; font-size: 0.92rem;
    letter-spacing: -0.02em; text-decoration: none;
    cursor: pointer; border: none; transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(5,113,226,0.35);
}
.btn-primary:hover { background: #0461c7; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(5,113,226,0.4); }
.btn-primary:active { transform: scale(0.97); }

.btn-outline {
    background: rgba(255,255,255,0.9);
    color: var(--black);
    border: 1.5px solid var(--gray-light);
    backdrop-filter: blur(4px);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

html, body {

#pixel-map {
    position: fixed;
    top: 0; left: 0; right: 0;
    bottom: var(--nav-h);
    overflow: hidden;
    background: var(--off-white);
}

#pixelCanvas {
    position: absolute; inset: 0;
    width: 100%;
    display: block;
    cursor: crosshair;
    touch-action: none;
    outline: none;
}
#pixelCanvas.dragging { cursor: grab; }
#pixelCanvas.dragging:active { cursor: grabbing; }

/* --- MAP CONTROLS --- */
.map-controls {
    position: absolute;
    top: 16px; left: 16px;
    display: flex; flex-direction: column; gap: 8px;
    z-index: 60;
}
.zoom-controls {
    position: absolute;
    top: 16px; right: 16px;
    display: flex; flex-direction: column; gap: 8px;
    z-index: 60;
}
.map-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gray-light);
    color: var(--black); font-size: 1.1rem;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition); line-height: 1;
}
.map-btn:hover  { background: var(--blue); color: var(--white); border-color: var(--blue); transform: scale(1.08); box-shadow: 0 4px 16px rgba(5,113,226,0.3); }
.map-btn:active { transform: scale(0.94); }

/* --- STATS PILLS --- */
.map-stats {
    position: absolute;
    bottom: 16px; left: 16px;
    display: flex; gap: 8px; z-index: 60;
}
.map-stat-pill {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    display: flex; flex-direction: column; align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.map-stat-pill .n { font-size: 0.88rem; font-weight: 800; letter-spacing: -0.5px; line-height: 1; color: var(--black); }
.map-stat-pill .l { font-size: 0.52rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 1px; }

/* --- BUY BUTTON --- */
.buy-btn {
    position: absolute;
    top: 16px; left: 50%; transform: translateX(-50%);
    background: var(--blue); color: var(--white);
    border: none; padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-family: var(--font); font-weight: 700; font-size: 0.85rem;
    cursor: pointer; z-index: 60;
    box-shadow: 0 4px 16px rgba(5,113,226,0.35);
    transition: var(--transition); white-space: nowrap;
}
.buy-btn:hover { background: #0461c7; transform: translateX(-50%) translateY(-1px); box-shadow: 0 8px 20px rgba(5,113,226,0.4); }

/* --- HERO OVERLAY --- */
.hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    pointer-events: none;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    background: radial-gradient(circle, transparent 0%, transparent 28%, rgba(249,249,249,0.92) 100%);
    transition: opacity 1.5s ease-in-out, visibility 1.5s;
}
.hero-overlay.fade-out { opacity: 0; visibility: hidden; }
.hero-text { max-width: 600px; padding: 0 24px; pointer-events: none; }
.hero-text > * { pointer-events: auto; }
.hero-headline {
    font-size: 3rem; font-weight: 900; line-height: 1.05;
    letter-spacing: -2px; margin-bottom: 14px;
    background: linear-gradient(135deg, var(--black) 0%, var(--blue) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subheadline {
    font-size: 1.05rem; color: var(--gray); margin-bottom: 28px;
    background: rgba(255,255,255,0.8); backdrop-filter: blur(4px);
    padding: 6px 16px; border-radius: var(--radius-sm); display: inline-block;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- HOVER CARD --- */
#hover-card {
    position: fixed; top: 0; left: 0;
    width: 190px; aspect-ratio: 4/5;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    pointer-events: auto; z-index: 50; opacity: 0;
    transform: scale(0.9) translate3d(0,0,0);
    transform-origin: center bottom;
    transition: opacity 0.3s cubic-bezier(0.2,0.8,0.2,1), transform 0.3s cubic-bezier(0.2,0.8,0.2,1);
    display: flex; flex-direction: column; justify-content: flex-end;
    overflow: hidden; cursor: pointer;
}
#hover-card.visible { opacity: 1; transform: scale(1) translate3d(0,0,0); }
.card-play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 1; }
.play-icon { color: #fff; font-size: 52px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1); }
#hover-card:hover .play-icon { transform: scale(1.15); }
.card-info { position: relative; z-index: 2; padding: 14px; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%); }
.card-user   { font-size: 0.92rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-meta   { display: flex; justify-content: space-between; align-items: center; margin-top: 3px; }
.card-action { font-size: 0.7rem; color: rgba(255,255,255,0.85); }
.card-coords { font-size: 0.6rem; color: rgba(255,255,255,0.5); font-family: monospace; }

/* --- SELECTION BAR --- */
#sel-bar {
    position: absolute;
    bottom: 16px; left: 50%;
    transform: translateX(-50%);
    background: var(--black); color: var(--white);
    padding: 0; border-radius: var(--radius-pill);
    font-size: 0.88rem; font-weight: 700;
    display: none; z-index: 60;
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
    transition: var(--transition);
    overflow: hidden;
    font-family: var(--font);
}
#sel-bar.show { display: flex; }
.sel-bar-info {
    padding: 13px 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
    white-space: nowrap;
}
.sel-bar-price {
    padding: 13px 16px;
    color: var(--cyan);
    border-right: 1px solid rgba(255,255,255,0.15);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
.sel-bar-btn {
    padding: 13px 20px;
    background: var(--blue);
    cursor: pointer; white-space: nowrap;
    transition: background 0.2s;
    border: none; color: #fff; font-family: var(--font);
    font-weight: 700; font-size: 0.88rem;
}
.sel-bar-btn:hover { background: #0461c7; }
.sel-bar-clear {
    padding: 13px 14px;
    cursor: pointer; color: rgba(255,255,255,0.4);
    font-size: 1.1rem; line-height: 1;
    border: none; background: none; font-family: var(--font);
    transition: color 0.2s;
}
.sel-bar-clear:hover { color: #fff; }

/* --- SELECTION HINT --- */
#sel-hint {
    position: absolute; top: 68px; left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.72); color: #fff;
    padding: 7px 16px; border-radius: var(--radius-pill);
    font-size: 0.74rem; font-weight: 600; z-index: 60;
    pointer-events: none; opacity: 0; transition: opacity 0.4s;
    white-space: nowrap; backdrop-filter: blur(8px);
    font-family: var(--font);
}
#sel-hint.visible { opacity: 1; }

/* --- MODAL --- */
#purchase-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    z-index: 3000; display: none;
    align-items: center; justify-content: center; padding: 20px;
}
#purchase-modal.active { display: flex; }
.modal-box {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px; width: 100%; max-width: 440px;
    max-height: 92vh; overflow-y: auto; position: relative;
}
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gray); transition: color 0.2s; }
.modal-close:hover { color: var(--black); }
.modal-title { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.8px; margin-bottom: 4px; }
.modal-sub   { color: var(--gray); font-size: 0.85rem; margin-bottom: 22px; }
.form-group  { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 600; font-size: 0.78rem; color: var(--gray); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--gray-light); border-radius: var(--radius-md);
    font-family: var(--font); font-size: 0.9rem;
    background: var(--off-white); outline: none; transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); background: var(--white); }
.form-group textarea { height: 72px; resize: none; }
.color-picker-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.color-dot { width: 28px; height: 28px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; transition: all 0.15s; }
.color-dot.active { border-color: var(--blue); transform: scale(1.2); }
.price-summary {
    background: var(--blue-light); border-radius: var(--radius-md);
    padding: 14px 18px; margin: 18px 0;
    display: flex; justify-content: space-between; align-items: center;
}
.price-label  { font-size: 0.82rem; color: var(--blue); font-weight: 600; }
.price-amount { font-size: 1.4rem; font-weight: 900; color: var(--blue); letter-spacing: -0.5px; }
.btn-pay {
    width: 100%; background: var(--blue); color: var(--white);
    border: none; padding: 15px; border-radius: var(--radius-md);
    font-family: var(--font); font-size: 0.92rem; font-weight: 700;
    cursor: pointer; transition: var(--transition);
    box-shadow: 0 4px 14px rgba(5,113,226,0.3);
}
.btn-pay:hover    { background: #0461c7; }
.btn-pay:disabled { background: var(--gray-light); box-shadow: none; cursor: not-allowed; }

/* --- BOTTOM NAV --- */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--gray-light);
    display: flex; align-items: stretch; z-index: 2000;
    padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav-item {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 4px;
    text-decoration: none; color: var(--gray);
    font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.3px; text-transform: uppercase;
    cursor: pointer; border: none; background: none;
    font-family: var(--font); transition: color 0.2s; padding: 8px 4px;
    position: relative;
}
.bottom-nav-item:hover  { color: var(--blue); }
.bottom-nav-item.active { color: var(--blue); }
.bottom-nav-item.active::after {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 28px; height: 2.5px;
    background: var(--blue); border-radius: 0 0 4px 4px;
}
.nav-icon-wrap { position: relative; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.nav-icon-wrap svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1); }
.bottom-nav-item:hover  .nav-icon-wrap svg { transform: scale(1.12); }
.bottom-nav-item.active .nav-icon-wrap svg { stroke-width: 2.2; }
.nav-live-dot { position: absolute; top: 0; right: 0; width: 7px; height: 7px; background: #ff3b30; border-radius: 50%; border: 1.5px solid #fff; }
body { padding-bottom: var(--nav-h); }

/* --- LEGAL & OTHER PAGES --- */
.legal-header, .main-header { display: none !important; }
.legal-wrap   { padding: 32px 24px 80px; max-width: 760px; margin: 0 auto; }
.dash-wrap    { padding: 24px 24px 88px; max-width: 900px; margin: 0 auto; }
.profile-wrap { padding: 24px 24px 88px; max-width: 720px; margin: 0 auto; }

.main-footer {
    background: var(--black); color: var(--white); padding: 32px 0;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--gray); font-size: 0.82rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-status { font-family: monospace; font-size: 0.72rem; color: #444; }
.logo { font-weight: 900; font-size: 1.1rem; letter-spacing: -0.5px; color: var(--black); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo-dot { width: 10px; height: 10px; background: var(--blue); display: inline-block; border-radius: 2px; flex-shrink: 0; }
.footer-logo { color: var(--white); }
.footer-logo .logo-dot { background: var(--cyan); }

/* --- ANIMATIONS --- */
@keyframes pulse-blue {
    0%   { box-shadow: 0 0 0 0 rgba(5,113,226,0.5); }
    70%  { box-shadow: 0 0 0 8px rgba(5,113,226,0); }
    100% { box-shadow: 0 0 0 0 rgba(5,113,226,0); }
}
@keyframes pulse-red {
    0%   { box-shadow: 0 0 0 0 rgba(255,59,48,0.5); }
    70%  { box-shadow: 0 0 0 8px rgba(255,59,48,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,59,48,0); }
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 2.2rem; }
    .hero-subheadline { font-size: 0.92rem; }
}

/* Stats pills — compactas */
.map-stats { bottom: auto; top: 16px; left: 16px; }
.map-stat-pill { padding: 4px 10px; }
.map-stat-pill .n { font-size: 0.78rem; }
.map-stat-pill .l { font-size: 0.48rem; }

/* Botón reset — junto al zoom */
.map-controls { top: 16px; left: auto; right: 68px; bottom: auto; flex-direction: column; }

/* Sel-bar encima del nav */
#sel-bar { bottom: 84px; }

/* ── MOBILE FIXES ── */
@media (max-width: 600px) {
    /* Stats debajo del botón comprar */
    .map-stats {
        top: 64px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        flex-direction: row !important;
        gap: 6px !important;
    }
    /* Botón comprar centrado arriba */
    .buy-btn {
        top: 16px !important;
        font-size: 0.8rem !important;
        padding: 9px 18px !important;
    }
    /* Zoom y reset más pequeños */
    .zoom-controls { top: 16px !important; right: 12px !important; }
    .map-controls  { top: 108px !important; right: 12px !important; }
    .map-btn { width: 38px !important; height: 38px !important; font-size: 1rem !important; }

    /* Sel-bar compacta — ancho automático centrada */
    #sel-bar {
        bottom: 80px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        border-radius: 50px !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        width: auto !important;
        white-space: nowrap !important;
    }
    .sel-bar-info  { padding: 12px 12px !important; font-size: 0.8rem !important; flex: 1 !important; }
    .sel-bar-price { padding: 12px 10px !important; font-size: 0.8rem !important; }
    .sel-bar-btn   { padding: 12px 14px !important; font-size: 0.8rem !important; }
    .sel-bar-clear { padding: 12px 12px !important; font-size: 1rem !important; }

    /* Hint debajo del botón comprar */
    #sel-hint { top: 110px !important; font-size: 0.68rem !important; }
}

/* ── MODAL COLOR SECTION ── */
.color-palette { display: flex; gap: 8px; flex-wrap: wrap; }
.color-dot {
    width: 30px; height: 30px; border-radius: 50%;
    cursor: pointer; border: 3px solid transparent;
    transition: all 0.15s; flex-shrink: 0;
}
.color-dot:hover  { transform: scale(1.15); }
.color-dot.active { border-color: #0571e2; transform: scale(1.2); box-shadow: 0 0 0 2px #fff, 0 0 0 4px #0571e2; }

.pixel-minimap {
    background: #f9f9f9; border-radius: 10px;
    padding: 10px; border: 1px solid #e8e8e8;
    overflow: hidden;
}

/* Bloquear zoom nativo del browser - solo en canvas */
#pixel-map, #pixelCanvas {
    touch-action: none;
    -ms-touch-action: none;
}

/* ── ZOOM PANEL — bottom right ── */
.zoom-panel {
    position: absolute;
    bottom: 84px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 60;
}

/* Slider vertical */
.zoom-slider {
    -webkit-appearance: slider-vertical;
    appearance: slider-vertical;
    writing-mode: vertical-lr;
    direction: rtl;
    width: 4px;
    height: 120px;
    cursor: pointer;
    outline: none;
    border: none;
    background: transparent;
}

/* Track */
.zoom-slider::-webkit-slider-runnable-track {
    width: 4px;
    background: linear-gradient(to bottom, #0571e2, #d9edff);
    border-radius: 4px;
}
.zoom-slider::-moz-range-track {
    width: 4px;
    background: linear-gradient(to bottom, #0571e2, #d9edff);
    border-radius: 4px;
}

/* Thumb */
.zoom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #0571e2;
    box-shadow: 0 2px 8px rgba(5,113,226,0.25);
    cursor: grab;
    margin-left: -9px;
    transition: transform 0.15s, box-shadow 0.15s;
}
.zoom-slider::-moz-range-thumb {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #0571e2;
    box-shadow: 0 2px 8px rgba(5,113,226,0.25);
    cursor: grab;
}
.zoom-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.2); }

/* Reset btn */
.reset-btn {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
}

/* Quitar los viejos en mobile también */
@media (max-width: 600px) {
    .zoom-controls { display: none !important; }
    .map-controls  { display: none !important; }
    .zoom-panel {
        bottom: 88px;
        right: 12px;
    }
    .zoom-slider { height: 100px; }
}

/* ── ZOOM PANEL ── */
.zoom-panel {
    position: absolute;
    bottom: 88px; right: 16px;
    display: flex; flex-direction: column;
    align-items: center; gap: 12px; z-index: 60;
}
.zoom-slider {
    writing-mode: vertical-lr;
    direction: rtl;
    -webkit-appearance: slider-vertical;
    width: 28px; height: 120px;
    cursor: pointer; outline: none; background: transparent; border: none;
    padding: 0;
}
.zoom-slider::-webkit-slider-runnable-track {
    width: 4px; background: linear-gradient(to top, #d9edff, #0571e2);
    border-radius: 4px;
}
.zoom-slider::-moz-range-track {
    width: 4px; background: linear-gradient(to top, #d9edff, #0571e2);
    border-radius: 4px;
}
.zoom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px; height: 22px; border-radius: 50%;
    background: #fff; border: 2.5px solid #0571e2;
    box-shadow: 0 2px 8px rgba(5,113,226,0.3);
    cursor: grab; margin-left: -9px;
}
.zoom-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.2); }
.zoom-slider::-moz-range-thumb {
    width: 22px; height: 22px; border-radius: 50%;
    background: #fff; border: 2.5px solid #0571e2;
    box-shadow: 0 2px 8px rgba(5,113,226,0.3); cursor: grab;
}
.reset-btn { width: 38px !important; height: 38px !important; font-size: 0.95rem !important; }
.zoom-controls { display: none !important; }
.map-controls  { display: none !important; }

/* ── SEL-BAR rediseño pill azul ── */
#sel-bar {
    background: #0571e2 !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(5,113,226,0.45) !important;
}
#sel-price {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    background: transparent !important;
    border: none !important;
    padding: 0 4px 0 12px !important;
}
.sel-bar-btn {
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    font-size: 1rem !important;
}
.sel-bar-btn:hover {
    background: rgba(255,255,255,0.35) !important;
}
.sel-bar-clear {
    background: transparent !important;
    color: rgba(255,255,255,0.7) !important;
    border: none !important;
    font-size: 1.1rem !important;
    padding: 0 12px !important;
    cursor: pointer !important;
}
.sel-bar-clear:hover {
    color: #fff !important;
}

/* Centrado vertical sel-bar */
#sel-bar {
    align-items: center !important;
    display: flex !important;
    padding: 6px 6px 6px 16px !important;
}
#sel-price {
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
}
.sel-bar-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}
.sel-bar-clear {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}
