/* ==========================================================================
   MyBasket Catalog — Quote CSS
   Herda variáveis e classes do tema Peak Shop.
   Não define cores fixas onde o tema já cuida.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Botão "Incluir no Orçamento"
   Usa as classes nativas do Peak Shop: btn style2 medium accent small-radius
   Só ajustamos largura e feedback de estado.
   -------------------------------------------------------------------------- */
.mbc-add-to-quote {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
}

.mbc-add-to-quote.mbc-loading {
    opacity: .6;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Mini cart dropdown — mostra os itens do orçamento.
   O conteúdo é substituído via WC fragments (widget_shopping_cart_content).
   -------------------------------------------------------------------------- */

/* Cursor pointer no ícone do carrinho */
.thb-quick-cart {
    cursor: pointer;
}

/* Remove o preço total (não existe em catálogo sem preço) */
.thb-quick-cart .woocommerce-mini-cart__total {
    display: none;
}

/* --------------------------------------------------------------------------
   Página /orcamento/
   -------------------------------------------------------------------------- */
.mbc-empty-quote {
    text-align: center;
    padding: 60px 20px;
}

.mbc-empty-quote p {
    margin-bottom: 20px;
    font-size: 16px;
}

.mbc-quote-table .product-thumbnail img {
    width: 64px;
    height: auto;
    border-radius: 4px;
}

.mbc-sku {
    display: block;
    color: #888;
    font-size: 12px;
    margin-top: 2px;
}

.mbc-qty-input {
    width: 70px;
    text-align: center;
}

.mbc-quote-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.mbc-finalize-btn {
    min-width: 220px;
}

/* --------------------------------------------------------------------------
   Página /finalizar-orcamento/
   -------------------------------------------------------------------------- */
.mbc-finalize-page {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 960px) {
    .mbc-finalize-page {
        grid-template-columns: 1fr 2fr;
        align-items: start;
    }
}

.mbc-quote-summary {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 24px;
}

.mbc-quote-summary h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
}

.mbc-summary-table {
    width: 100%;
    font-size: 14px;
}

.mbc-summary-table th {
    text-align: left;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
}

.mbc-summary-table td {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.mbc-edit-link {
    margin-top: 16px;
    font-size: 13px;
}

.mbc-form-wrap {
    /* herda estilo do Fluent Forms / tema */
}
