/* 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 para 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;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px 10px;
    color: #333333;
    /* Texto por defecto un gris oscuro muy sobrio */
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

#store-bottom-nav .nav-btn-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

#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 */
}

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