/* --- 1. BOTÕES (Seu estilo original mantido) --- */
.btn-solicitar-whatsapp,
.btn-adicionar-orcamento {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    border-radius: 25px !important;
    border: none !important;
    text-align: center;
    line-height: 1.5 !important;
    cursor: pointer;
    transition: opacity 0.3s ease;
    gap: 10px;
}

.btn-solicitar-whatsapp {
    background-color: #28a745 !important;
    color: #ffffff !important;
}

.btn-adicionar-orcamento,
.woocommerce .variations_form .button {
    background-color: #dc3545 !important;
    color: #ffffff !important;
}

.btn-solicitar-whatsapp img.whatsapp-icon-img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.btn-adicionar-orcamento::before {
    display: none !important;
}

.woocommerce div.product form.cart,
.woocommerce div.product .summary .cart {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.woocommerce div.product form.cart .quantity,
.woocommerce-cart .product-price,
.woocommerce-cart .product-quantity,
.woocommerce-cart .product-subtotal,
.woocommerce-cart .cart-subtotal,
.woocommerce-cart .order-total,
.woocommerce-mini-cart__total {
    display: none !important;
}

/* --- 2. ESTRUTURA DA LISTA (Desktop) --- */
/* Isso garante que a imagem fique ao lado do texto */
.woo-orcamento-lista {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.woo-orcamento-lista td {
    border-bottom: 1px solid #eee; /* Linha divisória suave */
    padding: 15px 0;
}

.woo-orcamento-produto {
    display: flex;
    align-items: center; /* Alinha verticalmente */
    gap: 20px; /* Espaço entre a imagem e o texto */
}

/* Imagem padrão no Desktop */
.woo-orcamento-thumb img {
    width: 125px !important; 
    height: auto !important;
    border-radius: 5px;
    object-fit: cover;
}

.woo-orcamento-info {
    display: flex;
    flex-direction: column;
}

/* Título Fininho (Desktop) */
.woo-orcamento-nome {
    font-size: 16px;
    font-weight: 400; /* Fininho */
    color: #333;
    line-height: 1.4;
    text-transform: uppercase;
}

.woo-orcamento-remover {
    font-size: 13px;
    color: #d9534f;
    text-decoration: none;
    margin-top: 5px;
}

/* --- 3. MOBILE (Abaixo de 768px) --- */
@media only screen and (max-width: 768px) {
    
    /* Imagem grande (85x85px) no mobile */
    .woo-orcamento-thumb img {
        width: 85px !important;
        height: 85px !important;
        max-width: 85px !important;
        min-width: 85px !important; /* Força o tamanho mesmo se o container for pequeno */
        object-fit: contain; /* Garante que a imagem apareça inteira */
    }

    /* Fonte menor (14px) no mobile */
    .woo-orcamento-nome {
        font-size: 14px !important;
        line-height: 1.3;
    }
    
    /* Ajuste para o texto não ficar colado na imagem grande */
    .woo-orcamento-produto {
        gap: 15px;
        align-items: flex-start; /* Alinha o texto no topo da imagem */
    }
}