/* Moldacoria — Orçamento CSS */

/* ── Botão de orçamento ──────────────────────────────────────────────────── */
.molda-btn-orcamento {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1F3864;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.molda-btn-orcamento:hover {
    background: #2E75B6;
}

.molda-btn-orcamento.molda-adicionado {
    background: #46b450;
}

.molda-btn-orcamento.molda-adicionado:hover {
    background: #3a9a43;
}

/* ── Contador no header ──────────────────────────────────────────────────── */
.molda-contador-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 22px;
    color: inherit;
}

.molda-contador {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ── Tabela de pedido ────────────────────────────────────────────────────── */
.molda-tabela-pedido {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.molda-tabela-pedido th {
    background: #1F3864;
    color: #fff;
    padding: 10px 12px;
    text-align: left;
    font-size: 13px;
}

.molda-tabela-pedido td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    font-size: 14px;
}

.molda-tabela-pedido tr:hover td {
    background: #f9f9f9;
}

/* ── Botão remover ───────────────────────────────────────────────────────── */
.molda-btn-remover {
    background: none;
    border: 1px solid #e74c3c;
    color: #e74c3c;
    border-radius: 4px;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s, color 0.2s;
}

.molda-btn-remover:hover {
    background: #e74c3c;
    color: #fff;
}

/* ── Botão voltar ao catálogo ────────────────────────────────────────────── */
.molda-btn-voltar {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.molda-btn-voltar:hover {
    background: #eee;
}

/* Custom */
/* Esconder campo de produtos do CF7 */
.wpcf7-form-control-wrap[data-name="produtos-orcamento"] {
    display: none !important;
}