/**
 * ✅ CEAPP: Estilos da página Carrinho.aspx
 * 
 * Funcionalidade: Estilos específicos da página do carrinho
 * - Container do carrinho
 * - Itens do carrinho
 * - Botão de voltar fixo
 * - Total do pedido
 * 
 * Integração CEAPP:
 * - Estilos separados do HTML para melhor organização
 * - Facilita manutenção e reutilização
 */

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.container-carrinho {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    padding: 30px;
}

.btn-voltar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5a3d 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(26, 77, 46, 0.3);
    transition: all 0.3s;
}

.btn-voltar:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(26, 77, 46, 0.4);
}

.item-carrinho {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.item-carrinho:hover {
    background-color: #f8f9fa;
}

.item-carrinho:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
    min-width: 0;
}

.item-nome {
    font-weight: 600;
    color: #1a4d2e;
    font-size: 18px;
    margin-bottom: 5px;
}

.item-detalhes {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.item-subtotal {
    margin-top: 5px;
    font-weight: 600;
    color: #1a4d2e;
    font-size: 16px;
}

.item-acoes {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.quantidade-display {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: #1a4d2e;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}

.carrinho-vazio {
    text-align: center;
    padding: 60px 20px;
}

.carrinho-vazio-mensagem {
    padding: 40px;
}

.carrinho-vazio-icone {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 15px;
    display: block;
}

.carrinho-vazio i {
    display: block;
    margin-bottom: 20px;
}

.total-pedido {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5a3d 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.total-pedido strong {
    font-size: 28px;
    color: white;
}

.total-pedido strong:first-child {
    font-size: 20px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .item-carrinho {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .item-acoes {
        width: 100%;
        justify-content: space-between;
    }
    .total-pedido {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

