/* src/public/modules/layout/bottom-nav/bottom-nav.css */
#store-bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 30px;
    z-index: 9999;
    width: max-content;
    min-width: 200px;
}

#store-bottom-nav ul {
    list-style: none;
    display: flex;
    gap: 60px;
    /* Separación amplia para solo 2 botones */
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#store-bottom-nav li {
    display: flex;
    justify-content: center;
    align-items: center;
}

#store-bottom-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #333333;
    /* Texto por defecto un gris oscuro muy sobrio */
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

#store-bottom-nav a svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
    fill: none;
    stroke: currentColor;
    transition: stroke-width 0.3s ease, transform 0.2s ease;
}

#store-bottom-nav a:active svg {
    transform: scale(0.9);
}

/* Estado activo utilizando el color primario de la web */
#store-bottom-nav a.active {
    color: var(--primary-color);
}

#store-bottom-nav a.active svg {
    stroke-width: 2.2;
    /* Trazo más grueso simulando la imagen */
}

/* Indicador lineal del activo debajo del icono */
#store-bottom-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 4px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#store-bottom-nav a.active::after {
    width: 32px;
    /* Ancho de la línea resaltadora */
}

/* Ocultar en pantallas grandes, comentado para que se vea en PC */
/* @media (min-width: 768px) {
    #store-bottom-nav {
        display: none !important;
    }
} */