.elementor-544 .elementor-element.elementor-element-82c2f4c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:133px;--padding-bottom:72px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS *//* =========================================
   CARRINHO PERSONALIZADO (ELEMENTOR WIDGET)
   ========================================= */
/* ==================================================
   FORÇAR REMOÇÃO DO AZUL (OVERRIDE DE TEMA)
   ================================================== */

/* 1. Forçar Links dos Produtos (Matar o azul #5bc0de) */
.woocommerce table.shop_table.cart td.product-name a,
.woocommerce-cart-form__contents td.product-name a,
.elementor-widget-woocommerce-cart a:not(.button):not(.remove) {
    color: #0f172a !important; /* Cor Escura Correta */
    font-family: 'Manrope', sans-serif !important;
    text-decoration: none !important;
}

.woocommerce table.shop_table.cart td.product-name a:hover,
.woocommerce-cart-form__contents td.product-name a:hover,
.elementor-widget-woocommerce-cart a:not(.button):not(.remove):hover {
    color: #F97316 !important; /* Laranja no Hover */
}

/* 2. Forçar Botão "Update Cart" (Atualizar Carrinho) */
/* O WooCommerce costuma deixar esse botão cinza ou azul quando desabilitado */
.woocommerce button[name="update_cart"],
.woocommerce button[name="update_cart"]:disabled,
.woocommerce button[name="update_cart"][disabled] {
    background-color: #ffffff !important;
    color: #64748b !important;
    border: 1px solid #E2E8F0 !important;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 600 !important;
    opacity: 1 !important; /* Remove transparência padrão */
    cursor: pointer !important;
    padding: 10px 20px !important;
}

.woocommerce button[name="update_cart"]:hover {
    background-color: #f8fafc !important;
    color: #F97316 !important;
    border-color: #F97316 !important;
}

/* 3. Forçar Botão "Apply Coupon" (Aplicar Cupom) */
.woocommerce button[name="apply_coupon"],
.coupon button.button {
    background-color: #FFF7ED !important; /* Fundo Laranja bem claro */
    color: #F97316 !important; /* Texto Laranja */
    border: 1px solid #fdba74 !important;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.woocommerce button[name="apply_coupon"]:hover,
.coupon button.button:hover {
    background-color: #F97316 !important;
    color: #ffffff !important;
    border-color: #F97316 !important;
}

/* 4. Remover bordas azuis ao clicar nos inputs (Foco) */
.woocommerce input:focus, 
.woocommerce textarea:focus, 
.woocommerce select:focus,
.quantity input.qty:focus {
    border-color: #F97316 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2) !important; /* Sombra Laranja suave */
}

/* 5. Links gerais dentro do alerta/notificação do Woo (ex: "tem um cupom?") */
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
    color: #F97316 !important;
    font-weight: 700 !important;
}
/* --- 1. LAYOUT GERAL (GRID) --- */
.e-cart__container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    font-family: 'Manrope', sans-serif;
    color: #0f172a;
    max-width: 1280px;
    margin: 0 auto;
}

/* Coluna Esquerda (Tabela de Produtos) */
.e-cart__column-start {
    flex: 1;
    min-width: 0; /* Evita overflow em flex items */
}

/* Coluna Direita (Totais) */
.e-cart__column-end {
    width: 400px;
    flex-shrink: 0;
}

/* --- 2. TABELA DE PRODUTOS --- */
table.shop_table.cart {
    border: none !important;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 20px;
}

/* Cabeçalho da Tabela */
table.shop_table.cart thead th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 700;
    border-bottom: 2px solid #f1f5f9 !important;
    padding: 15px 10px;
}

/* Linhas dos Produtos */
table.shop_table.cart tbody td {
    border-top: 1px solid #f1f5f9;
    padding: 20px 10px;
    vertical-align: middle;
}

/* Imagem do Produto */
table.shop_table.cart td.product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px; /* Cantos arredondados */
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

/* Nome do Produto */
table.shop_table.cart td.product-name a {
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}
table.shop_table.cart td.product-name a:hover {
    color: #F97316;
}

/* Preço e Subtotal */
table.shop_table.cart td.product-price,
table.shop_table.cart td.product-subtotal {
    font-weight: 700;
    color: #334155;
    font-size: 15px;
}

/* Botão Remover (X) */
table.shop_table.cart td.product-remove a.remove {
    color: #cbd5e1 !important;
    background: transparent !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    transition: color 0.2s !important;
}
table.shop_table.cart td.product-remove a.remove:hover {
    color: #dc2626 !important; /* Vermelho ao passar o mouse */
    background: transparent !important;
}

/* --- 3. INPUT DE QUANTIDADE --- */
.quantity input.qty {
    background-color: #ffffff !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 8px !important;
    color: #0f172a !important;
    font-weight: 700;
    width: 70px !important;
    height: 44px !important;
    padding: 0 !important;
    text-align: center;
}
.quantity input.qty:focus {
    border-color: #F97316 !important;
    outline: none;
}

/* --- 4. CUPOM DE DESCONTO --- */
.coupon {
    display: flex !important;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid #f1f5f9;
}

.coupon .input-text {
    width: 200px !important;
    border-radius: 8px !important;
    border: 1px solid #E2E8F0 !important;
    padding: 12px !important;
}

.coupon button.button {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 12px 20px !important;
    transition: all 0.2s;
}
.coupon button.button:hover {
    background-color: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
}

/* Botão Atualizar Carrinho (Escondido se desabilitado ou estilizado) */
button[name="update_cart"] {
    display: none; /* Geralmente automático via AJAX, pode ocultar visualmente se preferir */
}

/* --- 5. TOTAIS DO CARRINHO (SIDEBAR) --- */
.e-cart__column-inner {
    position: sticky;
    top: 100px; /* Faz ficar fixo ao rolar */
    background: #FAFBFD;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
}

.cart_totals h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-transform: none;
}

/* Tabela de Totais */
.cart_totals table.shop_table {
    border: none;
    width: 100%;
}

.cart_totals table.shop_table th {
    font-weight: 600;
    color: #64748b;
    padding: 15px 0;
    text-align: left;
}

.cart_totals table.shop_table td {
    text-align: right;
    padding: 15px 0;
    font-weight: 700;
    color: #334155;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    border-top: 2px solid #e2e8f0;
    color: #0f172a;
    font-size: 18px;
    font-weight: 800;
    padding-top: 20px;
}

.cart_totals .order-total span.amount {
    color: #F97316; /* Laranja */
    font-size: 24px;
}

/* --- 6. BOTÃO FINALIZAR COMPRA --- */
.wc-proceed-to-checkout a.checkout-button {
    background-color: #F97316 !important;
    color: #ffffff !important;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 18px;
    text-transform: none;
    padding: 18px 30px;
    border-radius: 8px !important;
    width: 100%;
    margin-top: 20px;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #ea580c !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
}

/* --- 7. RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 900px) {
    .e-cart__container {
        flex-direction: column;
    }

    .e-cart__column-end {
        width: 100%;
    }

    .e-cart__column-inner {
        position: relative;
        top: 0;
        padding: 20px;
    }
    
    /* Ajustes da Tabela no Mobile (Padrão do tema às vezes esconde headers) */
    table.shop_table.cart td.product-thumbnail { display: block; text-align: center; margin-bottom: 10px; }
    table.shop_table.cart td.product-thumbnail img { width: 100px; height: 100px; }
    table.shop_table.cart td { text-align: center; }
    .coupon { flex-direction: column; }
    .coupon .input-text { width: 100% !important; }
}/* End custom CSS */