/* CSS para o Modal do Kit Customizado - Cliente */

.modal-kit-cliente {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-kit-cliente-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 1200px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-modal-kit-cliente {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal-kit-cliente:hover,
.close-modal-kit-cliente:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.kit-cliente-titulo {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.kit-cliente-instrucoes {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.produtos-kit-cliente-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 20px auto;
    max-width: 950px;
}

.produto-kit-cliente-item {
    width: 200px;
    height: 300px;
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin: 0 5px 10px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.produto-kit-cliente-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.produto-kit-cliente-item.selecionado {
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.produto-kit-cliente-img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.produto-kit-cliente-title {
    margin: 5px 0;
    font-size: 14px;
    font-weight: bold;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 40px;
}

.produto-kit-cliente-preco {
    margin: 5px 0;
    font-size: 14px;
    color: #28a745;
    font-weight: bold;
}

.produto-kit-cliente-qtd {
    margin-top: auto;
    padding-top: 10px;
}

.input-qtd-kit {
    width: 60px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.kit-cliente-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.kit-cliente-info {
    display: flex;
    flex-direction: column;
}

.kit-cliente-total {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
}

.kit-cliente-itens {
    font-size: 14px;
    color: #666;
}

.btn-adicionar-kit {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-adicionar-kit:hover {
    background-color: #218838;
}

.btn-adicionar-kit:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}