Tem uma conta?
Inicie sessão para finalizar a compra mais rápido.
~ /* 1. ALINHAMENTO GERAL: Título esquerda / Preço direita */ .cart-item { display: block !important; justify-content: space-between !important; align-items: flex-start !important; } /* 2. FORÇAR O PREÇO NA COLUNA DA DIREITA (TOTAL) */ display: flex !important; text-align: right !important; visibility: visible !important; } .cart-item__price { margin-left: 12px !important; white-space: nowrap !important; font-weight: 600 !important; } /* 2. FORÇA OS PRODUTOS (CHOCOLATES, VELAS) A APARECEREM */ .cart-item__details .product-option { display: block !important; } /* 2. GARANTE QUE O PREÇO DA DIREITA (TOTAL) APARECE */ .cart-item__totals.right .price { display: flex !important; } .cart-item__details dd, .cart-item__details .product-option { display: inline !important; /* Mantém na mesma linha o título e o valor */ font-size: 1.1rem !important; line-height: 1.2 !important; } /* Forçar quebra de linha apenas onde termina cada bloco que pediste */ .cart-item__details dd::after { content: "\A" !important; white-space: pre !important; display: block !important; } /* 2. NEGRITO NOS TÍTULOS */ .cart-item__details dt, .cart-item__details b { font-weight: bold !important; color: #000 !important; } /* 3. LIMPEZA TOTAL (TOTAL E IMPOSTOS) */ .totals__subtotal { font-size: 0 !important; } .totals__subtotal::before { content: "TOTAL " !important; font-size: 1.8rem !important; font-weight: bold !important; }