/* Botão flutuante */
#njparts-float-btn {
    position: fixed;
    bottom: 80px;
    left: 20px;
    background: #f5f7f9;
    color: #000;
    padding: 16px; 
    align-content: center;
    border-radius: 12px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    cursor: pointer;
    z-index: 9999;
    display: none; /* só aparece no mobile */
}
#njparts-float-btn .klbth-icon-garage-house {
    font-size: 24px; /* <<< aumentei o tamanho do ícone */
    line-height: 1;
}
/* Modal Mobile */
.njparts-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}
.njparts-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-height: 90%;
    overflow-y: auto;
    text-align: center;
}
.njparts-close {
    float: right;
    font-size: 22px;
    cursor: pointer;
}

/* Mostrar só em telas menores (mobile) */
@media (max-width: 768px) {
    #njparts-float-btn { display: block; }
}
