/* /shared/footer.css */

/* FOOTER NAV */
.footer-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 64px;
    background: rgba(12, 8, 26, 0.95);
    border-top: 1px solid rgba(160,130,255,0.35);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.footer-btn {
    position: relative;
    background: none;
    border: none;
    color: #dcd5ff;
    font-size: 12px;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-btn span {
    font-size: 20px;
    margin-bottom: 2px;
}

.footer-btn:hover {
    opacity: 0.85;
    transform: scale(0.96);
}

/* CLEAN ACTIVE GLOW + GOLD UNDERLINE */
.footer-active {
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 0 0 2px #bda7ff, 0 0 4px rgba(189,167,255,0.4);
}

.footer-active span {
    color: #ffffff !important;
    text-shadow: 0 0 2px #bda7ff;
}

.footer-active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #FFD65A, #FFC83D);
    border-radius: 3px;
}

/* SHARED SEARCH PANEL */
.bottom-search-panel {
    position: fixed;
    bottom: 64px;
    left: 0; right: 0;
    background: rgba(10,5,25,0.96);
    border-top: 1px solid rgba(120,90,255,0.5);
    padding: 14px;
    transform: translateY(100%);
    transition: .35s ease;
    z-index: 998;
}

.bottom-search-panel.open {
    transform: translateY(0);
}

.search-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(150,120,255,0.6);
    background: rgba(20,12,50,0.9);
    color: white;
    font-size: 14px;
}

.search-filters {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.filter-pill {
    padding: 7px 12px;
    background: rgba(30,20,70,0.85);
    border-radius: 999px;
    border: 1px solid rgba(150,120,255,0.6);
    font-size: 12px;
    cursor: pointer;
    color: white;
}
