.carrinho-container {
    padding: 2rem 0;
}

.carrinho-titulo {
    margin-bottom: 2rem;
    color: #333;
}

.carrinho-card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.carrinho-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.carrinho-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.carrinho-item-imagem {
    width: 100px;
    height: 100px;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.carrinho-item-imagem i {
    font-size: 2.5rem;
    color: #0d6efd;
}

.carrinho-item-info {
    flex-grow: 1;
}

.carrinho-item-titulo {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.25rem;
}

.carrinho-item-detalhes {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.carrinho-item-detalhes p {
    color: #495057;
    font-size: 0.95rem;
}

.carrinho-item-detalhes i {
    color: #0d6efd;
    width: 20px;
}

.carrinho-item-quantidade {
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.carrinho-item-preco {
    font-weight: 500;
    color: #333;
}

.carrinho-resumo {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
}

.carrinho-resumo-titulo {
    margin-bottom: 1.5rem;
    color: #333;
}

.carrinho-resumo-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: #495057;
}

.carrinho-resumo-total {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-weight: 600;
    color: #333;
}

.carrinho-vazio {
    text-align: center;
    padding: 3rem 0;
}

.carrinho-vazio i {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.carrinho-vazio-titulo {
    margin-bottom: 1rem;
    color: #333;
}

.carrinho-vazio-texto {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.btn-remover-item {
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-remover-item:hover {
    background-color: #dc3545;
    color: white;
}

.btn-finalizar-compra {
    width: 100%;
    padding: 0.75rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .carrinho-item {
        flex-direction: column;
        text-align: center;
    }

    .carrinho-item-imagem {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .carrinho-item-detalhes {
        margin-top: 1rem;
    }

    .carrinho-resumo {
        margin-top: 1.5rem;
    }
} 